:root {
    /* Color Palette */
    --bg-dark: #09071a;
    --bg-gradient-start: #09071a;
    --bg-gradient-mid: #161138;
    --bg-gradient-end: #0d0a27;

    --accent-cyan: #00f3ff;
    --accent-purple: #bc13fe;
    --accent-blue: #3b82f6;
    --accent-gold: #fbbf24;
    --accent-green: #00ff88;
    --accent-danger: #ff4d4d;

    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    --glass-bg: rgba(255, 255, 255, 0.035);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.55);

    --card-hover-glow: 0 0 30px rgba(0, 243, 255, 0.22);

    /* Typography */
    --font-main: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-width: 1240px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-mid), var(--bg-gradient-end));
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.65;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h1 {
    font-size: 3.2rem;
    background: linear-gradient(to right, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-purple);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }

.gradient-text {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* Glassmorphism Panels & Cards */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 243, 255, 0.35);
    box-shadow: var(--card-hover-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-family: inherit;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #0099ff);
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 243, 255, 0.5);
}

.btn-secondary, .btn-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: #ffffff;
}

.btn-secondary:hover, .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.btn-lg { padding: 14px 28px; font-size: 1.05rem; }
.btn-md { padding: 10px 22px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }

/* Badges */
.badge-new {
    display: inline-block;
    background: rgba(0, 243, 255, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.badge-gold, .tag.best-value {
    display: inline-block;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.25));
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-cyan {
    display: inline-block;
    background: rgba(0, 243, 255, 0.12);
    border: 1px solid rgba(0, 243, 255, 0.35);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge-green {
    display: inline-block;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.35);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-cyan);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 50px;
    position: relative;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 15px auto 30px;
    line-height: 1.6;
}

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

.hero-stats {
    margin-top: 30px;
}

.stat-card {
    padding: 18px 20px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Featured Provider Showcase (RockHoster) */
.featured-provider-box {
    padding: 35px;
    border-color: rgba(0, 243, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.06), rgba(188, 19, 254, 0.06), rgba(11, 9, 31, 0.95));
}

.featured-flex {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: center;
}

.featured-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.provider-logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.featured-overview {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 25px;
}

.featured-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.plan-grid {
    gap: 15px;
}

.plan-mini {
    padding: 16px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-mini.plan-popular {
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.08);
}

.plan-tier {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.plan-specs-mini {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 4px 0;
}

.plan-price-mini {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-green);
    margin: 8px 0;
}
.plan-price-mini span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.plan-badge {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Comparison Table Controls */
.table-wrapper {
    padding: 30px;
}

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

.table-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--accent-cyan);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
}

.search-box input {
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    width: 240px;
    transition: var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    width: 280px;
}

/* View Toggle Switch (Table vs Grid Cards) */
.view-toggle-group {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3px;
}

.view-toggle-btn {
    padding: 6px 12px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.view-toggle-btn.active {
    background: rgba(0, 243, 255, 0.2);
    color: #ffffff;
}

/* VPS Grid Cards View */
.vps-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.vps-grid-card {
    background: rgba(18, 14, 46, 0.75);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.vps-grid-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
}

.vps-grid-card.featured-card {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.08), rgba(188, 19, 254, 0.06), rgba(18, 14, 46, 0.9));
}

.vps-grid-card .card-rank-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 243, 255, 0.15);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 6px;
}

.vps-grid-card .specs-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 18px;
}

.specs-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #e2e8f0;
}

/* GPU Cloud Section */
.gpu-badge {
    display: inline-block;
    background: linear-gradient(90deg, #bc13fe, #ec4899);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gpu-card {
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.08), rgba(0,0,0,0.4));
    border: 1px solid rgba(188, 19, 254, 0.3);
    border-radius: 14px;
    padding: 24px;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.gpu-card:hover {
    transform: translateY(-4px);
    border-color: #bc13fe;
    box-shadow: 0 8px 30px rgba(188, 19, 254, 0.25);
}

/* Cost ROI Performance Progress Bars */
.roi-bar-container {
    margin-bottom: 16px;
}

.roi-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 6px;
}

.roi-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), #00ff88);
}

/* Global Latency Pin Cards */
.datacenter-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Table */
.table-responsive {
    overflow-x: auto;
}

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

.vps-table th {
    background: rgba(0, 0, 0, 0.35);
    padding: 16px 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--glass-border);
}

.vps-table td {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.vps-table tr:hover td {
    background: rgba(0, 243, 255, 0.025);
}

.vps-table tr.featured-row td {
    background: rgba(0, 243, 255, 0.04);
    border-left: 3px solid var(--accent-cyan);
}

.provider-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rank {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-cyan);
    min-width: 32px;
}

.provider-info strong {
    font-size: 1.1rem;
    color: #ffffff;
    display: block;
}

.provider-name-link {
    color: #ffffff;
}
.provider-name-link:hover strong {
    color: var(--accent-cyan);
}

.rating .stars {
    color: var(--accent-gold);
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.rating .score {
    font-weight: 800;
    margin-left: 4px;
    color: #ffffff;
}

.price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-green);
}

.spec-val {
    font-size: 0.92rem;
    color: #e2e8f0;
}

.storage-info strong {
    display: block;
    font-size: 0.92rem;
}

.disk-speed-tag {
    font-size: 0.78rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* YABS & Benchmark Data Table */
.benchmark-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.benchmark-table th,
.benchmark-table td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
}

.benchmark-table th {
    background: rgba(0, 0, 0, 0.4);
    color: var(--accent-cyan);
    font-weight: 600;
}

.ping-fast { color: #00ff88; font-weight: 700; }
.ping-mid { color: #00f3ff; font-weight: 700; }
.ping-slow { color: #fbbf24; font-weight: 700; }

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.pros-box {
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.cons-box {
    background: rgba(255, 77, 77, 0.04);
    border: 1px solid rgba(255, 77, 77, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.pros-list, .cons-list {
    list-style: none;
    margin-top: 12px;
}

.pros-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-size: 0.93rem;
}
.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: 800;
}

.cons-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-size: 0.93rem;
}
.cons-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4d4d;
    font-weight: 800;
}

/* FAQ Accordion */
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(0, 243, 255, 0.3);
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    user-select: none;
}

.faq-question .icon {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 22px 20px;
}

/* Blog Cards */
.blog-card {
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan);
}

.article-body h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.7rem;
}

.article-body h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--accent-cyan);
    font-size: 1.3rem;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body pre {
    background: #080614;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-body code {
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 0.92rem;
    color: var(--accent-cyan);
}

.article-body blockquote {
    border-left: 4px solid var(--accent-purple);
    background: rgba(188, 19, 254, 0.05);
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-style: italic;
    color: #e2e8f0;
}

/* Footer */
.site-footer {
    background: #060412;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 1.9rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .featured-flex { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .layout-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.6rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #0d0a27;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: flex; }
    .header-cta { display: none; }
    .search-box input { width: 100%; }
}
