/* roulang page: index */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        ul, ol {
            list-style: none;
        }

        :focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.95);
            border-bottom-color: var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 24px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 18px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
        }

        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
        }

        .main-nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .main-nav a.active {
            color: var(--primary);
            position: relative;
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > button {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition), background var(--transition);
        }

        .nav-dropdown > button:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-dropdown > button .arrow {
            font-size: 10px;
            transition: transform var(--transition);
        }

        .nav-dropdown.open > button .arrow {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 200px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 6px;
            box-shadow: var(--shadow-md);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
        }

        .nav-dropdown.open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            color: var(--text-secondary);
        }

        .nav-dropdown-menu a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-btn {
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .header-btn.btn-primary {
            background: var(--primary);
            color: #0A0C0E;
        }

        .header-btn.btn-primary:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 3px var(--primary-dim);
            color: #0A0C0E;
        }

        .header-btn.btn-ghost {
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .header-btn.btn-ghost:hover {
            border-color: var(--border-light);
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: background var(--transition);
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 12, 14, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            padding: 24px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform .3s ease;
        }

        .mobile-nav.open {
            transform: translateX(0);
        }

        .mobile-nav a {
            display: block;
            padding: 16px 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            border-bottom: 1px solid rgba(42, 47, 56, 0.5);
            transition: color var(--transition);
        }

        .mobile-nav a:hover {
            color: var(--primary);
        }

        .mobile-nav a.active {
            color: var(--primary);
        }

        .mobile-nav .mobile-nav-sub {
            font-size: 14px;
            padding: 10px 0 10px 16px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .mobile-nav .btn-primary {
            margin-top: 20px;
            display: block;
            text-align: center;
            padding: 14px;
            background: var(--primary);
            color: #0A0C0E;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 15px;
        }

        /* ===== MAIN ===== */
        main {
            padding-top: var(--header-height);
        }

        section {
            padding: 72px 0;
            position: relative;
        }

        section + section {
            border-top: 1px solid rgba(42, 47, 56, 0.4);
        }

        .section-header {
            margin-bottom: 36px;
            max-width: 720px;
        }

        .section-header .section-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: var(--primary-dim);
            color: var(--primary);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: clamp(24px, 3.5vw, 32px);
            line-height: 1.4;
            font-weight: 700;
            letter-spacing: .5px;
        }

        .section-header p {
            margin-top: 12px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.8;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #0A0C0E;
        }

        .btn-primary:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 4px var(--primary-dim);
            color: #0A0C0E;
            transform: translateY(-1px);
        }

        .btn-outline {
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .btn-outline:hover {
            border-color: var(--border-light);
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .btn-accent {
            background: var(--accent);
            color: #0A0C0E;
        }

        .btn-accent:hover {
            box-shadow: 0 0 0 4px var(--accent-dim);
            transform: translateY(-1px);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .5px;
        }

        .badge-live {
            background: rgba(200, 243, 29, 0.16);
            color: var(--primary);
        }

        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: .5; transform: scale(1.3); }
        }

        .badge-upcoming {
            background: rgba(245, 165, 36, 0.14);
            color: var(--warning);
        }

        .badge-finished {
            background: rgba(160, 168, 179, 0.1);
            color: var(--text-secondary);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 80px 0 72px;
            background-image:
                radial-gradient(ellipse at 20% 20%, rgba(200, 243, 29, 0.05) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(37, 230, 200, 0.06) 0%, transparent 50%),
                url('/assets/images/b6aad269617e9f84.webp');
            background-size: cover, cover, cover;
            background-position: center, center, center;
            position: relative;
            min-height: calc(100vh - var(--header-height));
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,12,14,.7) 0%, rgba(10,12,14,.92) 100%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content .hero-tag {
            display: inline-block;
            padding: 5px 14px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            background: var(--primary-dim);
            color: var(--primary);
            margin-bottom: 18px;
            letter-spacing: .5px;
        }

        .hero-content h1 {
            font-size: clamp(28px, 4vw, 42px);
            line-height: 1.35;
            font-weight: 800;
            letter-spacing: .5px;
            margin-bottom: 18px;
        }

        .hero-content h1 .highlight {
            color: var(--primary);
        }

        .hero-content .hero-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 520px;
            margin-bottom: 28px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-stats {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat .stat-num {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 1px;
        }

        .hero-stat .stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            letter-spacing: .5px;
        }

        .hero-stat .stat-num.accent {
            color: var(--accent);
        }
        .hero-stat .stat-num.primary {
            color: var(--primary);
        }

        .hero-panel {
            background: rgba(18, 21, 26, 0.9);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            backdrop-filter: blur(8px);
        }

        .hero-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.02);
        }

        .hero-panel-header .panel-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--text-secondary);
            text-transform: uppercase;
        }

        .hero-panel-header .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
        }

        .hero-panel-header .live-indicator::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .hero-match-list {
            padding: 6px;
        }

        .hero-match-item {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 10px;
            align-items: center;
            padding: 14px 12px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }

        .hero-match-item:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .hero-match-item .team {
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-match-item .team .team-icon {
            width: 22px;
            height: 22px;
            border-radius: 5px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--text-secondary);
            flex-shrink: 0;
        }

        .hero-match-item .team.left-team {
            justify-content: flex-end;
            text-align: right;
        }

        .hero-match-item .score {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text);
            min-width: 80px;
            justify-content: center;
        }

        .hero-match-item .score .score-colon {
            color: var(--text-muted);
            font-weight: 400;
        }

        .hero-match-item .score .score-side {
            min-width: 24px;
            text-align: center;
        }

        .hero-match-item .score .score-side.winning {
            color: var(--primary);
        }

        .hero-match-item .match-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .hero-match-item .match-info .game {
            font-size: 10px;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-match-item .match-info .time {
            font-size: 11px;
            font-family: var(--font-mono);
            color: var(--accent);
        }

        .hero-panel-footer {
            padding: 12px 18px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: center;
        }

        .hero-panel-footer a {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .hero-panel-footer a:hover {
            color: var(--primary);
        }

        /* ===== TICKER ===== */
        .score-ticker {
            padding: 0;
            background: var(--panel);
            border-bottom: 1px solid var(--border);
        }

        .ticker-wrapper {
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .ticker-wrapper::-webkit-scrollbar {
            display: none;
        }

        .ticker-track {
            display: flex;
            gap: 12px;
            padding: 14px 24px;
            min-width: max-content;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            background: var(--panel-2);
            border: 1px solid var(--border);
            font-size: 13px;
            white-space: nowrap;
            transition: border-color var(--transition);
            flex-shrink: 0;
        }

        .ticker-item:hover {
            border-color: var(--border-light);
        }

        .ticker-item .ticker-game {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 1px;
        }

        .ticker-item .ticker-teams {
            font-weight: 600;
            font-size: 13px;
        }

        .ticker-item .ticker-score {
            font-family: var(--font-mono);
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
        }

        .ticker-item .ticker-status {
            font-size: 11px;
            color: var(--accent);
        }

        /* ===== MATRIX ===== */
        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 16px;
        }

        .matrix-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .matrix-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .matrix-card .matrix-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 14px;
            font-weight: 700;
        }

        .matrix-card .matrix-icon.green {
            background: var(--primary-dim);
            color: var(--primary);
        }
        .matrix-card .matrix-icon.cyan {
            background: var(--accent-dim);
            color: var(--accent);
        }
        .matrix-card .matrix-icon.orange {
            background: rgba(245, 165, 36, 0.12);
            color: var(--warning);
        }
        .matrix-card .matrix-icon.red {
            background: rgba(255, 77, 79, 0.12);
            color: var(--danger);
        }

        .matrix-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .matrix-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .matrix-card.span-3 { grid-column: span 3; }
        .matrix-card.span-4 { grid-column: span 4; }
        .matrix-card.span-5 { grid-column: span 5; }
        .matrix-card.span-6 { grid-column: span 6; }
        .matrix-card.span-7 { grid-column: span 7; }
        .matrix-card.span-12 { grid-column: span 12; }

        .matrix-card.featured {
            background: linear-gradient(135deg, rgba(200, 243, 29, 0.06) 0%, rgba(18, 21, 26, 0.9) 60%);
            border-color: rgba(200, 243, 29, 0.25);
        }

        .matrix-card .mini-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .matrix-card .mini-tags span {
            font-size: 11px;
            padding: 3px 8px;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }

        /* ===== SCHEDULE CARDS ===== */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .schedule-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            cursor: pointer;
        }

        .schedule-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
            transform: translateY(-3px);
        }

        .schedule-card .schedule-cover {
            height: 120px;
            background-size: cover;
            background-position: center;
            position: relative;
            border-bottom: 1px solid var(--border);
        }

        .schedule-card .schedule-cover .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(18,21,26,.8) 100%);
        }

        .schedule-card .schedule-cover .badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
        }

        .schedule-card .schedule-body {
            padding: 18px;
        }

        .schedule-card .schedule-body h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .schedule-card .schedule-body .schedule-meta {
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .schedule-card .schedule-body .schedule-desc {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }

        /* ===== DATA SECTION ===== */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .data-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            transition: all var(--transition);
        }

        .data-item:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .data-item .data-num {
            font-family: var(--font-mono);
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .data-item .data-num.green { color: var(--primary); }
        .data-item .data-num.cyan { color: var(--accent); }
        .data-item .data-num.orange { color: var(--warning); }
        .data-item .data-num.text { color: var(--text); }

        .data-item .data-label {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: .5px;
        }

        /* ===== FLOW ===== */
        .flow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            position: relative;
        }

        .flow-step {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition);
            position: relative;
        }

        .flow-step:hover {
            border-color: var(--border-light);
        }

        .flow-step .step-num {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .flow-step h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .flow-step p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ===== CATEGORY ENTRY ===== */
        .category-entry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .category-entry-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .category-entry-card:hover {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-dim);
            transform: translateY(-3px);
        }

        .category-entry-card .entry-icon {
            font-size: 24px;
            font-weight: 700;
        }

        .category-entry-card h3 {
            font-size: 17px;
            font-weight: 700;
        }

        .category-entry-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            flex-grow: 1;
        }

        .category-entry-card .entry-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== MATCH REVIEW ===== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .review-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
        }

        .review-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .review-card .review-cover {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .review-card .review-cover .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,12,14,.1) 0%, rgba(18,21,26,.9) 100%);
        }

        .review-card .review-cover .review-badge {
            position: absolute;
            bottom: 10px;
            left: 14px;
            z-index: 2;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: .5px;
        }

        .review-card .review-body {
            padding: 18px;
        }

        .review-card .review-body h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .review-card .review-body .review-meta {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .review-card .review-body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ===== BRAND INTRO ===== */
        .brand-section {
            background: var(--panel);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .brand-content {
            max-width: 820px;
        }

        .brand-content h2 {
            font-size: clamp(24px, 3vw, 30px);
            font-weight: 700;
            margin-bottom: 18px;
            line-height: 1.4;
        }

        .brand-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 14px;
        }

        .brand-content p:last-child {
            margin-bottom: 0;
        }

        /* ===== NEWS ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .news-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition);
            cursor: pointer;
        }

        .news-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .news-card .news-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }

        .news-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .news-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .news-card .news-time {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 10px;
            display: block;
            font-family: var(--font-mono);
        }

        /* ===== RANKING ===== */
        .ranking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .ranking-panel {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px;
        }

        .ranking-panel h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ranking-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(42, 47, 56, 0.5);
            font-size: 14px;
        }

        .ranking-list li:last-child {
            border-bottom: none;
        }

        .ranking-list .rank {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 700;
            width: 28px;
            text-align: center;
            color: var(--text-secondary);
            flex-shrink: 0;
        }

        .ranking-list .rank.top {
            color: var(--primary);
        }

        .ranking-list .rank.second {
            color: var(--accent);
        }

        .ranking-list .rank.third {
            color: var(--warning);
        }

        .ranking-list .rank-name {
            flex-grow: 1;
            font-weight: 600;
        }

        .ranking-list .rank-value {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* ===== PARTNERS ===== */
        .partner-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .partner-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all var(--transition);
            cursor: default;
        }

        .partner-item:hover {
            border-color: var(--border-light);
            color: var(--text);
            background: var(--panel-2);
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 780px;
        }

        .faq-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-item.open {
            border-color: var(--primary);
        }

        .faq-item .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: color var(--transition);
        }

        .faq-item .faq-question:hover {
            color: var(--primary);
        }

        .faq-item .faq-question .faq-icon {
            font-size: 14px;
            color: var(--text-secondary);
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }

        .faq-item .faq-answer {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* ===== SAFETY ===== */
        .safety-bar {
            background: var(--panel-2);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 24px 0;
        }

        .safety-bar .safety-content {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .safety-bar .safety-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .safety-bar .safety-item::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--panel);
            border-top: 1px solid var(--border);
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(200, 243, 29, 0.08) 0%, rgba(18, 21, 26, 0.95) 50%);
            border: 1px solid rgba(200, 243, 29, 0.2);
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            max-width: 780px;
            margin: 0 auto;
        }

        .cta-box h2 {
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-box p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .cta-box .cta-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #080A0C;
            border-top: 1px solid var(--border);
            padding: 48px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
        }

        .footer-brand h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(42, 47, 56, 0.5);
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero {
                padding: 48px 0 56px;
                min-height: auto;
            }
            .matrix-card.span-3,
            .matrix-card.span-4,
            .matrix-card.span-5,
            .matrix-card.span-6,
            .matrix-card.span-7 {
                grid-column: span 6;
            }
            .schedule-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .flow-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-entry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-nav,
            .header-actions {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav {
                display: block;
            }
            section {
                padding: 48px 0;
            }
            .matrix-card.span-3,
            .matrix-card.span-4,
            .matrix-card.span-5,
            .matrix-card.span-6,
            .matrix-card.span-7 {
                grid-column: span 12;
            }
            .schedule-grid {
                grid-template-columns: 1fr;
            }
            .review-grid {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .ranking-grid {
                grid-template-columns: 1fr;
            }
            .category-entry-grid {
                grid-template-columns: 1fr;
            }
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .flow-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-stats {
                gap: 16px;
            }
            .hero-stat .stat-num {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .data-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .cta-box {
                padding: 24px 18px;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-match-item .team {
                font-size: 12px;
            }
            .hero-match-item .score {
                font-size: 16px;
                min-width: 60px;
            }
            .logo-text .logo-main {
                font-size: 13px;
            }
            .logo-text .logo-sub {
                font-size: 9px;
            }
        }

/* roulang page: category1 */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--header-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.95);
            border-bottom-color: var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 24px;
            position: relative;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
            flex-shrink: 0;
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 18px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
        }

        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
        }

        .main-nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .main-nav a.active {
            color: var(--primary);
            position: relative;
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-more {
            position: relative;
        }

        .nav-more-btn {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition), background var(--transition);
        }

        .nav-more-btn:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-more-btn svg {
            width: 14px;
            height: 14px;
            transition: transform var(--transition);
        }

        .nav-more.open .nav-more-btn svg {
            transform: rotate(180deg);
        }

        .nav-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 200px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
            box-shadow: var(--shadow-md);
            z-index: 1001;
        }

        .nav-more.open .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown a {
            display: block;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            transition: color var(--transition), background var(--transition);
        }

        .nav-dropdown a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 12, 14, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            padding: 24px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform .3s ease;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu a {
            display: block;
            padding: 16px 12px;
            font-size: 17px;
            font-weight: 500;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            transition: color var(--transition), background var(--transition);
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--primary);
            background: rgba(200, 243, 29, 0.05);
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-section {
            padding: 36px 0 20px;
            border-bottom: 1px solid var(--border);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb .sep {
            color: var(--border-light);
        }

        .breadcrumb .current {
            color: var(--text-secondary);
        }

        /* ===== PAGE HEADER ===== */
        .page-header {
            padding: 28px 0 40px;
        }

        .page-header h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: .5px;
        }

        .page-header .lead {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 860px;
            margin: 0;
        }

        /* ===== STATS CHIPS ===== */
        .stats-chips {
            padding: 12px 0 32px;
        }

        .chips-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .chip-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: border-color var(--transition), transform var(--transition);
        }

        .chip-item:hover {
            border-color: var(--border-light);
            transform: translateY(-2px);
        }

        .chip-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            font-family: var(--font-mono);
        }

        .chip-icon.live {
            background: var(--primary-dim);
            color: var(--primary);
        }

        .chip-icon.scheduled {
            background: var(--accent-dim);
            color: var(--accent);
        }

        .chip-icon.finished {
            background: rgba(160, 168, 179, 0.1);
            color: var(--text-secondary);
        }

        .chip-icon.projects {
            background: rgba(245, 165, 36, 0.12);
            color: var(--warning);
        }

        .chip-info {
            display: flex;
            flex-direction: column;
        }

        .chip-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: .5px;
        }

        .chip-value {
            font-size: 22px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text);
            letter-spacing: .5px;
        }

        /* ===== LIVE CARDS GRID ===== */
        .live-cards-section {
            padding: 24px 0 48px;
        }

        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .section-heading h2 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: .3px;
        }

        .section-heading .heading-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            background: var(--primary-dim);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            letter-spacing: .5px;
        }

        .live-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .live-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .live-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .live-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .live-card-project {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            letter-spacing: .3px;
            white-space: nowrap;
        }

        .status-badge.live {
            background: var(--primary-dim);
            color: var(--primary);
        }

        .status-badge.live .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .5;
                transform: scale(1.3);
            }
        }

        .status-badge.upcoming {
            background: rgba(245, 165, 36, 0.12);
            color: var(--warning);
        }

        .status-badge.finished {
            background: rgba(160, 168, 179, 0.1);
            color: var(--text-secondary);
        }

        .live-card-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .matchup-team {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
        }

        .matchup-team .team-dot {
            width: 8px;
            height: 8px;
            border-radius: 3px;
            flex-shrink: 0;
        }

        .team-dot.red {
            background: var(--danger);
        }

        .team-dot.blue {
            background: var(--accent);
        }

        .team-dot.neutral {
            background: var(--text-muted);
        }

        .matchup-score {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            letter-spacing: .5px;
            color: var(--text);
        }

        .matchup-score .score-sep {
            color: var(--text-muted);
            margin: 0 4px;
            font-weight: 400;
        }

        .live-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            gap: 8px;
        }

        .live-card-stage {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .live-card-time {
            font-family: var(--font-mono);
            letter-spacing: .3px;
        }

        /* ===== FOCUS FEATURE CARD ===== */
        .focus-section {
            padding: 20px 0 48px;
        }

        .focus-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 20px;
        }

        .focus-main-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .focus-main-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
        }

        .focus-main-card .focus-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: .25;
        }

        .focus-main-card .focus-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 12, 14, 0.92) 0%, rgba(10, 12, 14, 0.4) 100%);
            z-index: 1;
        }

        .focus-main-card .focus-content {
            position: relative;
            z-index: 2;
            padding: 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .focus-main-card .focus-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-dim);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            letter-spacing: .5px;
            margin-bottom: 14px;
            width: fit-content;
        }

        .focus-main-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .focus-main-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            max-width: 540px;
            line-height: 1.7;
        }

        .focus-side-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .focus-side-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .focus-side-card .side-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: .5px;
            text-transform: uppercase;
        }

        .focus-side-card .side-value {
            font-size: 28px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text);
            letter-spacing: .5px;
        }

        .focus-side-card .side-bar {
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
            display: flex;
        }

        .focus-side-card .side-bar .bar-fill {
            height: 100%;
            border-radius: 3px;
        }

        .bar-fill.primary {
            background: var(--primary);
        }

        .bar-fill.accent {
            background: var(--accent);
        }

        .bar-fill.danger {
            background: var(--danger);
        }

        /* ===== DATA VISUAL CARD ===== */
        .data-visual-section {
            padding: 20px 0 48px;
        }

        .data-visual-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .data-visual-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color var(--transition), transform var(--transition);
        }

        .data-visual-card:hover {
            border-color: var(--border-light);
            transform: translateY(-2px);
        }

        .data-visual-card .visual-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .data-visual-card .visual-body {
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .data-visual-card .visual-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }

        .data-visual-card .visual-metric {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
        }

        /* ===== DEEP READING ===== */
        .reading-section {
            padding: 20px 0 48px;
        }

        .reading-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .reading-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 22px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: border-color var(--transition), transform var(--transition);
        }

        .reading-card:hover {
            border-color: var(--border-light);
            transform: translateY(-2px);
        }

        .reading-card .reading-img {
            width: 120px;
            height: 84px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }

        .reading-card .reading-content {
            flex: 1;
            min-width: 0;
        }

        .reading-card .reading-tag {
            font-size: 11px;
            color: var(--accent);
            font-weight: 600;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 6px;
        }

        .reading-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.5;
        }

        .reading-card p {
            font-size: 13px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 40px 0 56px;
        }

        .cta-panel {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: var(--primary-dim);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-panel .cta-text {
            position: relative;
            z-index: 1;
        }

        .cta-panel h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cta-panel p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            max-width: 520px;
        }

        .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: .3px;
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #0A0C0E;
        }

        .btn-primary:hover {
            background: var(--primary-strong);
            color: #0A0C0E;
            box-shadow: 0 0 0 2px var(--primary-dim);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--border-light);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
        }

        .btn:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 20px 0 48px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 860px;
        }

        .faq-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-item.open {
            border-color: var(--primary);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: color var(--transition);
            width: 100%;
            text-align: left;
            gap: 12px;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform var(--transition);
        }

        .faq-question .faq-icon::before,
        .faq-question .faq-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--text-secondary);
            transition: background var(--transition);
        }

        .faq-question .faq-icon::before {
            width: 14px;
            height: 2px;
            transform: translate(-50%, -50%);
        }

        .faq-question .faq-icon::after {
            width: 2px;
            height: 14px;
            transform: translate(-50%, -50%);
            transition: opacity var(--transition);
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-item.open .faq-question .faq-icon::after {
            opacity: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease, padding .3s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.7;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--panel);
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 14px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 4px 0;
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .live-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .chips-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .data-visual-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .focus-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-brand {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .live-grid {
                grid-template-columns: 1fr;
            }

            .reading-grid {
                grid-template-columns: 1fr;
            }

            .data-visual-grid {
                grid-template-columns: 1fr;
            }

            .chips-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-panel {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 22px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .footer-brand {
                grid-column: span 2;
            }

            .section-heading h2 {
                font-size: 20px;
            }

            .focus-main-card .focus-content {
                padding: 20px;
            }

            .focus-main-card h3 {
                font-size: 20px;
            }

            .container {
                padding: 0 16px;
            }

            .stats-chips {
                padding-bottom: 20px;
            }

            .live-cards-section,
            .focus-section,
            .data-visual-section,
            .reading-section,
            .faq-section {
                padding-bottom: 32px;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 24px;
            }

            .chips-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-brand {
                grid-column: span 1;
            }

            .cta-actions {
                flex-direction: column;
                width: 100%;
            }

            .cta-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .matchup-score {
                font-size: 22px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .breadcrumb-section {
                padding-top: 24px;
            }

            .page-header {
                padding-bottom: 24px;
            }
        }

/* roulang page: category2 */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--header-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.96);
            border-bottom-color: var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 24px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
            flex-shrink: 0;
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 17px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
            letter-spacing: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .3px;
        }

        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .main-nav a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
            position: relative;
        }

        .main-nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .main-nav a.active {
            color: var(--primary);
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
            position: relative;
            cursor: pointer;
            user-select: none;
        }

        .nav-dropdown-toggle:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-dropdown-toggle .arrow {
            font-size: 10px;
            transition: transform var(--transition);
        }

        .nav-dropdown:hover .nav-dropdown-toggle .arrow,
        .nav-dropdown.open .nav-dropdown-toggle .arrow {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            min-width: 180px;
            padding: 6px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
            z-index: 100;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown.open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(4px);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            font-size: 13.5px;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .nav-dropdown-menu a:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--panel-2);
            border: 1px solid var(--border);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            transition: border-color var(--transition), background var(--transition);
        }

        .nav-toggle:hover {
            border-color: var(--border-light);
            background: var(--panel);
        }

        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg);
            z-index: 999;
            padding: 20px 24px;
            overflow-y: auto;
            border-top: 1px solid var(--border);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
            border-bottom: 1px solid var(--border);
            transition: color var(--transition), background var(--transition);
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--primary);
            background: rgba(200, 243, 29, 0.05);
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-section {
            padding: 28px 0 0;
            border-bottom: 1px solid var(--border);
            background: var(--bg);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb .sep {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb .current {
            color: var(--text);
            font-weight: 500;
        }

        /* ===== PAGE HEADER ===== */
        .page-header-section {
            padding: 36px 0 32px;
            background: var(--bg);
            border-bottom: 1px solid var(--border);
        }

        .page-header-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 32px;
            align-items: end;
        }

        .page-header-left h1 {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: .3px;
            color: var(--text);
            margin-bottom: 12px;
        }

        .page-header-left .h1-accent {
            color: var(--primary);
        }

        .page-header-desc {
            font-size: 15.5px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 720px;
        }

        .page-header-right {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .page-header-btn {
            padding: 12px 22px;
            border-radius: var(--radius-full);
            background: var(--primary);
            color: #0A0C0E;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        .page-header-btn:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 3px rgba(200, 243, 29, 0.18);
            color: #0A0C0E;
            transform: translateY(-1px);
        }

        .page-header-btn.secondary {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }

        .page-header-btn.secondary:hover {
            border-color: var(--border-light);
            color: var(--text);
            box-shadow: none;
        }

        /* ===== STAT CHIPS ===== */
        .stat-chips-section {
            padding: 28px 0;
            background: var(--panel);
            border-bottom: 1px solid var(--border);
        }

        .stat-chips-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-chip {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            transition: border-color var(--transition), transform var(--transition);
        }

        .stat-chip:hover {
            border-color: var(--border-light);
            transform: translateY(-2px);
        }

        .stat-chip-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .stat-chip-icon.green {
            background: var(--primary-dim);
            color: var(--primary);
        }

        .stat-chip-icon.cyan {
            background: var(--accent-dim);
            color: var(--accent);
        }

        .stat-chip-icon.orange {
            background: rgba(245, 165, 36, 0.12);
            color: var(--warning);
        }

        .stat-chip-icon.gray {
            background: rgba(160, 168, 179, 0.1);
            color: var(--text-secondary);
        }

        .stat-chip-text {
            display: flex;
            flex-direction: column;
        }

        .stat-chip-value {
            font-size: 24px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text);
            line-height: 1.2;
            letter-spacing: .3px;
        }

        .stat-chip-label {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* ===== SCHEDULE LIST ===== */
        .schedule-list-section {
            padding: 56px 0 64px;
            background: var(--bg);
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .section-header h2 {
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
            letter-spacing: .2px;
        }

        .section-header .section-sub {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .section-header .section-link {
            font-size: 14px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .section-header .section-link:hover {
            color: var(--primary-strong);
        }

        .filter-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 8px 16px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border);
            background: var(--panel);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-tab:hover {
            border-color: var(--border-light);
            color: var(--text);
        }

        .filter-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #0A0C0E;
            font-weight: 600;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .schedule-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .schedule-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--border);
            transition: background var(--transition);
        }

        .schedule-card.live::before {
            background: var(--primary);
        }

        .schedule-card.upcoming::before {
            background: var(--warning);
        }

        .schedule-card.finished::before {
            background: var(--text-muted);
        }

        .schedule-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .schedule-card.live:hover {
            border-color: var(--primary);
        }

        .schedule-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .schedule-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .3px;
        }

        .schedule-tag.live {
            background: var(--primary-dim);
            color: var(--primary);
        }

        .schedule-tag.upcoming {
            background: rgba(245, 165, 36, 0.12);
            color: var(--warning);
        }

        .schedule-tag.finished {
            background: rgba(160, 168, 179, 0.1);
            color: var(--text-muted);
        }

        .schedule-tag .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
        }

        .schedule-tag.live .dot {
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: .3; }
        }

        .schedule-game {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: .3px;
        }

        .schedule-teams {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 12px;
            align-items: center;
            margin-bottom: 14px;
        }

        .schedule-team {
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            letter-spacing: .2px;
        }

        .schedule-team:last-child {
            text-align: right;
        }

        .schedule-vs {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-muted);
            font-family: var(--font-mono);
            letter-spacing: 1px;
        }

        .schedule-score-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text);
        }

        .schedule-score-display .score-sep {
            color: var(--text-muted);
            font-size: 14px;
        }

        .schedule-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
            gap: 10px;
        }

        .schedule-time {
            font-size: 13px;
            color: var(--text-secondary);
            font-family: var(--font-mono);
            letter-spacing: .5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .schedule-format {
            font-size: 12px;
            color: var(--text-muted);
            background: var(--panel-2);
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            font-family: var(--font-mono);
            letter-spacing: .5px;
        }

        .schedule-detail-link {
            font-size: 13px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            transition: color var(--transition);
        }

        .schedule-detail-link:hover {
            color: var(--primary-strong);
        }

        /* ===== FOCUS MATCH ===== */
        .focus-match-section {
            padding: 56px 0 64px;
            background: var(--panel);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .focus-match-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: var(--panel-2);
        }

        .focus-match-img {
            min-height: 320px;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 28px;
        }

        .focus-match-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(10, 12, 14, 0.15), rgba(10, 12, 14, 0.75));
        }

        .focus-match-img-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .focus-match-img-content .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            background: var(--primary);
            color: #0A0C0E;
            font-size: 12px;
            font-weight: 700;
            width: fit-content;
        }

        .focus-match-img-content .match-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
        }

        .focus-match-img-content .match-time {
            font-size: 14px;
            color: var(--text-secondary);
            font-family: var(--font-mono);
        }

        .focus-match-info {
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .focus-match-info h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
        }

        .focus-match-teams-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .focus-match-team-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
        }

        .focus-match-team-row .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
        }

        .focus-match-team-row .team-score {
            font-size: 18px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--primary);
        }

        .focus-match-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .focus-match-meta span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            background: var(--panel);
            border: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-secondary);
            font-family: var(--font-mono);
        }

        /* ===== DATA SUMMARY ===== */
        .data-summary-section {
            padding: 56px 0 64px;
            background: var(--bg);
        }

        .data-summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .data-summary-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px 26px;
            transition: border-color var(--transition), transform var(--transition);
        }

        .data-summary-card:hover {
            border-color: var(--border-light);
            transform: translateY(-2px);
        }

        .data-summary-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
        }

        .data-summary-card .data-bar {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .data-bar-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .data-bar-label {
            font-size: 13px;
            color: var(--text-secondary);
            min-width: 70px;
            white-space: nowrap;
        }

        .data-bar-track {
            flex: 1;
            height: 8px;
            background: var(--panel-2);
            border-radius: var(--radius-full);
            overflow: hidden;
        }

        .data-bar-fill {
            height: 100%;
            border-radius: var(--radius-full);
            background: var(--primary);
            transition: width .6s ease;
        }

        .data-bar-fill.cyan {
            background: var(--accent);
        }

        .data-bar-fill.orange {
            background: var(--warning);
        }

        .data-bar-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            font-family: var(--font-mono);
            min-width: 36px;
            text-align: right;
        }

        .data-summary-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            position: relative;
        }

        .data-summary-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 260px;
        }

        .data-summary-img .overlay-label {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            background: rgba(10, 12, 14, 0.82);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            font-size: 13px;
            color: var(--text-secondary);
            font-family: var(--font-mono);
            letter-spacing: .4px;
        }

        /* ===== DEEP READING ===== */
        .deep-reading-section {
            padding: 56px 0 64px;
            background: var(--panel);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .reading-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .reading-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
        }

        .reading-card:hover {
            border-color: var(--border-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .reading-card-img {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--panel);
        }

        .reading-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .reading-card:hover .reading-card-img img {
            transform: scale(1.04);
        }

        .reading-card-content {
            padding: 18px 20px 20px;
        }

        .reading-card-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-sm);
            background: var(--accent-dim);
            color: var(--accent);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .4px;
            margin-bottom: 10px;
        }

        .reading-card-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .reading-card-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 56px 0 64px;
            background: var(--bg);
        }

        .cta-panel {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 32px 36px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 24px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 243, 29, 0.08), transparent 70%);
            pointer-events: none;
        }

        .cta-panel h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .cta-panel p {
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 560px;
        }

        .cta-panel .cta-btn {
            padding: 14px 28px;
            border-radius: var(--radius-full);
            background: var(--primary);
            color: #0A0C0E;
            font-weight: 700;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        .cta-panel .cta-btn:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 4px rgba(200, 243, 29, 0.15);
            color: #0A0C0E;
            transform: translateY(-2px);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 56px 0 64px;
            background: var(--panel);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-item.open {
            border-color: var(--primary);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            gap: 16px;
            user-select: none;
            transition: background var(--transition);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-question h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--panel);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-secondary);
            transition: transform var(--transition), color var(--transition), border-color var(--transition);
            font-family: var(--font-mono);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
            border-color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 22px 20px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg);
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            letter-spacing: .3px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 260px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 14px;
            letter-spacing: .3px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12.5px;
            color: var(--text-muted);
            letter-spacing: .3px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-nav {
                gap: 2px;
            }
            .main-nav a,
            .nav-dropdown-toggle {
                padding: 8px 10px;
                font-size: 13px;
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .reading-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .focus-match-grid {
                grid-template-columns: 1fr;
            }
            .focus-match-img {
                min-height: 220px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 60px;
            }
            .container {
                padding: 0 18px;
            }
            .main-nav {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .mobile-nav {
                display: none;
            }
            .mobile-nav.active {
                display: block;
            }
            .page-header-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-header-right {
                justify-content: flex-start;
            }
            .stat-chips-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-chip {
                padding: 12px 16px;
                gap: 10px;
            }
            .stat-chip-value {
                font-size: 20px;
            }
            .schedule-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .data-summary-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .reading-list {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cta-panel {
                grid-template-columns: 1fr;
                padding: 24px 20px;
                gap: 18px;
            }
            .cta-panel .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .schedule-teams {
                gap: 8px;
            }
            .schedule-team {
                font-size: 14px;
            }
            .schedule-card {
                padding: 16px 18px;
            }
            .focus-match-info {
                padding: 20px;
            }
            .breadcrumb-section {
                padding-top: 20px;
            }
            .page-header-section {
                padding: 28px 0 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .stat-chips-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-chip {
                padding: 10px 12px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .stat-chip-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .stat-chip-value {
                font-size: 18px;
            }
            .filter-tabs {
                gap: 6px;
            }
            .filter-tab {
                padding: 6px 12px;
                font-size: 12px;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .focus-match-img {
                min-height: 180px;
                padding: 18px;
            }
            .focus-match-img-content .match-name {
                font-size: 18px;
            }
            .cta-panel h3 {
                font-size: 19px;
            }
            .page-header-left h1 {
                font-size: 26px;
            }
            .schedule-card-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .schedule-teams {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 6px;
            }
            .schedule-team:last-child {
                text-align: center;
            }
            .schedule-vs {
                font-size: 13px;
            }
        }

/* roulang page: category3 */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.95);
            border-bottom-color: var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 24px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 18px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
        }

        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
        }

        .main-nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .main-nav a.active {
            color: var(--primary);
            position: relative;
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-more {
            position: relative;
        }

        .nav-more>button {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition), background var(--transition);
        }

        .nav-more>button:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-more .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            min-width: 180px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: all var(--transition);
            box-shadow: var(--shadow-md);
            z-index: 50;
        }

        .nav-more:hover .dropdown,
        .nav-more:focus-within .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-more .dropdown a {
            display: block;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
        }

        .nav-more .dropdown a:hover {
            color: var(--primary);
            background: var(--primary-dim);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: var(--radius-sm);
            background: none;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: border-color var(--transition);
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger:hover {
            border-color: var(--border-light);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 12, 14, 0.98);
            backdrop-filter: blur(18px);
            z-index: 999;
            padding: 24px;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
            transform: translateX(-100%);
            transition: transform .3s ease;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu a {
            padding: 14px 18px;
            border-radius: var(--radius-md);
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
            border: 1px solid transparent;
            transition: all var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
            border-color: var(--border);
        }

        .mobile-menu a.active {
            color: var(--primary);
            border-color: var(--primary);
            background: var(--primary-dim);
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-nav {
            padding: calc(var(--header-height) + 28px) 0 0;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .breadcrumb-nav a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--primary);
        }

        .breadcrumb-nav .sep {
            color: var(--border-light);
            font-size: 12px;
        }

        .breadcrumb-nav .current {
            color: var(--text-secondary);
        }

        /* ===== PAGE HEADER ===== */
        .page-head {
            padding: 40px 0 32px;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .page-head::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 0 0 4px 4px;
        }

        .page-head h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .page-head .head-desc {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 760px;
            line-height: 1.85;
        }

        /* ===== STAT CHIPS ===== */
        .stat-chips {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            padding: 28px 0 8px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            font-size: 14px;
            color: var(--text-secondary);
            transition: all var(--transition);
        }

        .chip .chip-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            flex-shrink: 0;
        }

        .chip .chip-dot.warn {
            background: var(--warning);
        }

        .chip .chip-dot.accent {
            background: var(--accent);
        }

        .chip .chip-num {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 18px;
            color: var(--text);
            letter-spacing: .5px;
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 56px 0;
        }

        .section-alt {
            background: var(--panel);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .section-head h2 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: .5px;
            line-height: 1.4;
        }

        .section-head .section-sub {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 560px;
        }

        .section-link {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition);
        }

        .section-link:hover {
            color: var(--primary-strong);
        }

        /* ===== RANKING LIST ===== */
        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .rank-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .rank-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .rank-card .rank-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .rank-card .rank-badge {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .rank-card .rank-tag {
            font-size: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-weight: 600;
            letter-spacing: .5px;
        }

        .rank-tag.live {
            background: var(--primary-dim);
            color: var(--primary);
        }

        .rank-tag.rising {
            background: var(--accent-dim);
            color: var(--accent);
        }

        .rank-tag.stable {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
        }

        .rank-card .rank-title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.5;
        }

        .rank-card .rank-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            flex-grow: 1;
        }

        .rank-card .rank-bar {
            height: 6px;
            background: var(--panel-2);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }

        .rank-card .rank-bar .fill {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width .6s ease;
        }

        .rank-card .rank-bar .fill.warn {
            background: linear-gradient(90deg, var(--warning), var(--danger));
        }

        .rank-card .rank-bar .fill.accent {
            background: linear-gradient(90deg, var(--accent), var(--primary));
        }

        .rank-card .rank-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        .rank-card .rank-meta .val {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: var(--text);
        }

        /* ===== FEATURE BIG CARD ===== */
        .feature-card {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition);
        }

        .feature-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-lg);
        }

        .feature-card .feature-img {
            position: relative;
            min-height: 100%;
            background: var(--panel);
        }

        .feature-card .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 320px;
        }

        .feature-card .feature-img .img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10,12,14,.4), rgba(10,12,14,.7));
            pointer-events: none;
        }

        .feature-card .feature-content {
            padding: 36px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }

        .feature-card .feature-label {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 700;
        }

        .feature-card .feature-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4;
        }

        .feature-card .feature-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
        }

        .feature-card .feature-stats {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .feature-card .feature-stat {
            text-align: center;
        }

        .feature-card .feature-stat .stat-num {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }

        .feature-card .feature-stat .stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ===== VISUAL DATA CARD ===== */
        .visual-data {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .data-visual {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 22px;
            text-align: center;
            transition: all var(--transition);
            cursor: default;
        }

        .data-visual:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
        }

        .data-visual .visual-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            margin-bottom: 14px;
            opacity: .85;
        }

        .data-visual .vis-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .data-visual .vis-value {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }

        .data-visual .vis-change {
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
        }

        .vis-change.up {
            color: var(--success);
        }

        .vis-change.down {
            color: var(--danger);
        }

        .vis-change.flat {
            color: var(--text-muted);
        }

        /* ===== DEEP READING ===== */
        .reading-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .reading-item {
            display: flex;
            gap: 16px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px;
            transition: all var(--transition);
        }

        .reading-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .reading-item .reading-img {
            width: 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }

        .reading-item .reading-content {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .reading-item .reading-title {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
        }

        .reading-item .reading-meta {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 56px 0;
        }

        .cta-box {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 48px;
            text-align: center;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .cta-box h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: .5px;
        }

        .cta-box p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.85;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--primary);
            color: #0A0C0E;
            font-weight: 700;
            font-size: 16px;
            border-radius: var(--radius-full);
            transition: all var(--transition);
            letter-spacing: .5px;
        }

        .btn-primary:hover {
            background: var(--primary-strong);
            color: #0A0C0E;
            box-shadow: 0 0 0 2px rgba(200, 243, 29, 0.35);
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: transparent;
            color: var(--text);
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border);
            transition: all var(--transition);
            letter-spacing: .5px;
        }

        .btn-secondary:hover {
            border-color: var(--border-light);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 56px 0;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-light);
        }

        .faq-item.active {
            border-color: var(--primary);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            font-size: 18px;
            color: var(--text-muted);
            transition: all var(--transition);
            flex-shrink: 0;
            font-family: var(--font-mono);
        }

        .faq-item.active .faq-icon {
            color: var(--primary);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 22px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.85;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 22px 20px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--panel);
            border-top: 1px solid var(--border);
            padding: 56px 0 0;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border);
        }

        .footer-brand h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
            color: var(--text);
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-secondary);
            padding: 6px 0;
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 20px 0;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .ranking-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .visual-data {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .feature-card {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .page-head h1 {
                font-size: 28px;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .ranking-grid {
                grid-template-columns: 1fr;
            }

            .visual-data {
                grid-template-columns: 1fr 1fr;
            }

            .reading-list {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 36px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .visual-data {
                grid-template-columns: 1fr;
            }

            .feature-card .feature-content {
                padding: 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .stat-chips {
                gap: 10px;
            }

            .chip {
                padding: 8px 14px;
                font-size: 13px;
            }
        }

/* roulang page: category4 */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--header-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background var(--transition), border-color var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.96);
            border-bottom-color: var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 20px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
            flex-shrink: 0;
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 16px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
            letter-spacing: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
        }

        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .main-nav>a {
            padding: 8px 13px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
        }

        .main-nav>a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
        }

        .main-nav>a.active {
            color: var(--primary);
            position: relative;
        }

        .main-nav>a.active::after {
            content: '';
            position: absolute;
            bottom: 1px;
            left: 13px;
            right: 13px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-btn {
            padding: 8px 13px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
        }

        .nav-dropdown-btn:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-dropdown-btn .arrow {
            font-size: 10px;
            transition: transform var(--transition);
            color: var(--text-muted);
        }

        .nav-dropdown.open .nav-dropdown-btn .arrow {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 180px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
            box-shadow: var(--shadow-lg);
            z-index: 100;
        }

        .nav-dropdown.open .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            transition: color var(--transition), background var(--transition);
        }

        .nav-dropdown-menu a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-cta {
            padding: 8px 18px;
            border-radius: var(--radius-full);
            background: var(--primary);
            color: #0A0C0E;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            transition: background var(--transition), box-shadow var(--transition);
            flex-shrink: 0;
        }

        .nav-cta:hover {
            background: var(--primary-strong);
            color: #0A0C0E;
            box-shadow: 0 0 0 2px rgba(200, 243, 29, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
            cursor: pointer;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: transform var(--transition), opacity var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 12, 14, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            padding: 24px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--transition), visibility var(--transition);
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-inner {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .mobile-menu-inner a {
            padding: 14px 18px;
            border-radius: var(--radius-md);
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
            border: 1px solid transparent;
            transition: color var(--transition), background var(--transition), border-color var(--transition);
        }

        .mobile-menu-inner a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--border);
        }

        .mobile-menu-inner a.active {
            color: var(--primary);
            background: var(--primary-dim);
            border-color: rgba(200, 243, 29, 0.2);
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb .sep {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb .current {
            color: var(--text-secondary);
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            padding: 48px 0 36px;
            background: radial-gradient(ellipse at 20% 0%, rgba(200, 243, 29, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 100%, rgba(37, 230, 200, 0.05) 0%, transparent 50%),
                var(--bg);
            border-bottom: 1px solid var(--border);
        }

        .page-hero h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: .5px;
            margin-bottom: 12px;
            color: var(--text);
        }

        .page-hero .hero-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.8;
            margin-top: 8px;
        }

        /* ===== STAT CHIPS ===== */
        .stat-chips {
            padding: 20px 0 16px;
        }

        .chips-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .chip-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .chip-item:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .chip-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-dim);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .chip-info {
            display: flex;
            flex-direction: column;
        }

        .chip-num {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
        }

        .chip-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ===== SECTION COMMON ===== */
        section {
            padding: 40px 0;
        }

        .section-head {
            margin-bottom: 24px;
        }

        .section-head h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .3px;
            line-height: 1.4;
        }

        .section-head .section-sub {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ===== NEWS CARDS ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .news-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .news-card-img {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--panel-2);
        }

        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .news-card:hover .news-card-img img {
            transform: scale(1.05);
        }

        .news-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .3px;
            z-index: 1;
        }

        .badge-pre {
            background: var(--warning);
            color: #0A0C0E;
        }

        .badge-live {
            background: var(--primary);
            color: #0A0C0E;
        }

        .badge-dynamic {
            background: var(--accent);
            color: #0A0C0E;
        }

        .badge-meta {
            background: var(--border);
            color: var(--text-secondary);
        }

        .news-card-body {
            padding: 16px 18px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
            margin-bottom: 12px;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 10px;
            border-top: 1px solid var(--border);
        }

        .news-card-tag {
            color: var(--accent);
            font-weight: 500;
        }

        .news-card-time {
            font-family: var(--font-mono);
            letter-spacing: .3px;
        }

        /* ===== FEATURE BIG CARD ===== */
        .feature-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .feature-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }

        .feature-card-img {
            min-height: 240px;
            background: var(--panel-2);
            position: relative;
        }

        .feature-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .feature-card-body {
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-card-label {
            font-size: 12px;
            color: var(--accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

        .feature-card-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .feature-card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .feature-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            transition: color var(--transition);
        }

        .feature-card-link:hover {
            color: var(--primary-strong);
        }

        /* ===== DATA SUMMARY CARD ===== */
        .data-summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .data-summary-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .data-summary-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .data-summary-img {
            aspect-ratio: 16 / 8;
            overflow: hidden;
            background: var(--panel-2);
        }

        .data-summary-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .data-summary-body {
            padding: 18px 20px 20px;
        }

        .data-summary-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .data-summary-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }

        .data-tag {
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 500;
            background: var(--panel-2);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            transition: border-color var(--transition), color var(--transition);
        }

        .data-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ===== DEEP READ ===== */
        .deep-read-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .deep-read-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            transition: border-color var(--transition), background var(--transition), transform var(--transition);
        }

        .deep-read-item:hover {
            border-color: var(--border-light);
            background: var(--panel-2);
            transform: translateX(4px);
        }

        .deep-read-num {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            width: 32px;
            flex-shrink: 0;
        }

        .deep-read-info {
            flex: 1;
        }

        .deep-read-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 2px;
        }

        .deep-read-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        .deep-read-arrow {
            color: var(--text-muted);
            font-size: 16px;
            flex-shrink: 0;
            transition: color var(--transition), transform var(--transition);
        }

        .deep-read-item:hover .deep-read-arrow {
            color: var(--primary);
            transform: translateX(4px);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 48px 0;
        }

        .cta-box {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cta-info {
            flex: 1;
            min-width: 260px;
        }

        .cta-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .cta-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .cta-btn {
            padding: 12px 28px;
            border-radius: var(--radius-full);
            background: var(--primary);
            color: #0A0C0E;
            font-size: 15px;
            font-weight: 700;
            white-space: nowrap;
            transition: background var(--transition), box-shadow var(--transition);
        }

        .cta-btn:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 3px rgba(200, 243, 29, 0.25);
            color: #0A0C0E;
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
        }

        .faq-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-item.open {
            border-color: var(--primary);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 18px;
            color: var(--text-muted);
            flex-shrink: 0;
            transition: transform var(--transition), color var(--transition);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease, padding .3s ease;
            padding: 0 20px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--panel);
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .chips-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .feature-card {
                grid-template-columns: 1fr;
            }

            .feature-card-img {
                min-height: 200px;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .page-hero {
                padding: 32px 0 24px;
            }

            .page-hero h1 {
                font-size: 28px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .chips-grid {
                grid-template-columns: 1fr 1fr;
            }

            .data-summary-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                flex-direction: column;
                text-align: center;
                padding: 28px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .section-head h2 {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .chips-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .page-hero h1 {
                font-size: 24px;
            }

            .feature-card-body {
                padding: 20px;
            }

            .feature-card-title {
                font-size: 18px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .cta-title {
                font-size: 18px;
            }
        }

/* roulang page: category5 */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        * {
            box-sizing: border-box;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }
        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.95);
            border-bottom-color: var(--border);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 24px;
        }
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
        }
        .logo:hover {
            color: var(--primary);
        }
        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 18px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }
        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
        }
        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .main-nav > a,
        .nav-dropdown > button {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }
        .main-nav > a:hover,
        .nav-dropdown > button:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }
        .main-nav > a.active {
            color: var(--primary);
            position: relative;
        }
        .main-nav > a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 180px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            padding: 8px;
            display: none;
            z-index: 1001;
        }
        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            display: block;
        }
        .nav-dropdown-menu a {
            display: block;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            transition: color var(--transition), background var(--transition);
        }
        .nav-dropdown-menu a:hover {
            color: var(--primary);
            background: rgba(200, 243, 29, 0.06);
        }
        .nav-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: transparent;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }
        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            position: relative;
            transition: background var(--transition);
        }
        .nav-toggle span::before,
        .nav-toggle span::after {
            content: '';
            display: block;
            width: 18px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            position: absolute;
            left: 0;
            transition: transform var(--transition);
        }
        .nav-toggle span::before {
            top: -5px;
        }
        .nav-toggle span::after {
            top: 5px;
        }
        .nav-toggle.open span {
            background: transparent;
        }
        .nav-toggle.open span::before {
            transform: rotate(45deg);
            top: 0;
        }
        .nav-toggle.open span::after {
            transform: rotate(-45deg);
            top: 0;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            padding: 24px 0 0;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            color: var(--text-muted);
            font-size: 12px;
        }
        .breadcrumb .current {
            color: var(--text-secondary);
        }

        /* ===== PAGE HEADER ===== */
        .page-header {
            padding: 32px 0 40px;
            border-bottom: 1px solid var(--border);
        }
        .page-header h1 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.4;
            margin: 0 0 12px;
            color: var(--text);
            letter-spacing: .5px;
        }
        .page-header .subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 760px;
            margin: 0;
        }
        .page-header .subtitle strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* ===== CHIPS ===== */
        .chips-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 20px 0 8px;
        }
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            background: var(--panel);
            border: 1px solid var(--border);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: border-color var(--transition), color var(--transition);
        }
        .chip:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .chip .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .chip .dot.live {
            background: var(--primary);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        .chip .dot.accent {
            background: var(--accent);
        }
        .chip .dot.warning {
            background: var(--warning);
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: .5; transform: scale(1.6); }
        }

        /* ===== MAIN LAYOUT ===== */
        main {
            padding-bottom: 72px;
        }
        section {
            padding: 56px 0;
        }
        section:nth-child(even) {
            background: var(--panel);
        }
        .section-title-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 28px;
            gap: 16px;
            flex-wrap: wrap;
        }
        .section-title-row h2 {
            font-size: 24px;
            font-weight: 700;
            margin: 0;
            color: var(--text);
            letter-spacing: .3px;
        }
        .section-title-row .section-meta {
            font-size: 13px;
            color: var(--text-muted);
        }
        .section-title-row .section-link {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
            transition: color var(--transition);
        }
        .section-title-row .section-link:hover {
            color: var(--primary-strong);
        }

        /* ===== TOPIC CARDS ===== */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .topic-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
        }
        .topic-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .topic-card .card-media {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .topic-card .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .topic-card:hover .card-media img {
            transform: scale(1.04);
        }
        .topic-card .media-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(10,12,14,0) 40%, rgba(10,12,14,0.75) 100%);
            pointer-events: none;
        }
        .topic-card .card-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .topic-card .card-badge-row {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
            white-space: nowrap;
        }
        .badge-live {
            background: var(--primary-dim);
            color: var(--primary);
            border: 1px solid rgba(200, 243, 29, 0.25);
        }
        .badge-upcoming {
            background: rgba(245, 165, 36, 0.1);
            color: var(--warning);
            border: 1px solid rgba(245, 165, 36, 0.3);
        }
        .badge-ended {
            background: rgba(107, 114, 128, 0.12);
            color: var(--text-muted);
            border: 1px solid var(--border);
        }
        .badge-accent {
            background: var(--accent-dim);
            color: var(--accent);
            border: 1px solid rgba(37, 230, 200, 0.25);
        }
        .topic-card .card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin: 0;
        }
        .topic-card .card-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            flex: 1;
        }
        .topic-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-muted);
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }
        .topic-card .card-meta .score-num {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: .5px;
        }

        /* ===== FOCUS BIG CARD ===== */
        .focus-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .focus-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
        }
        .focus-card:hover {
            transform: translateY(-3px);
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }
        .focus-card .focus-media {
            aspect-ratio: 21 / 9;
            overflow: hidden;
            position: relative;
        }
        .focus-card .focus-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .focus-card .focus-body {
            padding: 24px 28px 28px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }
        .focus-card .focus-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
        }
        .focus-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            line-height: 1.5;
            color: var(--text);
        }
        .focus-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
            flex: 1;
        }
        .focus-card .focus-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }
        .focus-card .focus-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .focus-card .focus-stat .stat-label {
            font-size: 12px;
            color: var(--text-muted);
        }
        .focus-card .focus-stat .stat-value {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
        }

        /* ===== DATA SUMMARY CARD ===== */
        .data-summary-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            padding: 0;
        }
        .data-summary-card .data-visual {
            min-height: 320px;
            position: relative;
            overflow: hidden;
        }
        .data-summary-card .data-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .data-summary-card .data-visual .visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10,12,14,0.4) 0%, rgba(10,12,14,0.75) 100%);
            display: flex;
            align-items: flex-end;
            padding: 28px;
        }
        .data-summary-card .data-visual .visual-label {
            font-size: 13px;
            color: var(--text-secondary);
            background: rgba(10,12,14,0.7);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-light);
            backdrop-filter: blur(6px);
        }
        .data-summary-card .data-info {
            padding: 28px 32px 32px 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }
        .data-summary-card .data-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            color: var(--text);
        }
        .data-summary-card .data-info p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
        }
        .data-summary-card .data-points {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .data-summary-card .data-point {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .data-summary-card .data-point .point-bar-wrap {
            flex: 1;
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
        }
        .data-summary-card .data-point .point-bar {
            height: 100%;
            border-radius: 3px;
            background: var(--accent);
            transition: width .6s ease;
        }
        .data-summary-card .data-point .point-label {
            font-size: 13px;
            color: var(--text-secondary);
            min-width: 70px;
        }
        .data-summary-card .data-point .point-value {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            min-width: 42px;
            text-align: right;
        }

        /* ===== READING LIST ===== */
        .reading-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .reading-item {
            display: flex;
            gap: 16px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 18px;
            transition: transform var(--transition), border-color var(--transition);
            align-items: center;
            cursor: pointer;
        }
        .reading-item:hover {
            transform: translateY(-2px);
            border-color: var(--border-light);
        }
        .reading-item .reading-thumb {
            width: 72px;
            height: 72px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
        }
        .reading-item .reading-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .reading-item .reading-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .reading-item .reading-tag {
            font-size: 12px;
            color: var(--accent);
            font-weight: 600;
        }
        .reading-item .reading-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
            margin: 0;
        }
        .reading-item .reading-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== CTA SECTION ===== */
        .cta-panel {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }
        .cta-panel .cta-text h2 {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 8px;
            color: var(--text);
        }
        .cta-panel .cta-text p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.75;
        }
        .cta-panel .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-full);
            font-size: 15px;
            font-weight: 600;
            transition: all var(--transition);
            white-space: nowrap;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: var(--primary);
            color: #0A0C0E;
        }
        .btn-primary:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 2px rgba(200, 243, 29, 0.25);
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border-light);
        }
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: border-color var(--transition);
        }
        .faq-item.open {
            border-color: var(--primary);
        }
        .faq-item summary {
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: color var(--transition);
        }
        .faq-item summary:hover {
            color: var(--primary);
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary .faq-icon {
            font-size: 18px;
            color: var(--text-muted);
            transition: transform var(--transition), color var(--transition);
            flex-shrink: 0;
        }
        .faq-item.open summary .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }
        .faq-item .faq-answer {
            padding: 0 22px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--panel);
            border-top: 1px solid var(--border);
            padding-top: 48px;
            margin-top: 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 40px;
        }
        .footer-brand h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 12px;
            color: var(--text);
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            max-width: 280px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 14px;
            letter-spacing: .3px;
        }
        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 18px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .topics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reading-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .focus-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .data-summary-card {
                grid-template-columns: 1fr;
            }
            .data-summary-card .data-info {
                padding: 0 28px 28px;
            }
            .data-summary-card .data-visual {
                min-height: 220px;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(10, 12, 14, 0.97);
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px 24px;
                gap: 4px;
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
                z-index: 999;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav > a,
            .nav-dropdown > button {
                padding: 12px 14px;
                font-size: 15px;
                justify-content: space-between;
            }
            .main-nav > a.active::after {
                display: none;
            }
            .nav-dropdown-menu {
                position: static;
                top: auto;
                right: auto;
                box-shadow: none;
                background: transparent;
                border: none;
                padding: 0 0 0 14px;
                display: none;
            }
            .nav-dropdown.open .nav-dropdown-menu {
                display: block;
            }
            .nav-toggle {
                display: flex;
            }
            .topics-grid {
                grid-template-columns: 1fr;
            }
            .reading-list {
                grid-template-columns: 1fr;
            }
            .cta-panel {
                flex-direction: column;
                align-items: flex-start;
                padding: 32px 24px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .page-header h1 {
                font-size: 26px;
            }
            section {
                padding: 40px 0;
            }
            .focus-card .focus-body {
                padding: 18px 20px 22px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .topics-grid {
                grid-template-columns: 1fr;
            }
            .reading-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .page-header h1 {
                font-size: 22px;
            }
            .data-summary-card .data-visual {
                min-height: 180px;
            }
            .cta-panel {
                padding: 24px 18px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .chips-row {
                gap: 6px;
            }
            .chip {
                padding: 6px 12px;
                font-size: 12px;
            }
            .section-title-row h2 {
                font-size: 20px;
            }
        }

        /* ===== UTILITIES ===== */
        .text-center {
            text-align: center;
        }
        .mt-8 {
            margin-top: 8px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .gap-12 {
            gap: 12px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .items-center {
            align-items: center;
        }

/* roulang page: category6 */
:root {
            --bg: #0A0C0E;
            --panel: #12151A;
            --panel-2: #171B21;
            --border: #2A2F38;
            --border-light: #3A4048;
            --text: #F2F5F7;
            --text-secondary: #A0A8B3;
            --text-muted: #6B7280;
            --primary: #C8F31D;
            --primary-dim: rgba(200, 243, 29, 0.14);
            --primary-strong: #B8E412;
            --accent: #25E6C8;
            --accent-dim: rgba(37, 230, 200, 0.12);
            --danger: #FF4D4F;
            --success: #0ECB81;
            --warning: #F5A524;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 999px;
            --shadow-sm: 0 4px 14px rgba(0, 0, 0, .25);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, .45);
            --container: 1240px;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Barlow Condensed', 'DIN Alternate', 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
            --header-height: 68px;
            --transition: .22s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(10, 12, 14, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(42, 47, 56, 0.65);
            transition: background var(--transition), border-color var(--transition);
        }

        .site-header.scrolled {
            background: rgba(10, 12, 14, 0.95);
            border-bottom-color: var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 24px;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .5px;
            white-space: nowrap;
            color: var(--text);
        }

        .logo:hover {
            color: var(--primary);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0A0C0E;
            font-size: 18px;
            font-weight: 800;
            font-family: var(--font-mono);
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .logo-text .logo-main {
            font-size: 15px;
            font-weight: 700;
        }

        .logo-text .logo-sub {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            transition: color var(--transition), background var(--transition);
        }

        .main-nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .main-nav a.active {
            color: var(--primary);
            position: relative;
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown>button {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition), background var(--transition);
        }

        .nav-dropdown>button:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-dropdown .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 180px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 6px;
            box-shadow: var(--shadow-md);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
            z-index: 1001;
        }

        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown:focus-within .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown .dropdown-menu a {
            display: block;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            color: var(--text-secondary);
        }

        .nav-dropdown .dropdown-menu a:hover {
            background: var(--primary-dim);
            color: var(--primary);
        }

        .nav-dropdown .dropdown-menu a.active {
            color: var(--primary);
            background: var(--primary-dim);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            z-index: 1002;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .mobile-menu {
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 12, 14, 0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            transform: translateX(100%);
            transition: transform .3s ease;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu a {
            padding: 16px 18px;
            border-radius: var(--radius-md);
            font-size: 16px;
            color: var(--text-secondary);
            border: 1px solid var(--border);
            font-weight: 500;
            transition: all var(--transition);
        }

        .mobile-menu a:hover {
            background: var(--primary-dim);
            color: var(--primary);
            border-color: var(--primary);
        }

        .mobile-menu a.active {
            color: var(--primary);
            background: var(--primary-dim);
            border-color: var(--primary);
        }

        .mobile-menu .mobile-menu-group-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 16px 18px 6px;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-section {
            padding-top: calc(var(--header-height) + 36px);
            padding-bottom: 12px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb .separator {
            color: var(--border-light);
            user-select: none;
        }

        .breadcrumb .current {
            color: var(--primary);
        }

        /* ===== PAGE HEADER ===== */
        .page-header {
            padding: 36px 0 20px;
        }

        .page-header h1 {
            font-size: 34px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .5px;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .page-header .page-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
        }

        /* ===== STATS CHIPS ===== */
        .stats-chips-section {
            padding: 16px 0 32px;
        }

        .stats-chips-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .stat-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            font-size: 13px;
            color: var(--text-secondary);
            transition: all var(--transition);
            cursor: default;
        }

        .stat-chip .chip-num {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: .5px;
        }

        .stat-chip .chip-label {
            color: var(--text-secondary);
        }

        .stat-chip:hover {
            border-color: var(--primary);
            background: var(--primary-dim);
            cursor: pointer;
        }

        .stat-chip:hover .chip-num {
            color: var(--text);
        }

        /* ===== GAME CARDS GRID ===== */
        .games-grid-section {
            padding: 28px 0 20px;
        }

        .section-heading {
            margin-bottom: 24px;
        }

        .section-heading h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .3px;
        }

        .section-heading .heading-line {
            width: 48px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            margin-top: 8px;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .game-card {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .game-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .game-card .card-cover {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }

        .game-card .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .game-card:hover .card-cover img {
            transform: scale(1.04);
        }

        .game-card .card-status-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .5px;
            z-index: 2;
            backdrop-filter: blur(6px);
        }

        .status-live {
            background: rgba(200, 243, 29, 0.18);
            color: var(--primary);
            border: 1px solid rgba(200, 243, 29, 0.4);
        }

        .status-upcoming {
            background: rgba(245, 165, 36, 0.16);
            color: var(--warning);
            border: 1px solid rgba(245, 165, 36, 0.35);
        }

        .status-finished {
            background: rgba(107, 114, 128, 0.16);
            color: var(--text-muted);
            border: 1px solid rgba(107, 114, 128, 0.3);
        }

        .game-card .card-body {
            padding: 18px 18px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .game-card .game-category {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 6px;
        }

        .game-card .game-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .game-card .game-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.65;
            flex: 1;
            margin-bottom: 12px;
        }

        .game-card .game-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }

        .game-card .game-meta .meta-score {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
        }

        /* ===== FEATURED GAME CARD ===== */
        .featured-section {
            padding: 40px 0 20px;
        }

        .featured-card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 0;
            transition: all var(--transition);
            cursor: pointer;
            position: relative;
        }

        .featured-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .featured-card .featured-image {
            position: relative;
            min-height: 320px;
            overflow: hidden;
        }

        .featured-card .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .featured-card .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(10, 12, 14, 0.9), transparent);
        }

        .featured-card .featured-overlay .featured-tag {
            font-size: 11px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .featured-card .featured-overlay .featured-name {
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
        }

        .featured-card .featured-content {
            padding: 28px 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .featured-card .featured-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
        }

        .featured-card .featured-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
        }

        .featured-card .featured-stats {
            display: flex;
            gap: 24px;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .featured-card .featured-stats .fstat {
            display: flex;
            flex-direction: column;
        }

        .featured-card .featured-stats .fstat .fstat-num {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 700;
            color: var(--accent);
        }

        .featured-card .featured-stats .fstat .fstat-label {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== DATA SUMMARY ===== */
        .data-summary-section {
            padding: 40px 0 20px;
        }

        .data-summary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .data-summary-panel {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all var(--transition);
        }

        .data-summary-panel:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .data-summary-panel .panel-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .data-summary-panel .panel-title .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            flex-shrink: 0;
        }

        .data-summary-panel .panel-data-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
            color: var(--text-secondary);
        }

        .data-summary-panel .panel-data-row:last-child {
            border-bottom: none;
        }

        .data-summary-panel .panel-data-row .data-value {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .data-summary-panel .panel-data-row .data-value.live {
            color: var(--primary);
        }

        .data-summary-panel .panel-data-row .data-value.up {
            color: var(--success);
        }

        .data-summary-panel .panel-data-row .data-value.down {
            color: var(--danger);
        }

        .data-summary-panel .panel-data-row .data-value.fluctuate {
            color: var(--warning);
        }

        /* ===== DEEP READING ===== */
        .deep-reading-section {
            padding: 40px 0 20px;
        }

        .reading-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .reading-item {
            display: flex;
            gap: 14px;
            padding: 16px;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            transition: all var(--transition);
            cursor: pointer;
            align-items: center;
        }

        .reading-item:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .reading-item .reading-thumb {
            width: 72px;
            height: 48px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }

        .reading-item .reading-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reading-item .reading-info {
            flex: 1;
            min-width: 0;
        }

        .reading-item .reading-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .reading-item .reading-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 48px 0 32px;
        }

        .cta-panel {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 243, 29, 0.08), transparent 70%);
            pointer-events: none;
        }

        .cta-panel:hover {
            border-color: var(--primary);
        }

        .cta-panel .cta-text h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .cta-panel .cta-text p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 520px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--primary);
            color: #0A0C0E;
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-full);
            transition: all var(--transition);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-primary:hover {
            background: var(--primary-strong);
            box-shadow: 0 0 0 2px rgba(200, 243, 29, 0.25);
            color: #0A0C0E;
            transform: translateY(-1px);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 40px 0 20px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-light);
        }

        .faq-item.active {
            border-color: var(--primary);
        }

        .faq-item .faq-question {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            transition: color var(--transition);
            user-select: none;
        }

        .faq-item .faq-question:hover {
            color: var(--primary);
        }

        .faq-item .faq-question .faq-icon {
            font-size: 20px;
            color: var(--text-muted);
            transition: all var(--transition);
            flex-shrink: 0;
            font-weight: 400;
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }

        .faq-item .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease, padding .3s ease;
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--panel);
            border-top: 1px solid var(--border);
            padding: 56px 0 24px;
            margin-top: 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color var(--transition), transform var(--transition);
        }

        .footer-col a:hover {
            color: var(--primary);
            transform: translateX(3px);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-muted);
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .data-summary-grid {
                grid-template-columns: 1fr;
            }

            .reading-list {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 24px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .featured-card {
                grid-template-columns: 1fr;
            }

            .featured-card .featured-image {
                min-height: 200px;
            }

            .cta-panel {
                flex-direction: column;
                text-align: left;
                align-items: flex-start;
                padding: 28px 24px;
            }

            .cta-panel .btn-primary {
                align-self: flex-start;
            }

            .games-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .page-header h1 {
                font-size: 24px;
            }

            .page-header .page-subtitle {
                font-size: 14px;
            }

            .stats-chips-grid {
                gap: 8px;
            }

            .stat-chip {
                padding: 8px 12px;
                font-size: 12px;
            }

            .stat-chip .chip-num {
                font-size: 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .footer-brand {
                grid-column: auto;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .game-card .game-title {
                font-size: 16px;
            }

            .featured-card .featured-content {
                padding: 20px 18px;
            }

            .featured-card .featured-content h3 {
                font-size: 19px;
            }
        }
