/* roulang page: index */
:root {
            --bg-base: oklch(0.09 0.012 240);
            --bg-surface: oklch(0.13 0.012 240);
            --bg-raised: oklch(0.17 0.012 240);
            --accent-neon: oklch(0.84 0.22 192);
            --accent-neon-2: oklch(0.72 0.26 320);
            --border-subtle: oklch(0.22 0.015 240);
            --text-primary: oklch(0.96 0.005 240);
            --text-muted: oklch(0.55 0.008 240);
            --neon-glow: 0 0 8px oklch(0.84 0.22 192 / 0.6);
            --spacing-unit: 8px;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: color 150ms ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input {
            font-family: inherit;
        }
        
        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            backdrop-filter: blur(8px);
            z-index: 1000;
            padding: 12px 0;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .logo {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--accent-neon);
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .search-box {
            flex: 1;
            max-width: 600px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 48px 10px 44px;
            background: var(--bg-raised);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            color: var(--text-primary);
            font-size: 0.9rem;
            transition: all 200ms ease;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
        }
        
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        
        .search-box .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .search-box button {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent-neon);
            color: var(--bg-base);
            border: none;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
        }
        
        .search-box button:hover {
            box-shadow: var(--neon-glow);
            transform: translateY(-50%) translateY(-1px);
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-shrink: 0;
        }
        
        .nav-links a {
            font-size: 0.875rem;
            color: var(--text-muted);
            white-space: nowrap;
            transition: color 150ms ease;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-neon);
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent-neon);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
        }
        
        /* Hero Bento */
        .hero-bento {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
        }
        
        .hero-main {
            grid-column: 1;
            grid-row: 1 / 3;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-raised) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero-main h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0 0 20px 0;
            line-height: 1.15;
        }
        
        .hero-main h1 .highlight {
            color: var(--accent-neon);
        }
        
        .hero-main p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin: 0 0 32px 0;
            max-width: 560px;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--accent-neon);
            color: var(--bg-base);
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            border: none;
            cursor: pointer;
            transition: all 150ms ease;
            display: inline-block;
        }
        
        .btn-primary:hover {
            box-shadow: var(--neon-glow);
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--accent-neon);
            border: 1px solid var(--accent-neon);
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 150ms ease;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: oklch(0.84 0.22 192 / 0.12);
        }
        
        .hero-side-top {
            background: var(--bg-raised);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 24px;
        }
        
        .hero-side-top h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 16px 0;
            color: var(--accent-neon);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-primary);
            display: block;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        
        .hero-side-bottom {
            background: var(--bg-raised);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 24px;
        }
        
        .hero-side-bottom h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 12px 0;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            padding: 8px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .feature-list li i {
            color: var(--accent-neon);
            font-size: 0.75rem;
        }
        
        /* Flash Section */
        .flash-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }
        
        .section-title {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 700;
            margin: 0;
        }
        
        .countdown-badge {
            background: var(--accent-neon-2);
            color: var(--bg-base);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .poster-rail {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }
        
        .poster-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            overflow: hidden;
            transition: all 200ms ease;
            cursor: pointer;
        }
        
        .poster-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
            transform: translateY(-4px);
        }
        
        .poster-thumb {
            width: 100%;
            aspect-ratio: 2/3;
            background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-surface) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .poster-thumb::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, var(--bg-surface) 0%, transparent 40%);
        }
        
        .poster-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: var(--accent-neon);
            color: var(--bg-base);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 1;
        }
        
        .poster-info {
            padding: 16px;
        }
        
        .poster-title {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
            line-height: 1.4;
        }
        
        .poster-meta {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .meta-tag {
            background: oklch(0.84 0.22 192 / 0.12);
            color: var(--accent-neon);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        /* Stock Alert */
        .stock-alert {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .alert-box {
            background: linear-gradient(90deg, oklch(0.72 0.26 320 / 0.15) 0%, transparent 100%);
            border-left: 4px solid var(--accent-neon-2);
            border-radius: 8px;
            padding: 24px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }
        
        .alert-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: var(--accent-neon-2);
        }
        
        .alert-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }
        
        /* Content Feed */
        .content-feed {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .feed-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
            margin-top: 32px;
        }
        
        .feed-main {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .feed-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 20px;
            transition: all 200ms ease;
        }
        
        .feed-item:hover {
            border-color: var(--accent-neon);
        }
        
        .feed-item h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0 0 10px 0;
            line-height: 1.5;
        }
        
        .feed-item h3 a {
            color: var(--text-primary);
        }
        
        .feed-item h3 a:hover {
            color: var(--accent-neon);
        }
        
        .feed-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0 0 12px 0;
            line-height: 1.7;
        }
        
        .feed-meta {
            display: flex;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        .feed-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        
        .sidebar-widget {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 24px;
        }
        
        .sidebar-widget h3 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 16px 0;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .hot-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hot-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .hot-list li:last-child {
            border-bottom: none;
        }
        
        .hot-list a {
            color: var(--text-primary);
            font-size: 0.9rem;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        
        .hot-list a:hover {
            color: var(--accent-neon);
        }
        
        .hot-rank {
            background: var(--accent-neon);
            color: var(--bg-base);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 3px;
            min-width: 20px;
            text-align: center;
            flex-shrink: 0;
        }
        
        /* Action Buttons */
        .action-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .action-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-top: 32px;
        }
        
        .action-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 32px 24px;
            text-align: center;
            transition: all 200ms ease;
        }
        
        .action-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
        }
        
        .action-icon {
            font-size: 2.5rem;
            color: var(--accent-neon);
            margin-bottom: 16px;
        }
        
        .action-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 0 12px 0;
        }
        
        .action-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0 0 20px 0;
            line-height: 1.6;
        }
        
        /* Zone Cards */
        .zones-section {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .zones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        
        .zone-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            overflow: hidden;
            transition: all 200ms ease;
        }
        
        .zone-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
            transform: translateY(-4px);
        }
        
        .zone-header {
            padding: 24px;
            background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-surface) 100%);
        }
        
        .zone-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: var(--accent-neon);
        }
        
        .zone-header p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }
        
        .zone-body {
            padding: 24px;
        }
        
        .zone-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .zone-features li {
            padding: 8px 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .zone-features li i {
            color: var(--accent-neon);
            font-size: 0.8rem;
        }
        
        /* FAQ */
        .faq-section {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .section-intro {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-intro p {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 12px auto 0;
        }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 24px;
            transition: all 200ms ease;
        }
        
        .faq-item:hover {
            border-color: var(--accent-neon);
        }
        
        .faq-question {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .faq-question i {
            color: var(--accent-neon);
            font-size: 0.9rem;
        }
        
        .faq-answer {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
        }
        
        /* CTA Section */
        .cta-section {
            max-width: 1400px;
            margin: 80px auto 100px;
            padding: 0 20px;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-raised) 100%);
            border: 1px solid var(--accent-neon);
            border-radius: 8px;
            padding: 64px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, oklch(0.84 0.22 192 / 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-content h2 {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 800;
            margin: 0 0 16px 0;
            color: var(--text-primary);
        }
        
        .cta-content p {
            font-size: 1rem;
            color: var(--text-muted);
            margin: 0 0 32px 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Footer */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--accent-neon);
            margin: 0 0 16px 0;
        }
        
        .footer-brand p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        
        .footer-links h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0 0 16px 0;
            color: var(--text-primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        .footer-links a:hover {
            color: var(--accent-neon);
        }
        
        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        
        /* Mobile Responsive */
        @media screen and (max-width: 1024px) {
            .hero-bento {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            
            .hero-main {
                grid-column: 1;
                grid-row: auto;
                padding: 36px;
            }
            
            .hero-side-top,
            .hero-side-bottom {
                grid-column: 1;
            }
            
            .feed-layout {
                grid-template-columns: 1fr;
            }
            
            .feed-sidebar {
                position: static;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .search-box {
                max-width: 100%;
            }
            
            .hero-main {
                padding: 28px;
            }
            
            .hero-main h1 {
                font-size: 1.75rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
            
            .poster-rail {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .alert-box {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .zones-grid {
                grid-template-columns: 1fr;
            }
            
            .action-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .cta-box {
                padding: 40px 24px;
            }
        }
        
        @media screen and (max-width: 520px) {
            .nav-container {
                gap: 12px;
            }
            
            .logo {
                font-size: 1.05rem;
            }
            
            .search-box input {
                font-size: 0.85rem;
                padding: 8px 42px 8px 36px;
            }
            
            .search-box button {
                padding: 5px 14px;
                font-size: 0.8rem;
            }
            
            .poster-rail {
                grid-template-columns: 1fr;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-base: oklch(0.09 0.012 240);
            --bg-surface: oklch(0.13 0.012 240);
            --bg-raised: oklch(0.17 0.012 240);
            --accent-neon: oklch(0.84 0.22 192);
            --accent-neon-2: oklch(0.72 0.26 320);
            --border-subtle: oklch(0.22 0.015 240);
            --text-primary: oklch(0.96 0.005 240);
            --text-muted: oklch(0.55 0.008 240);
            --neon-glow: 0 0 8px oklch(0.84 0.22 192 / 0.6);
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
        }
        
        a {
            color: var(--accent-neon);
            text-decoration: none;
            transition: color 150ms ease;
        }
        
        a:hover {
            color: var(--text-primary);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input {
            font-family: inherit;
        }
        
        /* Header & Navigation */
        .site-header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }
        
        .logo {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--accent-neon);
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .search-container {
            flex: 1;
            max-width: 600px;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            background: var(--bg-raised);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 10px 120px 10px 44px;
            color: var(--text-primary);
            font-size: 0.9rem;
            transition: all 200ms ease;
        }
        
        .search-box:focus {
            outline: none;
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
        }
        
        .search-box::placeholder {
            color: var(--text-muted);
        }
        
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }
        
        .search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent-neon);
            color: var(--bg-base);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 150ms ease;
        }
        
        .search-btn:hover {
            box-shadow: var(--neon-glow);
            transform: translateY(-50%) translateY(-1px);
        }
        
        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-shrink: 0;
        }
        
        .nav-links a {
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 150ms ease;
            white-space: nowrap;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-neon);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
            padding: 80px 20px 60px;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at top right, oklch(0.84 0.22 192 / 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            max-width: 900px;
        }
        
        .category-badge {
            display: inline-block;
            background: oklch(0.84 0.22 192 / 0.12);
            color: var(--accent-neon);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin: 0 0 24px 0;
        }
        
        .hero-title .highlight {
            color: var(--accent-neon);
        }
        
        .hero-desc {
            font-size: 1.125rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 700px;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-neon);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 8px;
        }
        
        /* Quality Tiers Section */
        .quality-section {
            padding: 80px 20px;
            background: var(--bg-base);
        }
        
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin: 0 0 16px 0;
        }
        
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }
        
        .quality-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 32px 24px;
            text-align: center;
            transition: all 200ms ease;
            position: relative;
            overflow: hidden;
        }
        
        .quality-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-neon);
            transform: scaleX(0);
            transition: transform 200ms ease;
        }
        
        .quality-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
            transform: translateY(-4px);
        }
        
        .quality-card:hover::before {
            transform: scaleX(1);
        }
        
        .quality-icon {
            width: 60px;
            height: 60px;
            background: oklch(0.84 0.22 192 / 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.75rem;
            color: var(--accent-neon);
        }
        
        .quality-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 12px 0;
        }
        
        .quality-specs {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        
        .quality-count {
            font-size: 0.875rem;
            color: var(--accent-neon-2);
            font-weight: 600;
        }
        
        /* Feature Comparison */
        .comparison-section {
            padding: 80px 20px;
            background: var(--bg-surface);
        }
        
        .comparison-table {
            background: var(--bg-raised);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-header {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 20px;
            padding: 24px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .comparison-header-cell {
            font-size: 1rem;
            font-weight: 700;
            text-align: center;
        }
        
        .comparison-header-cell:first-child {
            text-align: left;
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 20px;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-subtle);
            transition: background 150ms ease;
        }
        
        .comparison-row:last-child {
            border-bottom: none;
        }
        
        .comparison-row:hover {
            background: var(--bg-surface);
        }
        
        .comparison-feature {
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        
        .comparison-value {
            text-align: center;
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        .check-icon {
            color: var(--accent-neon);
            font-size: 1.125rem;
        }
        
        /* Content Grid */
        .content-section {
            padding: 80px 20px;
            background: var(--bg-base);
        }
        
        .poster-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 24px;
        }
        
        .poster-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            overflow: hidden;
            transition: all 200ms ease;
            cursor: pointer;
        }
        
        .poster-card:hover {
            border-color: var(--accent-neon);
            box-shadow: var(--neon-glow);
            transform: translateY(-4px);
        }
        
        .poster-image {
            width: 100%;
            aspect-ratio: 2 / 3;
            background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-surface) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .poster-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, oklch(0.84 0.22 192 / 0.15) 0%, transparent 70%);
        }
        
        .quality-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent-neon);
            color: var(--bg-base);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 1;
        }
        
        .poster-info {
            padding: 16px;
        }
        
        .poster-title {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 8px 0;
            line-height: 1.4;
        }
        
        .poster-meta {
            display: flex;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        /* Tech Features */
        .tech-section {
            padding: 80px 20px;
            background: var(--bg-surface);
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        
        .tech-card {
            display: flex;
            gap: 20px;
        }
        
        .tech-icon-wrap {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: oklch(0.84 0.22 192 / 0.12);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-neon);
        }
        
        .tech-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 0 8px 0;
        }
        
        .tech-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: var(--bg-base);
        }
        
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 16px;
            transition: all 200ms ease;
        }
        
        .faq-item:hover {
            border-color: var(--accent-neon);
        }
        
        .faq-question {
            font-size: 1.125rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--text-primary);
        }
        
        .faq-answer {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, oklch(0.84 0.22 192 / 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }
        
        .cta-desc {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin: 0 0 32px 0;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--accent-neon);
            color: var(--bg-base);
            padding: 14px 32px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            border: none;
            cursor: pointer;
            transition: all 150ms ease;
        }
        
        .btn-primary:hover {
            box-shadow: var(--neon-glow);
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--accent-neon);
            padding: 14px 32px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            border: 1px solid var(--accent-neon);
            cursor: pointer;
            transition: all 150ms ease;
        }
        
        .btn-secondary:hover {
            background: oklch(0.84 0.22 192 / 0.12);
        }
        
        /* Footer */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 20px 30px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--accent-neon);
            margin: 0 0 16px 0;
        }
        
        .footer-brand p {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }
        
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0 0 16px 0;
        }
        
        .footer-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            font-size: 0.875rem;
            color: var(--text-muted);
            transition: color 150ms ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-neon);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-subtle);
        }
        
        .footer-bottom p {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin: 0;
        }
        
        /* Mobile Responsive */
        @media screen and (max-width: 1024px) {
            .comparison-header,
            .comparison-row {
                grid-template-columns: 1.5fr repeat(3, 1fr);
                gap: 12px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media screen and (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                height: auto;
                padding: 16px 20px;
            }
            
            .search-container {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero-section {
                padding: 60px 20px 40px;
            }
            
            .hero-stats {
                gap: 24px;
            }
            
            .quality-section,
            .comparison-section,
            .content-section,
            .tech-section,
            .faq-section,
            .cta-section {
                padding: 60px 20px;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .comparison-table {
                overflow-x: auto;
            }
            
            .comparison-header,
            .comparison-row {
                min-width: 600px;
            }
            
            .poster-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 16px;
            }
            
            .tech-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
        }
        
        @media screen and (max-width: 520px) {
            .hero-title {
                font-size: 1.75rem;
            }
            
            .hero-desc {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .quality-grid {
                grid-template-columns: 1fr;
            }
            
            .poster-grid {
                grid-template-columns: 1fr;
            }
        }
