/* ==========================================================================
   Bergaman cPanel - Authentic Light Theme (cPanel Jupiter / Paper Lantern Style)
   ========================================================================== */

:root {
    --primary-orange: #ff6c2c;
    --primary-orange-hover: #e55616;
    --primary-glow: rgba(255, 108, 44, 0.25);

    --cpanel-blue: #0284c7;
    --cpanel-blue-hover: #0369a1;
    --cpanel-blue-light: #e0f2fe;

    --accent-green: #10b981;
    --accent-green-light: #dcfce7;
    --accent-warning: #f59e0b;
    --accent-warning-light: #fef3c7;
    --accent-danger: #ef4444;
    --accent-danger-light: #fee2e2;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #f3e8ff;

    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;

    --sidebar-bg: #0f172a;
    --sidebar-text: #94a3b8;
    --sidebar-active: #ffffff;

    --border-color: #e2e8f0;
    --border-darker: #cbd5e1;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-dark: #94a3b8;

    --sidebar-width: 260px;
    --header-height: 70px;
    --radius-lg: 14px;
    --radius-md: 8px;
    --radius-sm: 6px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Custom Light Scrollbar */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Light Card Panel Container */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-panel:hover {
    box-shadow: var(--shadow-lg);
}

/* Typography & Titles */
h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Orbitron', -apple-system, sans-serif;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

/* LOGIN OVERLAY (LIGHT CPANEL STYLE) */
#loginOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
    border: none;
}

.login-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-logo i {
    color: var(--primary-orange);
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--border-darker);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    background: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.btn-neon {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
    color: #ffffff;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-neon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.demo-hint {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.demo-badge {
    background: var(--cpanel-blue-light);
    color: var(--cpanel-blue);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-block;
    margin-top: 6px;
    border: 1px solid rgba(2, 132, 199, 0.2);
    font-weight: 600;
    transition: var(--transition);
}

.demo-badge:hover {
    background: var(--cpanel-blue);
    color: #ffffff;
}

/* APP SHELL LAYOUT */
#appContainer {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR (DEEP NAVY CPANEL STYLE) */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    border-right: 1px solid #1e293b;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.sidebar-brand {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #1e293b;
    background: #090d16;
}

.sidebar-brand-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-brand-title i {
    color: var(--primary-orange);
}

.sidebar-menu {
    list-style: none;
    padding: 20px 12px;
    flex: 1;
    overflow-y: auto;
}

.menu-category {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 15px 12px 6px;
    font-weight: 700;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 16px;
    color: var(--sidebar-text);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
    color: #ffffff;
    background: var(--primary-orange);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-link.active i {
    color: #ffffff;
}

/* MAIN CONTENT */
.main-wrapper {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--bg-main);
}

/* TOP HEADER (LIGHT & CRISP) */
.top-header {
    height: var(--header-height);
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.server-selector {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--cpanel-blue);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 2px 6px rgba(255, 108, 44, 0.2);
}

.user-info .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.user-info .role {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
}

.btn-logout {
    background: var(--accent-danger-light);
    color: var(--accent-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.btn-logout:hover {
    background: var(--accent-danger);
    color: #ffffff;
}

/* CONTENT VIEWPORT */
.content-area {
    padding: 30px;
    flex: 1;
}

.view-section {
    display: none;
    animation: fadeIn 0.25s ease;
}

.view-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DASHBOARD STATS & METRICS (LIGHT WIDGETS) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.stat-info h4 {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Orbitron', sans-serif;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-icon.cyan {
    background: var(--cpanel-blue-light);
    color: var(--cpanel-blue);
}

.stat-icon.purple {
    background: var(--accent-purple-light);
    color: var(--accent-purple);
}

.stat-icon.green {
    background: var(--accent-green-light);
    color: var(--accent-green);
}

.stat-icon.warning {
    background: var(--accent-warning-light);
    color: var(--accent-warning);
}

/* RESOURCE GAUGES */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.resource-card {
    padding: 24px;
    background: #ffffff;
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.resource-title {
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-val {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary-orange);
}

.progress-bar-bg {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), var(--cpanel-blue));
    border-radius: 5px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FILE MANAGER SPECIFIC STYLES */
.fm-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    height: calc(100vh - 160px);
}

.fm-sidebar {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.fm-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.fm-tree-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.fm-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-bottom: 4px;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.fm-item:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.fm-item.active {
    background: var(--cpanel-blue-light);
    color: var(--cpanel-blue);
    border: 1px solid rgba(2, 132, 199, 0.3);
}

.fm-item-name {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fm-editor-pane {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.editor-toolbar {
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.editor-filepath {
    font-family: monospace;
    color: var(--cpanel-blue);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.editor-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-action:hover {
    background: #f1f5f9;
    border-color: var(--border-darker);
}

.btn-action.btn-preview {
    background: var(--accent-green-light);
    color: var(--accent-green);
    border-color: rgba(16, 185, 129, 0.3);
}

.btn-action.btn-preview:hover {
    background: var(--accent-green);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-action.btn-save {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
}

.btn-action.btn-save:hover {
    background: var(--primary-orange-hover);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.code-textarea {
    flex: 1;
    width: 100%;
    background: #0f172a;
    color: #38bdf8;
    border: none;
    padding: 20px;
    font-family: 'Consolas', 'Fira Code', 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    resize: none;
    outline: none;
}

/* LIVE SITE PREVIEW MODAL */
#previewModal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    animation: fadeIn 0.2s ease;
}

#previewModal.active {
    display: flex;
}

.preview-header {
    height: 60px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.preview-url-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f1f5f9;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--cpanel-blue);
    font-weight: 700;
    min-width: 320px;
}

.device-switcher {
    display: flex;
    gap: 6px;
    background: #e2e8f0;
    padding: 4px;
    border-radius: 8px;
}

.device-btn {
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.device-btn.active {
    background: #ffffff;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.preview-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #cbd5e1;
}

.preview-frame-wrapper {
    height: 100%;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: width 0.3s ease;
}

.preview-frame-wrapper.tablet {
    max-width: 768px;
}

.preview-frame-wrapper.mobile {
    max-width: 375px;
}

.preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* DATABASE MANAGER UI */
.db-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
}

.sql-editor-box {
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.sql-input {
    width: 100%;
    height: 100px;
    background: transparent;
    border: none;
    color: var(--accent-green);
    font-family: monospace;
    font-size: 0.95rem;
    outline: none;
    resize: none;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.custom-table th {
    background: #f8fafc;
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.custom-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.custom-table tr:hover td {
    background: #f8fafc;
}

/* TERMINAL EMULATOR */
.terminal-window {
    background: #0f172a;
    border: 1px solid var(--border-darker);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-family: 'Consolas', 'Fira Code', monospace;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #1e293b;
    padding: 12px 20px;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    color: #38bdf8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.terminal-line {
    margin-bottom: 8px;
    white-space: pre-wrap;
}

.terminal-prompt-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-prompt {
    color: #4ade80;
    font-weight: bold;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* TABLES & DATA GRIDS */
.data-table-card {
    padding: 24px;
    background: #ffffff;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* BADGES & BUTTONS */
.badge-neon {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.badge-neon.green {
    background: var(--accent-green-light);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-neon.cyan {
    background: var(--cpanel-blue-light);
    color: var(--cpanel-blue);
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.badge-neon.purple {
    background: var(--accent-purple-light);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* TOAST NOTIFICATIONS */
#toastContainer {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #ffffff;
    border: 1px solid var(--primary-orange);
    color: var(--text-main);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .sidebar {
        width: 70px;
    }

    .sidebar-brand-title span,
    .menu-category,
    .nav-link span {
        display: none;
    }

    .main-wrapper {
        margin-left: 70px;
    }

    .fm-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LANDING PAGE STYLES - BERGAMAN.COM (1990s CLASSIC IBM LIGHT ENTERPRISE)
   ========================================================================== */
#landingPage {
    background: #f4f6f9;
    color: #0f172a;
    min-height: 100vh;
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
}

/* IBM Top Navigation Bar */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: #003366; /* Classic IBM Corporate Deep Blue */
    border-bottom: 3px solid #002244;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1.5px;
}

.landing-brand-badge {
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
}

.landing-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.landing-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cpanel-login {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55616 100%);
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 108, 44, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-cpanel-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 108, 44, 0.45);
    color: #ffffff;
    text-decoration: none !important;
}

/* IBM Corporate Hero Banner */
.landing-hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #ffffff;
    padding: 55px 20px;
    border-bottom: 4px solid #0284c7;
    text-align: center;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 820px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #ffffff;
    color: #003366;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* IBM Light Card Grid */
.landing-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 40px 20px;
}

.ibm-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-top: 4px solid #003366;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.05);
    transition: var(--transition);
}

.ibm-card:hover {
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.12);
    border-top-color: var(--primary-orange);
}

.ibm-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ibm-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.95rem;
}

.ibm-info-row:last-child {
    border-bottom: none;
}

.ibm-info-label {
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ibm-info-label i {
    color: #003366;
    width: 18px;
}

.ibm-info-value {
    color: #0f172a;
    font-weight: 700;
}

/* System Metrics Monitor Card (IBM Corporate Style) */
.monitor-card-light {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
}

.monitor-title-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 10px;
    font-weight: 700;
}

.monitor-value-light {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 10px;
}

.blink-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: blinkPulse 1.5s infinite;
}

@keyframes blinkPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.console-text-light {
    font-family: monospace;
    font-size: 0.75rem;
    color: #64748b;
}

/* Landing Footer (IBM Style) */
.landing-footer {
    border-top: 2px solid #cbd5e1;
    padding: 25px 20px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    background: #ffffff;
    font-weight: 600;
}

/* Top Notice Bar */
.top-notice-bar {
    background: #002244;
    color: #94a3b8;
    font-size: 0.82rem;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-notice-bar a {
    color: #38bdf8;
    text-decoration: none;
}

/* Domain Search Box Component */
.domain-search-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    max-width: 860px;
    margin: 25px auto 15px auto;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.domain-search-input {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
}

.domain-select-tld {
    background: #ffffff;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
    color: #003366;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
}

.btn-domain-search {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55616 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-domain-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 108, 44, 0.4);
}

.domain-price-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #e2e8f0;
    margin-top: 15px;
}

.domain-badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Product Pricing Cards Grid */
.product-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.15);
    border-color: #003366;
}

.product-card.popular {
    border: 2px solid var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 108, 44, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 6px;
}

.product-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.product-price span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.product-features-list {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.product-features-list li {
    font-size: 0.92rem;
    color: #334155;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #f1f5f9;
}

.product-features-list li i {
    color: #10b981;
    font-size: 1rem;
}

.btn-product-buy {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #003366;
    color: #ffffff;
}

.btn-product-buy:hover {
    background: #002244;
}

.product-card.popular .btn-product-buy {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55616 100%);
}

.product-card.popular .btn-product-buy:hover {
    box-shadow: 0 4px 15px rgba(255, 108, 44, 0.4);
}

/* Trust Stats Bar */
.trust-stats-bar {
    background: #003366;
    color: #ffffff;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 600;
}

/* Modal Overlay Styling for Add Site & Edit Server Modals */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex !important;
}

.modal-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    animation: fadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--cpanel-blue);
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: #ef4444;
}

/* Login Overlay Modification */
#loginOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    position: relative;
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94a3b8;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* 90s IBM & Apple Retro Tech Enhancements */
.retro-badge-header {
    background: #002244;
    color: #e2e8f0;
    font-family: monospace;
    font-size: 0.8rem;
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #001122;
    letter-spacing: 1px;
}

.retro-bevel-card {
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-top: 4px solid #003366;
    box-shadow: 0 4px 15px rgba(0,51,102,0.06);
    border-radius: 8px;
    padding: 26px;
}

/* Interactive Diagnostics Terminal Console */
.diag-console {
    background: #0f172a;
    color: #38bdf8;
    font-family: 'Consolas', 'Courier New', monospace;
    border-radius: 8px;
    padding: 20px;
    font-size: 0.88rem;
    border: 2px solid #003366;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.diag-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.diag-output {
    min-height: 120px;
    white-space: pre-wrap;
    line-height: 1.5;
    color: #4ade80;
}

.btn-diag {
    background: #003366;
    color: #ffffff;
    border: 1px solid #38bdf8;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-diag:hover {
    background: #0284c7;
}

/* Accordion FAQ Styles */
.faq-item {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    user-select: none;
    background: #f8fafc;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 16px 20px;
    max-height: 300px;
    border-top: 1px solid #e2e8f0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}

/* BGP Peering Route Badges */
.bgp-route-badge {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #003366;
}

.bgp-route-badge i {
    font-size: 1.4rem;
    color: var(--primary-orange);
}