/* roulang page: index */
:root {
            --bg-deep: #101014;
            --bg-card: #181622;
            --bg-card-alt: #1E1B2B;
            --bg-glass: rgba(24, 22, 34, 0.72);
            --border-subtle: rgba(255, 255, 255, .08);
            --border-glow: rgba(124, 58, 237, .35);
            --text-primary: #EDEAF7;
            --text-secondary: #A9A3B8;
            --text-muted: #746F86;
            --accent-purple: #7C3AED;
            --accent-green: #18E58F;
            --accent-cyan: #26D9FF;
            --accent-amber: #FFB547;
            --accent-red: #F8515B;
            --radius-xl: 24px;
            --radius-2xl: 30px;
            --radius-full: 999px;
            --shadow-card: 0 4px 32px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .06);
            --shadow-glow-purple: 0 0 28px rgba(124, 58, 237, .28);
            --shadow-glow-green: 0 0 18px rgba(24, 229, 143, .22);
            --transition-fast: .18s ease;
            --transition-smooth: .28s cubic-bezier(.4, 0, .2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Arial', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color var(--transition-fast), text-decoration var(--transition-fast);
        }
        a:hover {
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            transition: all var(--transition-smooth);
        }
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
        }
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: 15px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--accent-cyan) !important;
            box-shadow: 0 0 0 3px rgba(38, 217, 255, .14) !important;
        }
        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* NAVIGATION - Glass Immersive */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(16, 16, 20, .94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 2px 28px rgba(0, 0, 0, .55);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.22rem;
            font-weight: 760;
            color: #ffffff;
            white-space: nowrap;
            letter-spacing: .02em;
            text-decoration: none;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            text-decoration: none;
            opacity: .88;
        }
        .nav-logo .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent-purple), #5B21B6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: var(--shadow-glow-purple);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            display: block;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            color: rgba(255, 255, 255, .82);
            font-size: .94rem;
            font-weight: 550;
            text-decoration: none;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: .01em;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, .09);
            color: #fff;
            text-decoration: none;
        }
        .nav-links a.active {
            background: rgba(124, 58, 237, .28);
            color: #fff;
            font-weight: 650;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 22px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--accent-purple), #5B21B6);
            color: #fff;
            font-weight: 650;
            font-size: .92rem;
            letter-spacing: .02em;
            border: none;
            white-space: nowrap;
            box-shadow: 0 2px 16px rgba(124, 58, 237, .32);
            transition: all var(--transition-smooth);
            text-decoration: none;
        }
        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(124, 58, 237, .45);
            text-decoration: none;
            color: #fff;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.55rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, .08);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(16, 16, 20, .97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 32px;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: var(--radius-full);
            transition: background var(--transition-fast);
        }
        .mobile-nav-panel a:hover {
            background: rgba(255, 255, 255, .1);
            text-decoration: none;
        }
        .mobile-nav-panel .close-btn {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 1.6rem;
            color: #fff;
            background: none;
            border: none;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
        }
        @media (max-width: 920px) {
            .nav-links {
                display: none;
            }
            .nav-cta-btn.desktop-only {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
        }
        @media (min-width: 921px) {
            .mobile-menu-toggle {
                display: none;
            }
            .mobile-nav-panel {
                display: none !important;
            }
        }

        /* HERO */
        .hero-section {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
            padding-bottom: 60px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            z-index: 0;
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(16, 16, 20, .78) 0%, rgba(16, 16, 20, .88) 50%, rgba(16, 16, 20, .96) 100%);
            z-index: 1;
        }
        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 35% 40%, rgba(124, 58, 237, .16) 0%, transparent 60%),
                radial-gradient(ellipse at 65% 55%, rgba(38, 217, 255, .08) 0%, transparent 55%);
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 48px;
            align-items: center;
            width: 100%;
        }
        @media (max-width: 920px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .hero-section {
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 48px;
            }
        }
        .hero-text h1 {
            font-size: clamp(2rem, 4.2vw, 3.2rem);
            font-weight: 800;
            line-height: 1.13;
            color: #fff;
            margin: 0 0 16px 0;
            letter-spacing: .01em;
        }
        .hero-text h1 .highlight {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 22px 0;
            max-width: 520px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 26px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 15px;
            border-radius: var(--radius-full);
            font-size: .84rem;
            font-weight: 550;
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, .05);
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .hero-tag.live {
            border-color: rgba(24, 229, 143, .4);
            color: var(--accent-green);
            background: rgba(24, 229, 143, .07);
        }
        .hero-tag.hot {
            border-color: rgba(255, 181, 71, .4);
            color: var(--accent-amber);
            background: rgba(255, 181, 71, .07);
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--accent-purple), #5B21B6);
            color: #fff;
            font-weight: 650;
            font-size: 1rem;
            letter-spacing: .02em;
            box-shadow: 0 3px 20px rgba(124, 58, 237, .35);
            text-decoration: none;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(124, 58, 237, .5);
            text-decoration: none;
            color: #fff;
        }
        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-full);
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, .25);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: .02em;
            text-decoration: none;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .btn-glass:hover {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .45);
            text-decoration: none;
            color: #fff;
        }
        /* Hero Live Score Card */
        .hero-live-card {
            background: var(--bg-glass);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-2xl);
            padding: 24px 22px;
            box-shadow: var(--shadow-card);
        }
        .hero-live-card .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }
        .hero-live-card .live-dot {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .9rem;
            font-weight: 650;
            color: var(--accent-green);
        }
        .hero-live-card .live-dot::before {
            content: '';
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.4s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(24, 229, 143, .6);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .45;
                transform: scale(1.7);
            }
        }
        .mini-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-subtle);
            gap: 10px;
        }
        .mini-match:last-child {
            border-bottom: none;
        }
        .mini-match .team {
            font-weight: 650;
            color: #fff;
            font-size: .95rem;
            flex: 1;
            text-align: center;
        }
        .mini-match .score {
            font-weight: 800;
            font-size: 1.35rem;
            color: #fff;
            min-width: 56px;
            text-align: center;
            letter-spacing: .04em;
        }
        .mini-match .score.live-winning {
            color: var(--accent-green);
        }
        .mini-match .vs-badge {
            font-size: .78rem;
            color: var(--text-muted);
            font-weight: 600;
            min-width: 32px;
            text-align: center;
        }
        .mini-match .status-tag {
            font-size: .72rem;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-weight: 600;
            white-space: nowrap;
        }
        .status-live {
            background: rgba(24, 229, 143, .14);
            color: var(--accent-green);
        }
        .status-upcoming {
            background: rgba(255, 181, 71, .14);
            color: var(--accent-amber);
        }

        /* SECTION TITLES */
        .section-title {
            font-size: clamp(1.5rem, 2.6vw, 2rem);
            font-weight: 760;
            color: #fff;
            margin: 0 0 8px 0;
            letter-spacing: .01em;
        }
        .section-subtitle {
            font-size: .98rem;
            color: var(--text-secondary);
            margin: 0 0 32px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header .badge-row {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            background: rgba(124, 58, 237, .12);
            color: var(--accent-purple);
            font-size: .82rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: .03em;
        }

        /* METRICS */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .metrics-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 768px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 20px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
        }
        .metric-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
            border-color: rgba(124, 58, 237, .25);
        }
        .metric-value {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: .02em;
            line-height: 1;
            margin-bottom: 5px;
        }
        .metric-value.accent-purple {
            color: var(--accent-purple);
        }
        .metric-value.accent-green {
            color: var(--accent-green);
        }
        .metric-value.accent-cyan {
            color: var(--accent-cyan);
        }
        .metric-value.accent-amber {
            color: var(--accent-amber);
        }
        .metric-label {
            font-size: .82rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .metric-update {
            font-size: .7rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* GAME ENTRY BENTO */
        .game-bento {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .game-bento {
                grid-template-columns: 1fr 1fr 1fr 1fr;
                grid-template-rows: auto auto auto;
            }
        }
        @media (max-width: 640px) {
            .game-bento {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 10px;
            }
        }
        @media (max-width: 420px) {
            .game-bento {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .game-bento-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 20px 16px;
            text-align: center;
            cursor: pointer;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: inherit;
        }
        .game-bento-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: rgba(124, 58, 237, .3);
            text-decoration: none;
        }
        .game-bento-card.featured {
            grid-column: span 2;
            grid-row: span 2;
            background: linear-gradient(145deg, #1a1530, #1E1B2B);
            border-color: rgba(124, 58, 237, .28);
            padding: 32px 24px;
            justify-content: center;
            gap: 12px;
        }
        @media (max-width: 640px) {
            .game-bento-card.featured {
                grid-column: span 3;
                grid-row: span 1;
                padding: 24px 18px;
            }
        }
        @media (max-width: 420px) {
            .game-bento-card.featured {
                grid-column: span 2;
            }
        }
        .game-bento-card .game-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }
        .game-bento-card.featured .game-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            font-size: 1.6rem;
        }
        .game-bento-card .game-name {
            font-weight: 650;
            color: #fff;
            font-size: .92rem;
        }
        .game-bento-card.featured .game-name {
            font-size: 1.15rem;
            font-weight: 700;
        }
        .game-bento-card .game-meta {
            font-size: .75rem;
            color: var(--text-muted);
        }
        .icon-lol {
            background: linear-gradient(135deg, #C8AA6E, #A0803C);
        }
        .icon-kpl {
            background: linear-gradient(135deg, #E8453C, #B5302A);
        }
        .icon-dota {
            background: linear-gradient(135deg, #D43C2E, #8B2016);
        }
        .icon-cs2 {
            background: linear-gradient(135deg, #DE9B35, #B0781A);
        }
        .icon-valorant {
            background: linear-gradient(135deg, #FD4556, #C42D3C);
        }
        .icon-pubg {
            background: linear-gradient(135deg, #F2A900, #C48800);
        }
        .icon-peace {
            background: linear-gradient(135deg, #00B4D8, #007A94);
        }

        /* SCORE TABLE */
        .score-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
            box-shadow: var(--shadow-card);
        }
        .score-table-wrap::-webkit-scrollbar {
            height: 5px;
        }
        .score-table-wrap::-webkit-scrollbar-track {
            background: transparent;
        }
        .score-table-wrap::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .15);
            border-radius: 10px;
        }
        .score-table {
            width: 100%;
            min-width: 820px;
            border-collapse: collapse;
            font-size: .9rem;
        }
        .score-table thead th {
            background: rgba(16, 16, 20, .7);
            color: var(--text-muted);
            font-weight: 600;
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .04em;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1;
        }
        .score-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            vertical-align: middle;
            color: var(--text-primary);
        }
        .score-table tbody tr {
            transition: background var(--transition-fast);
        }
        .score-table tbody tr:hover {
            background: rgba(255, 255, 255, .03);
        }
        .score-table .team-cell {
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
        }
        .score-table .score-cell {
            font-weight: 800;
            font-size: 1.05rem;
            color: #fff;
            letter-spacing: .03em;
        }
        .score-table .badge-sm {
            display: inline-block;
            padding: 4px 11px;
            border-radius: var(--radius-full);
            font-size: .72rem;
            font-weight: 600;
            white-space: nowrap;
        }

        /* TIMELINE */
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .timeline-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .timeline-grid {
                grid-template-columns: 1fr;
            }
        }
        .timeline-block {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 20px 18px;
        }
        .timeline-block .tl-period {
            font-weight: 700;
            color: var(--accent-purple);
            font-size: .88rem;
            margin-bottom: 12px;
            letter-spacing: .03em;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .timeline-block .tl-period::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-purple);
            flex-shrink: 0;
        }
        .tl-match-item {
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            font-size: .85rem;
            color: var(--text-secondary);
            display: flex;
            justify-content: space-between;
            gap: 8px;
        }
        .tl-match-item:last-child {
            border-bottom: none;
        }
        .tl-match-item .tl-teams {
            font-weight: 550;
            color: #fff;
        }

        /* BENTO SERVICES */
        .bento-services {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
        }
        @media (max-width: 900px) {
            .bento-services {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto auto;
            }
        }
        @media (max-width: 560px) {
            .bento-services {
                grid-template-columns: 1fr;
            }
        }
        .bento-svc-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 24px 20px;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }
        .bento-svc-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
            border-color: rgba(124, 58, 237, .25);
            text-decoration: none;
        }
        .bento-svc-card.large {
            grid-row: span 2;
            background: linear-gradient(160deg, #1a1530, #1E1B2B);
            border-color: rgba(124, 58, 237, .2);
        }
        @media (max-width: 900px) {
            .bento-svc-card.large {
                grid-row: span 1;
                grid-column: span 2;
            }
        }
        @media (max-width: 560px) {
            .bento-svc-card.large {
                grid-column: span 1;
            }
        }
        .bento-svc-card .svc-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            flex-shrink: 0;
        }
        .bento-svc-card h4 {
            font-weight: 700;
            color: #fff;
            margin: 0;
            font-size: 1.05rem;
        }
        .bento-svc-card p {
            font-size: .86rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* RANKING LIST */
        .ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            transition: background var(--transition-fast);
        }
        .ranking-item:hover {
            background: rgba(255, 255, 255, .025);
        }
        .ranking-item .rank-num {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--accent-purple);
            min-width: 32px;
            text-align: center;
        }
        .ranking-item .rank-num.top1 {
            color: #FFD700;
            font-size: 1.3rem;
        }
        .ranking-item .rank-num.top2 {
            color: #C0C0C0;
        }
        .ranking-item .rank-num.top3 {
            color: #CD7F32;
        }
        .ranking-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item .rank-name {
            font-weight: 650;
            color: #fff;
            font-size: .9rem;
        }
        .ranking-item .rank-detail {
            font-size: .75rem;
            color: var(--text-muted);
        }
        .ranking-item .rank-heat {
            font-weight: 650;
            color: var(--accent-amber);
            font-size: .85rem;
            white-space: nowrap;
        }

        /* PLAYER CARDS */
        .player-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 900px) {
            .player-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .player-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        .player-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 18px 16px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .player-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }
        .player-card .player-avatar-placeholder {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 10px;
            background: linear-gradient(135deg, #2a2440, #1E1B2B);
            border: 2px solid rgba(124, 58, 237, .4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            font-weight: 700;
        }
        .player-card .player-name {
            font-weight: 700;
            color: #fff;
            font-size: .95rem;
            margin-bottom: 4px;
        }
        .player-card .player-role {
            font-size: .76rem;
            color: var(--accent-cyan);
            font-weight: 550;
        }
        .player-card .player-stats {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 10px;
            font-size: .78rem;
            color: var(--text-secondary);
        }
        .player-card .player-stats span {
            font-weight: 650;
            color: #fff;
        }

        /* COMPARISON */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
        }
        @media (max-width: 700px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .comparison-grid .vs-divider {
                display: none;
            }
        }
        .comparison-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 28px 22px;
            text-align: center;
        }
        .comparison-card.negative {
            border-color: rgba(248, 81, 91, .25);
            background: rgba(248, 81, 91, .04);
        }
        .comparison-card.positive {
            border-color: rgba(24, 229, 143, .25);
            background: rgba(24, 229, 143, .04);
        }
        .comparison-card h4 {
            font-weight: 700;
            margin: 0 0 14px;
            font-size: 1.05rem;
        }
        .comparison-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        .comparison-card ul li {
            padding: 7px 0;
            font-size: .88rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comparison-card ul li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .comparison-card.negative ul li::before {
            background: var(--accent-red);
        }
        .comparison-card.positive ul li::before {
            background: var(--accent-green);
        }
        .vs-divider {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            text-align: center;
        }

        /* NEWS CARDS */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        @media (max-width: 900px) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .news-card .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .news-card .news-body {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .news-card .news-tag {
            font-size: .72rem;
            font-weight: 600;
            color: var(--accent-purple);
            letter-spacing: .03em;
        }
        .news-card h4 {
            font-weight: 700;
            color: #fff;
            margin: 0;
            font-size: .95rem;
            line-height: 1.5;
        }
        .news-card .news-date {
            font-size: .75rem;
            color: var(--text-muted);
            margin-top: auto;
        }

        /* REVIEWS */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-card .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a2440, #1E1B2B);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 650;
            color: #fff;
            font-size: .88rem;
        }
        .review-card .review-tag {
            font-size: .7rem;
            color: var(--text-muted);
        }
        .review-card .review-stars {
            color: var(--accent-amber);
            font-size: .8rem;
        }
        .review-card .review-text {
            font-size: .84rem;
            color: var(--text-secondary);
            line-height: 1.65;
            flex: 1;
        }
        .review-card .review-time {
            font-size: .7rem;
            color: var(--text-muted);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item summary {
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 650;
            color: #fff;
            font-size: .95rem;
            display: flex;
            align-items: center;
            gap: 12px;
            list-style: none;
            user-select: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-purple);
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }
        .faq-item[open] summary::before {
            background: var(--accent-green);
            box-shadow: 0 0 10px rgba(24, 229, 143, .5);
        }
        .faq-item .faq-answer {
            padding: 0 22px 18px 41px;
            font-size: .88rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* CTA FORM */
        .cta-form-section {
            background: var(--bg-card);
            border: 1px solid rgba(124, 58, 237, .2);
            border-radius: var(--radius-2xl);
            padding: 40px 32px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .cta-form-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(124, 58, 237, .1);
            filter: blur(60px);
            pointer-events: none;
        }
        .cta-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            position: relative;
            z-index: 1;
        }
        @media (max-width: 640px) {
            .cta-form-grid {
                grid-template-columns: 1fr;
            }
            .cta-form-section {
                padding: 28px 18px;
            }
        }
        .cta-form-grid .full-width {
            grid-column: 1 / -1;
        }
        .form-input {
            width: 100%;
            padding: 13px 16px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            background: rgba(16, 16, 20, .6);
            color: #fff;
            font-size: .92rem;
            transition: all var(--transition-fast);
        }
        .form-input::placeholder {
            color: var(--text-muted);
        }
        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23746F86' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        /* FOOTER */
        .site-footer {
            background: rgba(16, 16, 20, .9);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 28px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 560px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        .footer-col h5 {
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
            font-size: .92rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            font-size: .84rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
            text-decoration: none;
        }
        .footer-bottom {
            text-align: center;
            font-size: .76rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 22px;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-bottom .sep {
            margin: 0 10px;
            color: rgba(255, 255, 255, .2);
        }

        /* UTILITIES */
        .section-spacing {
            padding: 70px 0;
        }
        @media (max-width: 768px) {
            .section-spacing {
                padding: 44px 0;
            }
        }
        .card-dark {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 24px 22px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
        }
        .text-accent-purple {
            color: var(--accent-purple);
        }
        .text-accent-green {
            color: var(--accent-green);
        }
        .text-accent-cyan {
            color: var(--accent-cyan);
        }
        .text-accent-amber {
            color: var(--accent-amber);
        }

/* roulang page: category2 */
:root {
            --bg-obsidian: #101014;
            --bg-deep-card: #181622;
            --bg-card-alt: #1E1B2B;
            --neon-purple: #7C3AED;
            --neon-green: #18E58F;
            --cyan-glow: #26D9FF;
            --amber-warn: #FFB547;
            --text-body: #EDEAF7;
            --text-muted: #A9A3B8;
            --text-weak: #746F86;
            --glass-border: rgba(255, 255, 255, .08);
            --glass-bg: rgba(24, 22, 34, .82);
            --shadow-purple: 0 0 40px rgba(124, 58, 237, .18);
            --shadow-cyan: 0 0 28px rgba(38, 217, 255, .12);
            --shadow-card: 0 4px 32px rgba(0, 0, 0, .45);
            --radius-xl: 24px;
            --radius-2xl: 30px;
            --radius-pill: 999px;
            --transition-fast: .2s cubic-bezier(.4, 0, .2, 1);
            --transition-smooth: .35s cubic-bezier(.4, 0, .2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Arial', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg-obsidian);
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER / NAV ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all var(--transition-smooth);
            background: rgba(16, 14, 20, .78);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--glass-border);
            box-shadow: 0 2px 24px rgba(0, 0, 0, .35);
        }

        .site-header.scrolled {
            background: rgba(16, 14, 20, .94);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            box-shadow: 0 4px 36px rgba(0, 0, 0, .55);
        }

        .nav-inner {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 20px;
        }

        .site-header.scrolled .nav-inner {
            height: 56px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 760;
            font-size: 1.08rem;
            color: #fff;
            white-space: nowrap;
            flex-shrink: 0;
            transition: all var(--transition-smooth);
        }

        .site-header.scrolled .nav-logo {
            font-size: .98rem;
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--neon-purple), #5B21B6);
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 0 20px rgba(124, 58, 237, .45);
            transition: all var(--transition-smooth);
        }

        .site-header.scrolled .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            font-size: .85rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-size: .9rem;
            font-weight: 580;
            color: var(--text-muted);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, .06);
        }

        .nav-links li a.active {
            color: #fff;
            background: rgba(124, 58, 237, .22);
            font-weight: 680;
            box-shadow: inset 0 0 0 1px rgba(124, 58, 237, .4);
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            font-size: .88rem;
            font-weight: 640;
            color: #fff;
            background: linear-gradient(135deg, var(--neon-purple), #5B21B6);
            box-shadow: 0 0 22px rgba(124, 58, 237, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 34px rgba(124, 58, 237, .5), inset 0 1px 0 rgba(255, 255, 255, .18);
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
            color: #fff;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.4rem;
            padding: 8px;
            border-radius: 10px;
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, .08);
        }

        /* ===== HERO ===== */
        .page-hero {
            position: relative;
            padding: 140px 0 90px;
            background: linear-gradient(180deg, #0e0c16 0%, #12101a 40%, var(--bg-obsidian) 100%);
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 35% 30%, rgba(124, 58, 237, .13) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 55%, rgba(38, 217, 255, .07) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 80%, rgba(24, 229, 143, .04) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: .18;
            z-index: 0;
            mix-blend-mode: soft-light;
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 18px;
            border-radius: var(--radius-pill);
            font-size: .82rem;
            font-weight: 620;
            color: var(--amber-warn);
            background: rgba(255, 181, 71, .1);
            border: 1px solid rgba(255, 181, 71, .25);
            margin-bottom: 22px;
        }

        .hero-badge .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--amber-warn);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 181, 71, .7);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(255, 181, 71, 0);
            }
        }

        .hero-content h1 {
            font-size: clamp(2rem, 3.4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.14;
            color: #fff;
            margin: 0 0 16px;
            letter-spacing: -.01em;
        }

        .hero-content h1 .gradient-text {
            background: linear-gradient(135deg, var(--neon-purple), var(--cyan-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0 auto 28px;
            max-width: 560px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            margin-bottom: 32px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-pill);
            font-size: .95rem;
            font-weight: 660;
            color: #fff;
            background: linear-gradient(135deg, var(--neon-purple), #5B21B6);
            box-shadow: 0 0 28px rgba(124, 58, 237, .38), inset 0 1px 0 rgba(255, 255, 255, .12);
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(124, 58, 237, .55), inset 0 1px 0 rgba(255, 255, 255, .18);
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
            color: #fff;
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(124, 58, 237, .6);
            outline-offset: 3px;
        }

        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: var(--radius-pill);
            font-size: .93rem;
            font-weight: 620;
            color: #fff;
            background: transparent;
            border: 1px solid rgba(38, 217, 255, .45);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .btn-glass:hover {
            background: rgba(38, 217, 255, .1);
            border-color: rgba(38, 217, 255, .7);
            box-shadow: 0 0 22px rgba(38, 217, 255, .18);
            color: #fff;
        }

        .btn-glass:focus-visible {
            outline: 3px solid rgba(38, 217, 255, .5);
            outline-offset: 3px;
        }

        .hero-mini-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            justify-content: center;
            padding-top: 8px;
        }

        .hero-mini-stat {
            text-align: center;
        }

        .hero-mini-stat .stat-num {
            font-size: 1.6rem;
            font-weight: 780;
            color: #fff;
            line-height: 1;
        }

        .hero-mini-stat .stat-label {
            font-size: .78rem;
            color: var(--text-weak);
            margin-top: 4px;
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: clamp(1.5rem, 2.4vw, 2rem);
            font-weight: 760;
            color: #fff;
            margin: 0 0 10px;
            letter-spacing: -.005em;
        }

        .section-header .section-subtitle {
            font-size: .92rem;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.65;
        }

        .section-tag {
            display: inline-block;
            font-size: .75rem;
            font-weight: 620;
            color: var(--neon-purple);
            text-transform: uppercase;
            letter-spacing: .06em;
            margin-bottom: 10px;
        }

        /* ===== DATE SWITCHER ===== */
        .date-switcher-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 36px;
        }

        .date-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            font-size: .88rem;
            font-weight: 600;
            color: var(--text-muted);
            background: var(--bg-deep-card);
            border: 1px solid var(--glass-border);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .date-pill:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, .2);
            background: #1f1c2c;
        }

        .date-pill.active {
            color: #fff;
            background: rgba(124, 58, 237, .22);
            border-color: rgba(124, 58, 237, .5);
            box-shadow: 0 0 18px rgba(124, 58, 237, .2);
            font-weight: 680;
        }

        .date-pill .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--neon-green);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        /* ===== FILTER BAR ===== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            padding: 16px 22px;
            border-radius: var(--radius-xl);
            background: var(--bg-deep-card);
            border: 1px solid var(--glass-border);
        }

        .filter-bar .filter-label {
            font-size: .82rem;
            color: var(--text-weak);
            font-weight: 580;
            white-space: nowrap;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            font-size: .82rem;
            font-weight: 560;
            color: var(--text-muted);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .1);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .filter-chip:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, .25);
            background: rgba(255, 255, 255, .04);
        }

        .filter-chip.active {
            color: #fff;
            background: rgba(124, 58, 237, .25);
            border-color: rgba(124, 58, 237, .5);
            font-weight: 640;
        }

        /* ===== SCHEDULE TABLE ===== */
        .schedule-table-card {
            background: var(--bg-deep-card);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--glass-border);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .schedule-table-card .table-header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            border-bottom: 1px solid var(--glass-border);
            flex-wrap: wrap;
            gap: 12px;
        }

        .table-header-bar .table-title {
            font-weight: 720;
            font-size: 1.05rem;
            color: #fff;
        }

        .table-header-bar .update-time {
            font-size: .78rem;
            color: var(--text-weak);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .update-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--neon-green);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .schedule-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, .12) transparent;
        }

        .schedule-table-wrap::-webkit-scrollbar {
            height: 5px;
        }

        .schedule-table-wrap::-webkit-scrollbar-track {
            background: transparent;
        }

        .schedule-table-wrap::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .12);
            border-radius: 10px;
        }

        .schedule-table {
            width: 100%;
            min-width: 820px;
            border-collapse: collapse;
            font-size: .88rem;
        }

        .schedule-table thead th {
            background: rgba(16, 14, 20, .7);
            color: var(--text-weak);
            font-weight: 620;
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .04em;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 1px solid var(--glass-border);
            position: sticky;
            top: 0;
        }

        .schedule-table tbody td {
            padding: 15px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            color: var(--text-body);
            white-space: nowrap;
            vertical-align: middle;
        }

        .schedule-table tbody tr {
            transition: background var(--transition-fast);
        }

        .schedule-table tbody tr:hover {
            background: rgba(255, 255, 255, .025);
        }

        .schedule-table tbody tr:last-child td {
            border-bottom: none;
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 620;
            color: #fff;
        }

        .match-teams .vs-badge {
            font-size: .72rem;
            color: var(--text-weak);
            font-weight: 500;
            padding: 3px 8px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .05);
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 13px;
            border-radius: var(--radius-pill);
            font-size: .76rem;
            font-weight: 620;
            white-space: nowrap;
        }

        .status-badge.upcoming {
            color: var(--amber-warn);
            background: rgba(255, 181, 71, .1);
            border: 1px solid rgba(255, 181, 71, .25);
        }

        .status-badge.live {
            color: var(--neon-green);
            background: rgba(24, 229, 143, .1);
            border: 1px solid rgba(24, 229, 143, .25);
        }

        .status-badge.live .live-dot-sm {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--neon-green);
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        .status-badge.finished {
            color: var(--text-weak);
            background: rgba(116, 111, 134, .1);
            border: 1px solid rgba(116, 111, 134, .2);
        }

        .remind-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: .78rem;
            font-weight: 600;
            color: var(--cyan-glow);
            background: rgba(38, 217, 255, .08);
            border: 1px solid rgba(38, 217, 255, .3);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .remind-btn:hover {
            background: rgba(38, 217, 255, .16);
            border-color: rgba(38, 217, 255, .55);
            box-shadow: 0 0 14px rgba(38, 217, 255, .15);
            color: #fff;
        }

        .game-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 11px;
            border-radius: var(--radius-pill);
            font-size: .76rem;
            font-weight: 580;
            color: var(--cyan-glow);
            background: rgba(38, 217, 255, .06);
            border: 1px solid rgba(38, 217, 255, .18);
            white-space: nowrap;
        }

        /* ===== WEEK CARDS ===== */
        .week-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 18px;
        }

        .week-match-card {
            background: var(--bg-deep-card);
            border-radius: var(--radius-xl);
            border: 1px solid var(--glass-border);
            padding: 20px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .week-match-card:hover {
            border-color: rgba(124, 58, 237, .4);
            box-shadow: var(--shadow-purple);
            transform: translateY(-3px);
        }

        .week-match-card .card-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            gap: 8px;
            flex-wrap: wrap;
        }

        .week-match-card .card-date {
            font-size: .78rem;
            color: var(--text-weak);
            font-weight: 560;
        }

        .week-match-card .card-teams {
            font-size: 1.05rem;
            font-weight: 720;
            color: #fff;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .week-match-card .card-teams .vs-text {
            font-size: .8rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .week-match-card .card-info-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: .78rem;
            color: var(--text-muted);
        }

        /* ===== REGION CARDS ===== */
        .region-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .region-card {
            background: var(--bg-deep-card);
            border-radius: var(--radius-xl);
            border: 1px solid var(--glass-border);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .region-card:hover {
            border-color: rgba(124, 58, 237, .4);
            box-shadow: var(--shadow-purple);
            transform: translateY(-3px);
        }

        .region-card .region-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            background: rgba(124, 58, 237, .12);
            color: var(--neon-purple);
            transition: all var(--transition-smooth);
        }

        .region-card:hover .region-icon-wrap {
            background: rgba(124, 58, 237, .22);
            box-shadow: 0 0 20px rgba(124, 58, 237, .3);
        }

        .region-card .region-name {
            font-weight: 680;
            font-size: .95rem;
            color: #fff;
            margin-bottom: 4px;
        }

        .region-card .region-count {
            font-size: .76rem;
            color: var(--text-weak);
        }

        /* ===== HOT LIST ===== */
        .hot-list-card {
            background: var(--bg-deep-card);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--glass-border);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }

        .hot-list-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
            flex-wrap: wrap;
        }

        .hot-list-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .hot-rank {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 720;
            font-size: .85rem;
            color: #fff;
            background: rgba(124, 58, 237, .2);
            flex-shrink: 0;
        }

        .hot-rank.top1 {
            background: linear-gradient(135deg, #FFB547, #E8960A);
            color: #1a1a1a;
        }
        .hot-rank.top2 {
            background: linear-gradient(135deg, #A9A3B8, #746F86);
            color: #fff;
        }
        .hot-rank.top3 {
            background: linear-gradient(135deg, #C47A3A, #8B5A2B);
            color: #fff;
        }

        .hot-info {
            flex: 1;
            min-width: 140px;
        }

        .hot-info .hot-match-name {
            font-weight: 640;
            color: #fff;
            font-size: .9rem;
            margin-bottom: 2px;
        }

        .hot-info .hot-meta {
            font-size: .76rem;
            color: var(--text-weak);
        }

        .hot-heat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .82rem;
            font-weight: 620;
            color: var(--amber-warn);
            white-space: nowrap;
        }

        .hot-heat .heat-bar {
            width: 60px;
            height: 5px;
            border-radius: 10px;
            background: rgba(255, 181, 71, .2);
            overflow: hidden;
        }

        .hot-heat .heat-bar-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--amber-warn), #FF8C00);
        }

        /* ===== FEATURE CARDS ===== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }

        .feature-card {
            background: var(--bg-deep-card);
            border-radius: var(--radius-xl);
            border: 1px solid var(--glass-border);
            padding: 24px;
            transition: all var(--transition-smooth);
            text-align: center;
        }

        .feature-card:hover {
            border-color: rgba(38, 217, 255, .35);
            box-shadow: var(--shadow-cyan);
            transform: translateY(-2px);
        }

        .feature-card .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            background: rgba(38, 217, 255, .1);
            color: var(--cyan-glow);
        }

        .feature-card h4 {
            font-weight: 680;
            font-size: .95rem;
            color: #fff;
            margin: 0 0 6px;
        }

        .feature-card p {
            font-size: .82rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin: 0;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-deep-card);
            border-radius: var(--radius-xl);
            border: 1px solid var(--glass-border);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, .15);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            background: none;
            border: none;
            color: #fff;
            font-size: .95rem;
            font-weight: 640;
            cursor: pointer;
            text-align: left;
            gap: 12px;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, .02);
        }

        .faq-question:focus-visible {
            outline: 3px solid rgba(124, 58, 237, .5);
            outline-offset: -2px;
            border-radius: var(--radius-xl);
        }

        .faq-q-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 0;
        }

        .faq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neon-purple);
            flex-shrink: 0;
        }

        .faq-arrow {
            font-size: .85rem;
            color: var(--text-weak);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--neon-purple);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 22px 18px 42px;
            font-size: .86rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 70px 0 90px;
            position: relative;
        }

        .cta-card {
            background: var(--bg-deep-card);
            border-radius: var(--radius-2xl);
            border: 1px solid rgba(124, 58, 237, .3);
            padding: 44px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-purple);
        }

        .cta-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(124, 58, 237, .1) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-card h3 {
            font-size: 1.5rem;
            font-weight: 760;
            color: #fff;
            margin: 0 0 10px;
            position: relative;
            z-index: 1;
        }

        .cta-card .cta-desc {
            font-size: .92rem;
            color: var(--text-muted);
            margin: 0 auto 24px;
            max-width: 480px;
            position: relative;
            z-index: 1;
            line-height: 1.65;
        }

        .cta-card .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #0c0a12;
            border-top: 1px solid var(--glass-border);
            padding: 56px 0 28px;
            color: var(--text-muted);
            font-size: .86rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 28px;
            margin-bottom: 36px;
        }

        .footer-col h5 {
            font-size: .9rem;
            font-weight: 680;
            color: #fff;
            margin: 0 0 14px;
        }

        .footer-col ul li {
            margin-bottom: 7px;
        }

        .footer-col ul li a {
            color: var(--text-weak);
            font-size: .82rem;
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--cyan-glow);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 22px;
            border-top: 1px solid var(--glass-border);
            font-size: .78rem;
            color: var(--text-weak);
            line-height: 2;
        }

        .footer-bottom a {
            color: var(--text-weak);
            margin: 0 8px;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .footer-bottom a:hover {
            color: var(--cyan-glow);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .nav-links li a {
                padding: 7px 12px;
                font-size: .82rem;
            }
            .nav-cta-btn {
                padding: 8px 16px;
                font-size: .82rem;
            }
            .nav-logo {
                font-size: .95rem;
            }
            .schedule-table {
                min-width: 680px;
            }
            .section {
                padding: 56px 0;
            }
            .page-hero {
                padding: 120px 0 64px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(16, 14, 20, .96);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 16px;
                gap: 4px;
                border-bottom: 1px solid var(--glass-border);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                display: block;
                width: 100%;
                padding: 12px 16px;
                border-radius: 14px;
                font-size: .9rem;
            }
            .desktop-only {
                display: none !important;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-inner {
                height: 58px;
            }
            .page-hero {
                padding: 108px 0 50px;
            }
            .hero-content h1 {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: .9rem;
            }
            .section {
                padding: 44px 0;
            }
            .schedule-table-wrap {
                border-radius: 0;
            }
            .schedule-table {
                min-width: 600px;
                font-size: .8rem;
            }
            .schedule-table thead th {
                font-size: .7rem;
                padding: 10px 10px;
            }
            .schedule-table tbody td {
                padding: 10px 10px;
                font-size: .78rem;
            }
            .filter-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .week-cards-grid {
                grid-template-columns: 1fr;
            }
            .region-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .cta-card {
                padding: 30px 18px;
            }
            .cta-card h3 {
                font-size: 1.2rem;
            }
            .hero-mini-stats {
                gap: 18px;
            }
            .hero-mini-stat .stat-num {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .nav-inner {
                padding: 0 16px;
            }
            .page-hero {
                padding: 96px 0 40px;
            }
            .hero-content h1 {
                font-size: 1.4rem;
            }
            .hero-subtitle {
                font-size: .82rem;
            }
            .btn-primary,
            .btn-glass {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: .85rem;
            }
            .hero-actions {
                flex-direction: column;
                gap: 10px;
            }
            .date-pill {
                padding: 8px 14px;
                font-size: .78rem;
            }
            .schedule-table {
                min-width: 500px;
                font-size: .72rem;
            }
            .schedule-table thead th {
                font-size: .66rem;
            }
            .schedule-table tbody td {
                font-size: .7rem;
                padding: 8px;
            }
            .region-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .region-card {
                padding: 16px 12px;
            }
            .region-card .region-icon-wrap {
                width: 40px;
                height: 40px;
                border-radius: 12px;
                font-size: 1rem;
            }
            .region-card .region-name {
                font-size: .82rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .week-cards-grid {
                grid-template-columns: 1fr;
            }
            .hot-list-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: .85rem;
            }
            .faq-answer-inner {
                padding: 0 16px 14px 30px;
                font-size: .78rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #101014;
            --bg-secondary: #121018;
            --bg-card: #181622;
            --bg-card-alt: #1E1B2B;
            --bg-glass: rgba(18, 16, 24, 0.72);
            --color-primary: #7C3AED;
            --color-primary-glow: rgba(124, 58, 237, 0.35);
            --color-accent-green: #18E58F;
            --color-accent-cyan: #26D9FF;
            --color-warning: #FFB547;
            --color-danger: #FF5C72;
            --text-primary: #EDEAF7;
            --text-secondary: #A9A3B8;
            --text-muted: #746F86;
            --text-inverse: #F7F5FF;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-medium: rgba(255, 255, 255, 0.14);
            --border-glow: rgba(124, 58, 237, 0.45);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 30px;
            --radius-full: 999px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
            --shadow-card-hover: 0 8px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.22), 0 0 40px rgba(124, 58, 237, 0.12);
            --shadow-glow-purple: 0 0 28px rgba(124, 58, 237, 0.3), 0 0 60px rgba(124, 58, 237, 0.1);
            --shadow-glow-green: 0 0 18px rgba(24, 229, 143, 0.3);
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Arial', sans-serif;
            --header-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--color-accent-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ===== HEADER ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: var(--bg-glass);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
        }

        .site-header.scrolled {
            background: rgba(14, 12, 18, 0.95);
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
            border-bottom: 1px solid var(--border-medium);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
            gap: 18px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 750;
            font-size: 1.12rem;
            color: var(--text-primary);
            white-space: nowrap;
            transition: var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: #fff;
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--color-primary), #5B21B6);
            color: #fff;
            font-size: 1rem;
            box-shadow: var(--shadow-glow-purple);
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }
        .nav-links li a {
            display: block;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 580;
            color: var(--text-secondary);
            transition: var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-links li a.active {
            color: #fff;
            background: rgba(124, 58, 237, 0.22);
            font-weight: 650;
            box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.35);
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 22px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--color-primary), #5B21B6);
            color: #fff;
            font-weight: 650;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: var(--shadow-glow-purple);
            transition: var(--transition-smooth);
            flex-shrink: 0;
        }
        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 36px rgba(124, 58, 237, 0.45), 0 0 70px rgba(124, 58, 237, 0.18);
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
            color: #fff;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ===== HERO ===== */
        .page-hero {
            position: relative;
            padding: 140px 0 80px;
            overflow: hidden;
            background: var(--bg-secondary);
            min-height: 520px;
            display: flex;
            align-items: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
            opacity: 0.18;
            filter: brightness(0.7) saturate(1.2);
            z-index: 0;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(24, 229, 143, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(16, 16, 20, 0.4) 0%, var(--bg-primary) 100%);
            z-index: 1;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: clamp(2rem, 4.2vw, 3.2rem);
            font-weight: 800;
            line-height: 1.14;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }
        .hero-text h1 span {
            background: linear-gradient(135deg, var(--color-accent-green), var(--color-accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text .hero-sub {
            font-size: 1.08rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 26px;
            max-width: 480px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 26px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 15px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            transition: var(--transition-fast);
        }
        .hero-tag.hot {
            background: rgba(255, 181, 71, 0.16);
            border-color: rgba(255, 181, 71, 0.35);
            color: var(--color-warning);
        }
        .hero-tag.live {
            background: rgba(24, 229, 143, 0.14);
            border-color: rgba(24, 229, 143, 0.3);
            color: var(--color-accent-green);
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--color-primary), #5B21B6);
            color: #fff;
            font-weight: 680;
            font-size: 0.95rem;
            box-shadow: var(--shadow-glow-purple);
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(124, 58, 237, 0.5), 0 0 80px rgba(124, 58, 237, 0.18);
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
            color: #fff;
        }
        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-full);
            background: transparent;
            color: var(--text-primary);
            font-weight: 620;
            font-size: 0.95rem;
            border: 1px solid var(--border-medium);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: var(--color-accent-cyan);
            color: #fff;
            box-shadow: 0 0 18px rgba(38, 217, 255, 0.18);
        }
        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-dashboard-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            width: 100%;
            max-width: 460px;
        }
        .mini-stat-row {
            display: flex;
            gap: 14px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .mini-stat {
            flex: 1;
            min-width: 70px;
            background: var(--bg-card-alt);
            border-radius: var(--radius-md);
            padding: 14px 12px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }
        .mini-stat .stat-num {
            font-size: 1.6rem;
            font-weight: 750;
            color: #fff;
            line-height: 1.1;
        }
        .mini-stat .stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .mini-stat.highlight {
            border-color: rgba(124, 58, 237, 0.4);
            background: rgba(124, 58, 237, 0.08);
        }
        .mini-stat.highlight .stat-num {
            color: var(--color-accent-green);
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 80px 0;
        }
        .section-sm {
            padding: 56px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 760;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
        .section-header .section-sub {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.65;
        }
        .section-divider {
            width: 48px;
            height: 3px;
            border-radius: var(--radius-full);
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
            margin: 12px auto 0;
        }

        /* ===== STAT CARDS GRID ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
            opacity: 0;
            transition: var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .stat-card:hover::before {
            opacity: 1;
        }
        .stat-card .stat-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--color-primary);
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 780;
            color: #fff;
            line-height: 1.1;
        }
        .stat-card .stat-desc {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
        .stat-card.accent-green .stat-value {
            color: var(--color-accent-green);
        }
        .stat-card.accent-cyan .stat-value {
            color: var(--color-accent-cyan);
        }
        .stat-card.accent-warn .stat-value {
            color: var(--color-warning);
        }

        /* ===== DATA TABLE ===== */
        .data-table-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
        }
        .table-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .table-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .table-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.14);
            border-radius: 10px;
        }
        .data-table {
            width: 100%;
            min-width: 820px;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .data-table thead th {
            background: var(--bg-card-alt);
            padding: 15px 14px;
            text-align: left;
            font-weight: 680;
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            white-space: nowrap;
        }
        .data-table tbody td {
            padding: 14px 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
            white-space: nowrap;
            vertical-align: middle;
        }
        .data-table tbody tr {
            transition: var(--transition-fast);
        }
        .data-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.025);
        }
        .data-table tbody tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.012);
        }
        .data-table tbody tr:nth-child(even):hover {
            background: rgba(255, 255, 255, 0.035);
        }
        .badge {
            display: inline-block;
            padding: 4px 11px;
            border-radius: var(--radius-full);
            font-size: 0.73rem;
            font-weight: 650;
            white-space: nowrap;
        }
        .badge-green {
            background: rgba(24, 229, 143, 0.14);
            color: var(--color-accent-green);
            border: 1px solid rgba(24, 229, 143, 0.25);
        }
        .badge-cyan {
            background: rgba(38, 217, 255, 0.12);
            color: var(--color-accent-cyan);
            border: 1px solid rgba(38, 217, 255, 0.22);
        }
        .badge-purple {
            background: rgba(124, 58, 237, 0.16);
            color: #A78BFA;
            border: 1px solid rgba(124, 58, 237, 0.3);
        }
        .badge-warn {
            background: rgba(255, 181, 71, 0.15);
            color: var(--color-warning);
            border: 1px solid rgba(255, 181, 71, 0.28);
        }
        .badge-gray {
            background: rgba(169, 163, 184, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(169, 163, 184, 0.18);
        }
        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-accent-green);
            margin-right: 6px;
            animation: pulse-dot-anim 1.4s ease-in-out infinite;
            box-shadow: 0 0 8px rgba(24, 229, 143, 0.5);
        }
        @keyframes pulse-dot-anim {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.7);
            }
        }
        .trend-up {
            color: var(--color-accent-green);
            font-weight: 650;
        }
        .trend-down {
            color: var(--color-danger);
            font-weight: 650;
        }
        .trend-stable {
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ===== PLAYER CARDS ===== */
        .player-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .player-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .player-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-5px);
        }
        .player-card .player-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), #3B1F8E);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 750;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 12px;
            box-shadow: 0 0 16px rgba(124, 58, 237, 0.3);
        }
        .player-card .player-name {
            font-weight: 720;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 3px;
        }
        .player-card .player-role {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .player-card .player-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-size: 0.78rem;
        }
        .player-card .player-stats .ps-item {
            background: var(--bg-card-alt);
            border-radius: var(--radius-sm);
            padding: 8px 10px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }
        .player-card .player-stats .ps-val {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
        }
        .player-card .player-stats .ps-lbl {
            font-size: 0.68rem;
            color: var(--text-muted);
        }

        /* ===== TREND BARS ===== */
        .trend-bars-container {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
        }
        .trend-bar-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }
        .trend-bar-row:last-child {
            margin-bottom: 0;
        }
        .trend-bar-label {
            width: 80px;
            font-weight: 650;
            font-size: 0.85rem;
            color: var(--text-primary);
            flex-shrink: 0;
            text-align: right;
        }
        .trend-bar-track {
            flex: 1;
            height: 22px;
            background: var(--bg-card-alt);
            border-radius: var(--radius-full);
            overflow: hidden;
            position: relative;
            border: 1px solid var(--border-subtle);
        }
        .trend-bar-fill {
            height: 100%;
            border-radius: var(--radius-full);
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent-cyan));
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        .trend-bar-fill.green-fill {
            background: linear-gradient(90deg, #0D9E6C, var(--color-accent-green));
        }
        .trend-bar-fill.warn-fill {
            background: linear-gradient(90deg, #D98A2C, var(--color-warning));
        }
        .trend-bar-val {
            width: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            flex-shrink: 0;
            text-align: left;
        }

        /* ===== COMPARE CARDS ===== */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: stretch;
        }
        .compare-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 26px 22px;
            text-align: center;
            transition: var(--transition-smooth);
        }
        .compare-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
        }
        .compare-card .team-name-lg {
            font-size: 1.4rem;
            font-weight: 750;
            color: #fff;
            margin-bottom: 4px;
        }
        .compare-card .team-region {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .compare-card .compare-stat-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.82rem;
            color: var(--text-secondary);
        }
        .compare-card .compare-stat-row .cs-val {
            font-weight: 680;
            color: #fff;
        }
        .compare-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-primary);
            text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
            min-width: 50px;
        }

        /* ===== GAME DISTRIBUTION ===== */
        .game-dist-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .game-dist-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition-smooth);
            text-align: center;
            cursor: pointer;
        }
        .game-dist-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-5px);
        }
        .game-dist-card .gd-img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-subtle);
        }
        .game-dist-card .gd-info {
            padding: 14px 12px;
        }
        .game-dist-card .gd-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .game-dist-card .gd-count {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-fast);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: var(--border-medium);
        }
        .faq-item.open {
            border-color: var(--border-glow);
            box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            font-weight: 650;
            font-size: 0.95rem;
            color: var(--text-primary);
            transition: var(--transition-fast);
            user-select: none;
        }
        .faq-question .faq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-primary);
            flex-shrink: 0;
            transition: var(--transition-fast);
        }
        .faq-item.open .faq-dot {
            background: var(--color-accent-green);
            box-shadow: var(--shadow-glow-green);
        }
        .faq-question .faq-arrow {
            margin-left: auto;
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--color-accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 20px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            background: rgba(255, 255, 255, 0.015);
        }
        .faq-item.open .faq-answer {
            max-height: 240px;
            padding: 0 20px 20px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .cta-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-glow-purple);
            position: relative;
            overflow: hidden;
        }
        .cta-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-card h3 {
            font-size: 1.6rem;
            font-weight: 750;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-card .cta-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            position: relative;
            z-index: 1;
            max-width: 600px;
            margin: 0 auto;
        }
        .cta-form input,
        .cta-form select {
            padding: 12px 16px;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-medium);
            background: rgba(20, 18, 26, 0.7);
            color: var(--text-primary);
            font-size: 0.9rem;
            min-width: 140px;
            transition: var(--transition-fast);
            flex: 1;
            min-width: 130px;
        }
        .cta-form input:focus,
        .cta-form select:focus {
            outline: none;
            border-color: var(--color-accent-cyan);
            box-shadow: 0 0 14px rgba(38, 217, 255, 0.2);
            background: rgba(20, 18, 26, 0.9);
        }
        .cta-form input::placeholder {
            color: var(--text-muted);
        }
        .cta-form select {
            color: var(--text-secondary);
            cursor: pointer;
        }
        .cta-form select option {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #0C0A10;
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 28px;
            color: var(--text-secondary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h5 {
            font-weight: 700;
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: 0.84rem;
            color: var(--text-muted);
            transition: var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--color-accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            align-items: center;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--color-accent-cyan);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            .hero-text .hero-sub {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-tags {
                justify-content: center;
            }
            .hero-cta-group {
                justify-content: center;
            }
            .hero-visual {
                justify-content: center;
            }
            .hero-dashboard-card {
                max-width: 100%;
            }
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .player-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .compare-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .compare-vs {
                font-size: 1.2rem;
            }
            .game-dist-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .desktop-only {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-cta-btn.desktop-only {
                display: none !important;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(14, 12, 18, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border-subtle);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            }
            .nav-links.mobile-open li a {
                padding: 12px 16px;
                border-radius: var(--radius-md);
                font-size: 0.95rem;
                display: block;
            }
            .container {
                padding: 0 16px;
            }
            .page-hero {
                padding: 110px 0 50px;
                min-height: auto;
            }
            .section {
                padding: 50px 0;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .player-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .game-dist-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .data-table-wrapper {
                border-radius: var(--radius-md);
            }
            .data-table {
                min-width: 680px;
                font-size: 0.78rem;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 10px 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .trend-bar-label {
                width: 55px;
                font-size: 0.75rem;
            }
            .trend-bar-val {
                width: 38px;
                font-size: 0.75rem;
            }
            .cta-form {
                flex-direction: column;
            }
            .cta-form input,
            .cta-form select {
                width: 100%;
                min-width: auto;
            }
            .hero-dashboard-card {
                padding: 18px 14px;
            }
            .mini-stat {
                padding: 10px 8px;
            }
            .mini-stat .stat-num {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-card {
                padding: 16px 10px;
            }
            .stat-card .stat-value {
                font-size: 1.4rem;
            }
            .player-cards-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .game-dist-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .compare-grid {
                gap: 10px;
            }
            .trend-bar-row {
                gap: 8px;
            }
            .trend-bar-label {
                width: 44px;
                font-size: 0.7rem;
            }
            .trend-bar-val {
                width: 32px;
                font-size: 0.7rem;
            }
            .page-hero {
                padding: 100px 0 36px;
            }
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .btn-primary,
            .btn-glass {
                padding: 11px 20px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }
            .section-header h2 {
                font-size: 1.35rem;
            }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #101014;
            --bg-secondary: #121018;
            --bg-card: #181622;
            --bg-card-alt: #1E1B2B;
            --bg-glass: rgba(24, 22, 34, 0.75);
            --bg-glass-light: rgba(30, 27, 43, 0.55);
            --brand-purple: #7C3AED;
            --brand-purple-light: #9B5CF6;
            --brand-purple-dark: #6D28D9;
            --accent-green: #18E58F;
            --accent-cyan: #26D9FF;
            --accent-amber: #FFB547;
            --accent-amber-light: #FFC574;
            --text-primary: #EDEAF7;
            --text-secondary: #A9A3B8;
            --text-muted: #746F86;
            --text-on-dark: #F7F5FF;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-medium: rgba(255, 255, 255, 0.14);
            --border-active: rgba(124, 58, 237, 0.5);
            --border-cyan: rgba(38, 217, 255, 0.4);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(124, 58, 237, 0.1);
            --shadow-lg: 0 14px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.15);
            --shadow-glow-purple: 0 0 28px rgba(124, 58, 237, 0.35);
            --shadow-glow-green: 0 0 20px rgba(24, 229, 143, 0.3);
            --radius-xs: 8px;
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 24px;
            --radius-xl: 30px;
            --radius-pill: 999px;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Arial', sans-serif;
            --container-max: 1220px;
            --nav-height: 64px;
            --nav-height-scrolled: 56px;
            --section-gap-desktop: 90px;
            --section-gap-tablet: 60px;
            --section-gap-mobile: 44px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-primary);
            background: var(--bg-primary);
            min-height: 100vh;
            overflow-x: hidden;
            background-image:
                radial-gradient(ellipse at 25% 15%, rgba(124, 58, 237, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 72% 8%, rgba(38, 217, 255, 0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 40%, rgba(24, 229, 143, 0.03) 0%, transparent 50%);
            background-attachment: fixed;
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: #5BE0FF;
        }
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 8px;
        }

        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            outline: none;
            border: 1px solid var(--border-medium);
            background: var(--bg-card);
            color: var(--text-primary);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(38, 217, 255, 0.12);
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 28px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 18px;
            }
        }

        /* ===== HEADER / NAV ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(16, 14, 20, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
            transition: all var(--transition-base);
        }
        .site-header.scrolled {
            background: rgba(14, 12, 18, 0.94);
            border-bottom: 1px solid rgba(124, 58, 237, 0.2);
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
            height: var(--nav-height-scrolled);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 28px;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .nav-inner {
                padding: 0 18px;
                gap: 12px;
            }
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 760;
            font-size: 1.08rem;
            color: var(--text-primary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            flex-shrink: 0;
            text-decoration: none;
        }
        .nav-logo:hover {
            color: #fff;
        }
        .nav-logo .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: var(--radius-xs);
            background: linear-gradient(135deg, var(--brand-purple), #5B21B6);
            color: #fff;
            font-size: 0.85rem;
            box-shadow: 0 0 14px rgba(124, 58, 237, 0.45);
        }
        .scrolled .nav-logo .logo-icon {
            width: 30px;
            height: 30px;
            font-size: 0.75rem;
        }
        .scrolled .nav-logo {
            font-size: 0.98rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        @media (max-width: 860px) {
            .nav-links {
                display: none;
            }
        }
        .nav-links li a {
            display: inline-block;
            padding: 7px 15px;
            border-radius: var(--radius-pill);
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 550;
            transition: all var(--transition-fast);
            white-space: nowrap;
            text-decoration: none;
        }
        .nav-links li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-links li a.active {
            color: #fff;
            background: rgba(124, 58, 237, 0.28);
            font-weight: 650;
            box-shadow: 0 0 10px rgba(124, 58, 237, 0.25);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, var(--brand-purple), #5B21B6);
            color: #fff;
            font-weight: 650;
            font-size: 0.88rem;
            white-space: nowrap;
            transition: all var(--transition-base);
            box-shadow: 0 0 16px rgba(124, 58, 237, 0.35);
            text-decoration: none;
            flex-shrink: 0;
        }
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--brand-purple-light), var(--brand-purple));
            box-shadow: 0 0 24px rgba(124, 58, 237, 0.55);
            transform: translateY(-1px);
            color: #fff;
        }
        .desktop-only {
            display: inline-flex;
        }
        @media (max-width: 860px) {
            .desktop-only {
                display: none;
            }
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 1.35rem;
            padding: 6px 10px;
            border-radius: var(--radius-xs);
            transition: all var(--transition-fast);
        }
        @media (max-width: 860px) {
            .mobile-menu-toggle {
                display: block;
            }
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* Mobile menu panel */
        .mobile-menu-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: rgba(14, 12, 18, 0.96);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(124, 58, 237, 0.25);
            z-index: 999;
            padding: 16px 20px;
            flex-direction: column;
            gap: 8px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
        }
        .mobile-menu-panel.open {
            display: flex;
        }
        .mobile-menu-panel a {
            display: block;
            padding: 11px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-weight: 550;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all var(--transition-fast);
        }
        .mobile-menu-panel a:hover,
        .mobile-menu-panel a.active {
            background: rgba(124, 58, 237, 0.22);
            color: #fff;
        }
        .mobile-menu-panel .mobile-cta {
            margin-top: 8px;
            text-align: center;
            background: linear-gradient(135deg, var(--brand-purple), #5B21B6);
            color: #fff;
            border-radius: var(--radius-pill);
            font-weight: 650;
            padding: 12px 20px;
        }

        /* ===== PAGE HERO (compact dashboard) ===== */
        .page-hero {
            position: relative;
            padding: 130px 0 60px;
            overflow: hidden;
            background: var(--bg-secondary);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(16, 14, 20, 0.82) 0%, rgba(16, 14, 20, 0.9) 30%, rgba(16, 14, 20, 0.96) 100%);
            z-index: 1;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 65% 40%, rgba(24, 229, 143, 0.08) 0%, transparent 45%);
            z-index: 2;
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 3;
        }
        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid var(--border-subtle);
            background: rgba(24, 22, 34, 0.7);
            color: var(--text-secondary);
            backdrop-filter: blur(6px);
            white-space: nowrap;
        }
        .hero-badge.live {
            border-color: rgba(24, 229, 143, 0.5);
            color: var(--accent-green);
            background: rgba(24, 229, 143, 0.08);
        }
        .hero-badge.live .pulse-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.4s ease-in-out infinite;
            box-shadow: 0 0 8px rgba(24, 229, 143, 0.7);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.35;
                transform: scale(1.9);
            }
        }
        .hero-badge.hot {
            border-color: rgba(255, 181, 71, 0.5);
            color: var(--accent-amber);
            background: rgba(255, 181, 71, 0.08);
        }
        .page-hero h1 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 800;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
            max-width: 700px;
        }
        .page-hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .page-hero .hero-sub {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 580px;
            line-height: 1.65;
            margin-bottom: 24px;
        }
        .hero-quick-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 8px;
        }
        .hero-quick-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(24, 22, 34, 0.7);
            border-radius: var(--radius-pill);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(6px);
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .hero-quick-stat .stat-val {
            font-weight: 700;
            color: #fff;
            font-size: 1.05rem;
        }
        .hero-quick-stat .stat-val.green {
            color: var(--accent-green);
        }
        .hero-quick-stat .stat-val.amber {
            color: var(--accent-amber);
        }

        /* ===== MAIN CONTENT ===== */
        main {
            padding-top: 0;
        }
        .section {
            padding: var(--section-gap-desktop) 0;
        }
        @media (max-width: 1024px) {
            .section {
                padding: var(--section-gap-tablet) 0;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: var(--section-gap-mobile) 0;
            }
        }
        .section-header {
            margin-bottom: 32px;
        }
        .section-header h2 {
            font-size: clamp(1.5rem, 2.4vw, 1.9rem);
            font-weight: 760;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: -0.005em;
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin: 0;
        }
        .section-header .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }
        .section-header .update-time {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .section-header .update-time .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        /* Filter bar */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
            align-items: center;
        }
        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-size: 0.85rem;
            font-weight: 550;
            background: rgba(24, 22, 34, 0.7);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            user-select: none;
            backdrop-filter: blur(4px);
        }
        .filter-chip:hover {
            border-color: var(--border-medium);
            color: #fff;
            background: rgba(30, 27, 43, 0.85);
        }
        .filter-chip.active {
            background: rgba(124, 58, 237, 0.22);
            border-color: var(--border-active);
            color: #fff;
            font-weight: 650;
            box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
        }

        /* Live score table */
        .live-table-wrap {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-bottom: 18px;
        }
        .live-table-wrap .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
        }
        .live-table-wrap .table-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .live-table-wrap .table-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .live-table-wrap .table-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 780px;
            font-size: 0.9rem;
        }
        .score-table thead th {
            background: rgba(20, 18, 26, 0.8);
            padding: 14px 16px;
            text-align: left;
            font-weight: 650;
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
            position: sticky;
            top: 0;
        }
        .score-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            transition: background var(--transition-fast);
        }
        .score-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.025);
        }
        .score-table tbody tr.row-live {
            background: rgba(24, 229, 143, 0.03);
        }
        .score-table tbody td {
            padding: 14px 16px;
            vertical-align: middle;
            white-space: nowrap;
        }
        .score-table .game-name {
            font-weight: 650;
            color: #fff;
            font-size: 0.88rem;
        }
        .score-table .event-name {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }
        .score-table .team-name {
            font-weight: 600;
            color: var(--text-primary);
        }
        .score-table .vs-col {
            text-align: center;
            color: var(--text-muted);
            font-weight: 700;
            font-size: 0.85rem;
        }
        .score-table .score-display {
            font-weight: 800;
            font-size: 1.15rem;
            color: #fff;
            text-align: center;
            letter-spacing: 0.03em;
        }
        .score-table .score-display.winning {
            color: var(--accent-green);
        }
        .score-table .map-info {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 5px 12px;
            border-radius: var(--radius-pill);
            font-size: 0.76rem;
            font-weight: 650;
            white-space: nowrap;
        }
        .status-badge.live-badge {
            background: rgba(24, 229, 143, 0.12);
            color: var(--accent-green);
            border: 1px solid rgba(24, 229, 143, 0.3);
        }
        .status-badge.live-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        .status-badge.upcoming-badge {
            background: rgba(255, 181, 71, 0.1);
            color: var(--accent-amber);
            border: 1px solid rgba(255, 181, 71, 0.3);
        }
        .status-badge.done-badge {
            background: rgba(169, 163, 184, 0.08);
            color: var(--text-muted);
            border: 1px solid rgba(169, 163, 184, 0.2);
        }
        .watch-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 0.82rem;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .watch-link:hover {
            color: #5BE0FF;
            gap: 7px;
        }

        /* VS Cards Row */
        .vs-cards-row {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 18px;
            margin-bottom: 10px;
        }
        @media (max-width: 520px) {
            .vs-cards-row {
                grid-template-columns: 1fr;
            }
        }
        .vs-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .vs-card:hover {
            border-color: var(--border-active);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .vs-card .vs-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }
        .vs-card .vs-card-header .game-tag {
            font-size: 0.75rem;
            font-weight: 650;
            color: var(--accent-cyan);
            background: rgba(38, 217, 255, 0.08);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
        }
        .vs-card .vs-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .vs-card .vs-team {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            text-align: center;
            flex: 1;
            line-height: 1.3;
        }
        .vs-card .vs-score-big {
            font-weight: 800;
            font-size: 1.7rem;
            color: #fff;
            text-align: center;
            letter-spacing: 0.05em;
            min-width: 60px;
        }
        .vs-card .vs-score-big.live-score {
            color: var(--accent-green);
            text-shadow: 0 0 18px rgba(24, 229, 143, 0.5);
        }
        .vs-card .vs-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* Completed scores accordion */
        .accordion-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .accordion-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .accordion-item:hover {
            border-color: var(--border-medium);
        }
        .accordion-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 15px 18px;
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.92rem;
            cursor: pointer;
            border: none;
            text-align: left;
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .accordion-trigger:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .accordion-trigger .accordion-arrow {
            transition: transform var(--transition-base);
            color: var(--text-muted);
            font-size: 0.75rem;
            flex-shrink: 0;
        }
        .accordion-item.open .accordion-trigger .accordion-arrow {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .accordion-content {
            display: none;
            padding: 0 18px 16px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .accordion-item.open .accordion-content {
            display: block;
        }
        .accordion-content .detail-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.84rem;
        }
        .accordion-content .detail-row span {
            color: var(--text-muted);
        }
        .accordion-content .detail-row strong {
            color: var(--text-primary);
        }
        .winner-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            font-weight: 700;
            background: rgba(24, 229, 143, 0.1);
            color: var(--accent-green);
            border: 1px solid rgba(24, 229, 143, 0.25);
        }

        /* Data freshness */
        .data-freshness-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: rgba(24, 22, 34, 0.6);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            flex-wrap: wrap;
            font-size: 0.88rem;
            color: var(--text-secondary);
        }
        .data-freshness-card .fresh-icon {
            color: var(--accent-green);
            font-size: 1.2rem;
        }
        .data-freshness-card strong {
            color: #fff;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            padding: 18px 16px;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }
        .review-card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), #4C1D95);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 650;
            color: #fff;
            font-size: 0.9rem;
        }
        .review-card .review-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .review-card .review-stars {
            color: var(--accent-amber);
            font-size: 0.78rem;
            letter-spacing: 1px;
        }
        .review-card .review-body {
            color: var(--text-secondary);
            font-size: 0.86rem;
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .review-card .review-meta {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-width: 800px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-medium);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 16px 18px;
            background: transparent;
            color: var(--text-primary);
            font-weight: 650;
            font-size: 0.95rem;
            cursor: pointer;
            border: none;
            text-align: left;
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-question .faq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-cyan);
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(38, 217, 255, 0.4);
        }
        .faq-answer {
            display: none;
            padding: 0 18px 16px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            margin: 0 18px;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-dot {
            background: var(--accent-green);
            box-shadow: 0 0 10px rgba(24, 229, 143, 0.5);
        }
        .faq-question .faq-chevron {
            transition: transform var(--transition-base);
            color: var(--text-muted);
            font-size: 0.7rem;
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-chevron {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }

        /* CTA */
        .cta-card {
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(124, 58, 237, 0.35);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-lg), 0 0 40px rgba(124, 58, 237, 0.15);
            position: relative;
            overflow: hidden;
        }
        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 65%);
            pointer-events: none;
        }
        .cta-card h3 {
            font-size: 1.4rem;
            font-weight: 750;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }
        .cta-card .btn-primary-lg {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, var(--brand-purple), #5B21B6);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all var(--transition-base);
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
            text-decoration: none;
        }
        .cta-card .btn-primary-lg:hover {
            background: linear-gradient(135deg, var(--brand-purple-light), var(--brand-purple));
            box-shadow: 0 0 32px rgba(124, 58, 237, 0.6);
            transform: translateY(-2px);
            color: #fff;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #0C0A10;
            border-top: 1px solid rgba(124, 58, 237, 0.2);
            padding: 50px 0 28px;
            margin-top: 10px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        .footer-col h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.82rem;
            transition: color var(--transition-fast);
            text-decoration: none;
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* Utility */
        .text-center {
            text-align: center;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .page-hero {
                padding: 110px 0 40px;
            }
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .hero-quick-stats {
                gap: 8px;
            }
            .hero-quick-stat {
                padding: 6px 12px;
                font-size: 0.78rem;
            }
            .filter-bar {
                gap: 6px;
            }
            .filter-chip {
                padding: 6px 12px;
                font-size: 0.78rem;
            }
            .score-table {
                min-width: 600px;
                font-size: 0.78rem;
            }
            .score-table thead th,
            .score-table tbody td {
                padding: 10px 10px;
            }
            .vs-cards-row {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .cta-card {
                padding: 28px 20px;
            }
            .cta-card h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .page-hero {
                padding: 100px 0 32px;
            }
            .page-hero h1 {
                font-size: 1.45rem;
            }
            .hero-badge-row {
                gap: 6px;
            }
            .hero-badge {
                font-size: 0.72rem;
                padding: 5px 10px;
            }
            .filter-bar {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                gap: 6px;
                padding-bottom: 4px;
                scrollbar-width: none;
            }
            .filter-bar::-webkit-scrollbar {
                display: none;
            }
            .score-table {
                min-width: 500px;
                font-size: 0.72rem;
            }
            .score-table .score-display {
                font-size: 0.95rem;
            }
            .vs-card .vs-score-big {
                font-size: 1.3rem;
            }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #101014;
            --bg-secondary: #121018;
            --bg-card: #181622;
            --bg-card-alt: #1E1B2B;
            --purple: #7C3AED;
            --purple-glow: rgba(124, 58, 237, 0.35);
            --green: #18E58F;
            --green-glow: rgba(24, 229, 143, 0.3);
            --cyan: #26D9FF;
            --cyan-glow: rgba(38, 217, 255, 0.25);
            --amber: #FFB547;
            --amber-glow: rgba(255, 181, 71, 0.3);
            --text-body: #EDEAF7;
            --text-muted: #A9A3B8;
            --text-weak: #746F86;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-medium: rgba(255, 255, 255, 0.12);
            --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(124, 58, 237, 0.12);
            --shadow-elevated: 0 8px 48px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(124, 58, 237, 0.18);
            --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.2);
            --radius-card: 24px;
            --radius-card-lg: 30px;
            --radius-badge: 999px;
            --transition-fast: 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
            --transition-smooth: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Arial', sans-serif;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-body);
            background-color: var(--bg-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }
        button:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 3px;
            border-radius: 8px;
        }
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: 1rem;
        }
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
            border-radius: 6px;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* ========== HEADER / NAVIGATION ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 12px 0;
            background: rgba(16, 16, 20, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(14, 14, 18, 0.94);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
            padding: 8px 0;
            border-bottom-color: rgba(255, 255, 255, 0.14);
        }
        .nav-inner {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .nav-inner {
                padding: 0 16px;
            }
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 750;
            font-size: 1.22rem;
            color: #fff;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            opacity: 0.85;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--purple) 0%, #5B21B6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #fff;
            box-shadow: 0 0 18px var(--purple-glow);
            flex-shrink: 0;
        }
        .site-header.scrolled .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            font-size: 0.85rem;
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled .nav-logo {
            font-size: 1.08rem;
            transition: all var(--transition-smooth);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }
        .nav-links a {
            display: inline-block;
            padding: 9px 16px;
            border-radius: 10px;
            font-size: 0.92rem;
            font-weight: 550;
            color: var(--text-muted);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.015em;
            position: relative;
        }
        .nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-links a.active {
            color: #fff;
            background: rgba(124, 58, 237, 0.2);
            box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.35);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            border-radius: var(--radius-badge);
            font-weight: 650;
            font-size: 0.9rem;
            background: linear-gradient(135deg, var(--purple) 0%, #5B21B6 100%);
            color: #fff;
            box-shadow: 0 0 22px var(--purple-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 32px rgba(124, 58, 237, 0.5), 0 4px 14px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
        }
        .desktop-only {
            display: inline-flex;
        }
        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .desktop-only {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(18, 18, 22, 0.97);
                backdrop-filter: blur(24px);
                -webkit-backdrop-filter: blur(24px);
                border-bottom: 1px solid var(--border-medium);
                padding: 16px 24px;
                gap: 4px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
                z-index: 999;
            }
            .nav-links.mobile-open a {
                padding: 12px 16px;
                font-size: 1rem;
                border-radius: 12px;
                width: 100%;
            }
        }
        @media (max-width: 520px) {
            .nav-logo {
                font-size: 1rem;
                gap: 6px;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                border-radius: 10px;
                font-size: 0.85rem;
            }
        }

        /* ========== SECTION SPACING ========== */
        .section {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .section {
                padding: 52px 0;
            }
        }
        @media (max-width: 520px) {
            .section {
                padding: 40px 0;
            }
        }
        .section-sm {
            padding: 48px 0;
        }
        @media (max-width: 768px) {
            .section-sm {
                padding: 36px 0;
            }
        }

        /* ========== HERO ========== */
        .hero-inner-page {
            position: relative;
            padding: 160px 0 90px;
            background: linear-gradient(180deg, #1a1528 0%, #101014 100%);
            overflow: hidden;
        }
        .hero-inner-page::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.22;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
        }
        .hero-inner-page::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .hero-inner-content .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 18px;
        }
        .hero-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
            color: var(--text-muted);
        }
        .hero-badge.hot {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(255, 181, 71, 0.2));
            border-color: rgba(255, 181, 71, 0.4);
            color: var(--amber);
        }
        .hero-inner-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.12;
            color: #fff;
            letter-spacing: 0.01em;
            margin-bottom: 16px;
        }
        .hero-inner-content h1 .highlight {
            background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-inner-content .hero-sub {
            font-size: 1.12rem;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .hero-inner-content .hero-cta-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-badge);
            font-weight: 650;
            font-size: 0.95rem;
            background: linear-gradient(135deg, var(--purple) 0%, #5B21B6 100%);
            color: #fff;
            box-shadow: 0 0 22px var(--purple-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 36px rgba(124, 58, 237, 0.5), 0 4px 16px rgba(0, 0, 0, 0.45);
            background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
        }
        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-badge);
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(38, 217, 255, 0.45);
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
        }
        .btn-glass:hover {
            background: rgba(38, 217, 255, 0.1);
            border-color: var(--cyan);
            box-shadow: 0 0 20px rgba(38, 217, 255, 0.2);
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .hero-inner-page {
                padding: 130px 0 60px;
            }
            .hero-inner-content h1 {
                font-size: 2.2rem;
            }
            .hero-inner-content .hero-sub {
                font-size: 0.95rem;
                max-width: 100%;
            }
            .btn-primary,
            .btn-glass {
                padding: 11px 22px;
                font-size: 0.88rem;
            }
        }
        @media (max-width: 520px) {
            .hero-inner-page {
                padding: 115px 0 44px;
            }
            .hero-inner-content h1 {
                font-size: 1.7rem;
            }
            .hero-inner-content .hero-sub {
                font-size: 0.88rem;
            }
            .btn-primary,
            .btn-glass {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.85rem;
            }
        }

        /* ========== CARDS ========== */
        .card-dark {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            overflow: hidden;
        }
        .card-dark:hover {
            box-shadow: var(--shadow-elevated);
            border-color: var(--border-medium);
            transform: translateY(-2px);
        }
        .card-dark-alt {
            background: var(--bg-card-alt);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            overflow: hidden;
        }
        .card-dark-alt:hover {
            box-shadow: var(--shadow-elevated);
            border-color: rgba(124, 58, 237, 0.25);
            transform: translateY(-2px);
        }
        .card-img-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }
        .card-img-wrap img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .card-dark:hover .card-img-wrap img,
        .card-dark-alt:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(16, 16, 20, 0.85) 0%, rgba(16, 16, 20, 0.2) 50%, transparent 100%);
        }
        .card-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            background: rgba(124, 58, 237, 0.25);
            color: #b794f4;
            border: 1px solid rgba(124, 58, 237, 0.3);
        }
        .card-tag.green {
            background: rgba(24, 229, 143, 0.15);
            color: var(--green);
            border-color: rgba(24, 229, 143, 0.3);
        }
        .card-tag.cyan {
            background: rgba(38, 217, 255, 0.15);
            color: var(--cyan);
            border-color: rgba(38, 217, 255, 0.3);
        }
        .card-tag.amber {
            background: rgba(255, 181, 71, 0.18);
            color: var(--amber);
            border-color: rgba(255, 181, 71, 0.35);
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-size: 2rem;
            font-weight: 760;
            color: #fff;
            letter-spacing: 0.01em;
            margin-bottom: 8px;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.65;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.55rem;
            }
            .section-subtitle {
                font-size: 0.88rem;
            }
        }

        /* ========== BADGES & STATUS ========== */
        .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 5px;
            flex-shrink: 0;
        }
        .status-dot.live {
            background: var(--green);
            box-shadow: 0 0 10px var(--green-glow);
            animation: pulse-dot 1.6s infinite;
        }
        .status-dot.upcoming {
            background: var(--amber);
            box-shadow: 0 0 8px var(--amber-glow);
        }
        .status-dot.done {
            background: var(--text-weak);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 10px var(--green-glow);
            }
            50% {
                opacity: 0.4;
                box-shadow: 0 0 3px var(--green-glow);
            }
        }

        /* ========== TABLE STYLES ========== */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
        }
        .table-wrapper::-webkit-scrollbar {
            height: 6px;
        }
        .table-wrapper::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 3px;
        }
        .table-wrapper::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 3px;
        }
        table.data-table {
            width: 100%;
            min-width: 780px;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table.data-table thead th {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-weight: 650;
            font-size: 0.8rem;
            letter-spacing: 0.04em;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 2px solid var(--border-medium);
            position: sticky;
            top: 0;
        }
        table.data-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-body);
            white-space: nowrap;
            font-size: 0.88rem;
        }
        table.data-table tbody tr {
            transition: background var(--transition-fast);
        }
        table.data-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        table.data-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: var(--border-medium);
        }
        .faq-question {
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 650;
            font-size: 0.95rem;
            color: #fff;
            user-select: none;
        }
        .faq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--purple);
            flex-shrink: 0;
            box-shadow: 0 0 8px var(--purple-glow);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px 0 40px;
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
            background: rgba(255, 255, 255, 0.015);
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 18px 40px;
        }
        .faq-item.open {
            border-color: rgba(124, 58, 237, 0.35);
            box-shadow: 0 0 16px rgba(124, 58, 237, 0.1);
        }

        /* ========== FORM ========== */
        .form-card {
            background: var(--bg-card);
            border: 1px solid rgba(124, 58, 237, 0.3);
            border-radius: var(--radius-card-lg);
            padding: 40px;
            box-shadow: var(--shadow-elevated), 0 0 40px rgba(124, 58, 237, 0.08);
            position: relative;
            overflow: hidden;
        }
        .form-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .form-input {
            width: 100%;
            padding: 13px 16px;
            border-radius: 12px;
            border: 1px solid var(--border-medium);
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
            font-size: 0.92rem;
            transition: all var(--transition-fast);
        }
        .form-input:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 4px rgba(38, 217, 255, 0.08);
            background: rgba(255, 255, 255, 0.07);
        }
        .form-input::placeholder {
            color: var(--text-weak);
        }
        textarea.form-input {
            resize: vertical;
            min-height: 100px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0c0c10;
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 20px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
        }
        .footer-col h5 {
            font-size: 0.95rem;
            font-weight: 680;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.84rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--cyan);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.78rem;
            color: var(--text-weak);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--cyan);
        }

        /* ========== UTILITY ========== */
        .text-gradient-purple {
            background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .divider {
            height: 1px;
            background: var(--border-subtle);
            margin: 20px 0;
        }
        .glow-border {
            box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2), 0 0 20px rgba(124, 58, 237, 0.08);
        }
        @media (max-width: 768px) {
            .hide-mobile {
                display: none;
            }
        }
