/* roulang page: index */
:root {
            --bg-deep: #0B0E17;
            --bg-darker: #05070D;
            --bg-card: #151A26;
            --bg-nav: #0A0C14;
            --border-color: #1E2433;
            --border-glow: rgba(123, 47, 255, 0.35);
            --text-primary: #F0F3FA;
            --text-body: #AEB9CF;
            --text-muted: #6B7280;
            --neon-purple: #7B2FFF;
            --electric-cyan: #00E5FF;
            --alert-red: #FF4D6A;
            --gradient-brand: linear-gradient(135deg, #7B2FFF 0%, #00E5FF 100%);
            --gradient-hero-glow: radial-gradient(ellipse at center, rgba(123, 47, 255, 0.18) 0%, transparent 70%);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-pill: 50px;
            --shadow-card-hover: 0 8px 32px rgba(123, 47, 255, 0.28), 0 2px 8px rgba(0, 229, 255, 0.10);
            --shadow-glow-purple: 0 0 40px rgba(123, 47, 255, 0.30);
            --shadow-glow-cyan: 0 0 30px rgba(0, 229, 255, 0.25);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.7;
            font-size: 0.9375rem;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            background-image:
                radial-gradient(circle at 25% 20%, rgba(123, 47, 255, 0.04) 0%, transparent 55%),
                radial-gradient(circle at 75% 60%, rgba(0, 229, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 85%, rgba(255, 77, 106, 0.02) 0%, transparent 45%);
            background-attachment: fixed;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--electric-cyan);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--electric-cyan);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            max-width: 1280px;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        /* ========== TOP INFO BAR ========== */
        .top-info-bar {
            background-color: var(--bg-darker);
            border-bottom: 2px solid rgba(123, 47, 255, 0.30);
            padding: 6px 0;
            font-size: 0.8rem;
            color: var(--electric-cyan);
            position: relative;
            z-index: 1050;
            overflow: hidden;
        }
        .top-info-bar .scrolling-text {
            white-space: nowrap;
            animation: scrollLeft 22s linear infinite;
            display: inline-block;
        }
        @keyframes scrollLeft {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        .top-info-bar .info-right-links a {
            color: var(--electric-cyan);
            font-size: 0.8rem;
            margin-left: 18px;
            transition: color var(--transition-fast), text-shadow var(--transition-fast);
            white-space: nowrap;
        }
        .top-info-bar .info-right-links a:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }

        /* ========== MAIN NAVIGATION ========== */
        .main-nav {
            background-color: var(--bg-nav);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1040;
            padding: 10px 0;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }
        .main-nav .navbar-brand {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-weight: 800;
            font-size: 1.45rem;
            letter-spacing: 0.04em;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            text-shadow: none;
            filter: drop-shadow(0 0 12px rgba(123, 47, 255, 0.5));
            transition: filter var(--transition-fast);
            white-space: nowrap;
        }
        .main-nav .navbar-brand:hover {
            filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.7));
            color: transparent;
        }
        .main-nav .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: #fff;
            background: rgba(123, 47, 255, 0.12);
        }
        .main-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 2px;
            background: var(--electric-cyan);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
        }
        .btn-cta-nav {
            background: var(--gradient-brand);
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            white-space: nowrap;
            box-shadow: 0 0 18px rgba(123, 47, 255, 0.35);
        }
        .btn-cta-nav:hover {
            box-shadow: var(--shadow-glow-purple);
            transform: translateY(-1px);
            color: #fff;
            filter: brightness(1.15);
        }
        .navbar-toggler {
            border: 1px solid var(--border-color);
            background: rgba(21, 26, 38, 0.8);
            padding: 6px 10px;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(174,185,207,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        @media (max-width: 991.98px) {
            .main-nav .navbar-collapse {
                background: var(--bg-nav);
                border-radius: var(--radius-md);
                padding: 14px;
                margin-top: 8px;
                border: 1px solid var(--border-color);
            }
            .main-nav .nav-link {
                padding: 10px 14px;
            }
            .btn-cta-nav {
                margin-top: 8px;
                width: 100%;
                text-align: center;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            padding: 80px 0 90px;
            background: var(--bg-deep);
            overflow: hidden;
            min-height: 520px;
            display: flex;
            align-items: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -160px;
            width: 650px;
            height: 650px;
            background: var(--gradient-hero-glow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.7;
        }
        .hero-section .hero-bg-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            object-fit: cover;
            opacity: 0.14;
            z-index: 0;
            pointer-events: none;
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
        }
        .hero-section .container {
            position: relative;
            z-index: 1;
        }
        .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }
        .hero-metric-badge {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            min-width: 100px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .hero-metric-badge:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .hero-metric-badge .metric-value {
            font-family: 'Teko', 'Rajdhani', 'DIN', sans-serif;
            font-weight: 700;
            font-size: 2.6rem;
            line-height: 1;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            letter-spacing: 0.02em;
        }
        .hero-metric-badge .metric-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.03em;
        }
        .hero-metric-badge .pulse-dot {
            position: absolute;
            top: 10px;
            right: 12px;
            width: 8px;
            height: 8px;
            background: var(--alert-red);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--alert-red);
            animation: pulseDot 1.6s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%,
            100% {
                box-shadow: 0 0 6px var(--alert-red);
            }
            50% {
                box-shadow: 0 0 20px var(--alert-red), 0 0 40px rgba(255, 77, 106, 0.5);
            }
        }
        .hero-title {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-weight: 800;
            font-size: 3rem;
            color: #fff;
            line-height: 1.25;
            letter-spacing: 0.03em;
            margin-bottom: 12px;
        }
        .hero-title .highlight {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-body);
            margin-bottom: 20px;
            max-width: 520px;
            line-height: 1.6;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .hero-tag {
            background: rgba(21, 26, 38, 0.8);
            border: 1px solid var(--border-color);
            color: var(--electric-cyan);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: 0.82rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: default;
        }
        .hero-tag:hover {
            border-color: var(--electric-cyan);
            box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
            color: #fff;
        }
        .btn-hero-primary {
            display: inline-block;
            background: var(--gradient-brand);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 36px;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            letter-spacing: 0.04em;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 24px rgba(123, 47, 255, 0.40);
            text-transform: uppercase;
        }
        .btn-hero-primary:hover {
            box-shadow: var(--shadow-glow-purple);
            transform: translateY(-2px);
            filter: brightness(1.15);
            color: #fff;
        }
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 50px 0 60px;
                min-height: auto;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-section .hero-bg-img {
                width: 100%;
                opacity: 0.08;
            }
            .hero-metric-badge .metric-value {
                font-size: 2rem;
            }
            .hero-metrics {
                gap: 10px;
            }
            .hero-metric-badge {
                padding: 12px 14px;
                min-width: 70px;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .btn-hero-primary {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .hero-metrics {
                justify-content: center;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-padding {
            padding: 70px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 44px 0;
            }
        }
        .section-title {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 32px;
        }
        .section-title-group {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title-group .section-title {
            margin-bottom: 6px;
        }

        /* ========== SCORE SCROLL CARDS ========== */
        .score-scroll-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x proximity;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-color) transparent;
        }
        .score-scroll-row::-webkit-scrollbar {
            height: 5px;
        }
        .score-scroll-row::-webkit-scrollbar-track {
            background: transparent;
        }
        .score-scroll-row::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 10px;
        }
        .score-card-mini {
            flex: 0 0 auto;
            width: 280px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            scroll-snap-align: start;
            transition: all var(--transition-smooth);
            position: relative;
            cursor: pointer;
        }
        .score-card-mini:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .score-card-mini .live-badge {
            display: inline-block;
            background: var(--alert-red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.04em;
            animation: pulseDot 1.6s ease-in-out infinite;
            margin-bottom: 8px;
        }
        .score-card-mini .match-teams {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 4px;
        }
        .score-card-mini .match-score {
            font-family: 'Teko', 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--electric-cyan);
            letter-spacing: 0.04em;
        }
        .score-card-mini .match-info {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== GAME CATEGORY GRID ========== */
        .game-cat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 991.98px) {
            .game-cat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }
        @media (max-width: 520px) {
            .game-cat-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }
        .game-cat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            text-align: center;
            padding-bottom: 18px;
        }
        .game-cat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .game-cat-card .cat-thumb {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-color);
        }
        .game-cat-card .cat-name {
            font-weight: 700;
            color: #fff;
            font-size: 1.05rem;
            margin-top: 14px;
            letter-spacing: 0.03em;
        }
        .game-cat-card .cat-count {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ========== SCHEDULE TABS ========== */
        .schedule-tabs-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }
        .schedule-tab-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-body);
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .schedule-tab-btn:hover,
        .schedule-tab-btn.active {
            background: rgba(123, 47, 255, 0.18);
            border-color: var(--neon-purple);
            color: #fff;
            box-shadow: 0 0 12px rgba(123, 47, 255, 0.25);
        }
        .schedule-table-row {
            display: flex;
            align-items: center;
            padding: 14px 18px;
            background: var(--bg-card);
            border: 1px solid transparent;
            border-radius: var(--radius-sm);
            margin-bottom: 8px;
            transition: all var(--transition-fast);
            cursor: pointer;
            flex-wrap: wrap;
            gap: 8px;
        }
        .schedule-table-row:nth-child(even) {
            background: rgba(21, 26, 38, 0.5);
        }
        .schedule-table-row:hover {
            border-color: var(--border-glow);
            box-shadow: 0 4px 16px rgba(123, 47, 255, 0.18);
        }
        .schedule-table-row .sch-time {
            font-family: 'Teko', 'Rajdhani', sans-serif;
            font-weight: 600;
            color: var(--electric-cyan);
            font-size: 1.1rem;
            min-width: 70px;
        }
        .schedule-table-row .sch-event {
            font-weight: 600;
            color: #fff;
            flex: 1;
            min-width: 140px;
        }
        .schedule-table-row .sch-score {
            font-family: 'Teko', 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
            min-width: 60px;
            text-align: center;
        }
        .schedule-table-row .sch-status {
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            white-space: nowrap;
        }
        .status-live {
            background: rgba(255, 77, 106, 0.2);
            color: var(--alert-red);
            border: 1px solid rgba(255, 77, 106, 0.4);
        }
        .status-upcoming {
            background: rgba(0, 229, 255, 0.10);
            color: var(--electric-cyan);
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        .status-done {
            background: rgba(107, 114, 128, 0.15);
            color: var(--text-muted);
            border: 1px solid rgba(107, 114, 128, 0.3);
        }
        .schedule-tab-pane {
            display: none;
        }
        .schedule-tab-pane.active {
            display: block;
        }

        /* ========== TEAM RANKING ========== */
        .team-rank-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }
        .team-rank-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .team-rank-badge {
            font-family: 'Teko', 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            min-width: 50px;
            text-align: center;
        }
        .team-rank-info .team-name {
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
        }
        .team-rank-info .team-stat {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .player-badge-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .player-badge {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-pill);
            padding: 7px 16px;
            font-size: 0.82rem;
            color: var(--text-body);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .player-badge:hover {
            border-color: var(--electric-cyan);
            color: #fff;
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
        }
        .player-badge .kd-highlight {
            color: var(--electric-cyan);
            font-weight: 700;
            font-family: 'Teko', 'Rajdhani', sans-serif;
            font-size: 1.1rem;
        }

        /* ========== DUAL COLUMN MODULE ========== */
        .dual-col-module {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 768px) {
            .dual-col-module {
                grid-template-columns: 1fr;
            }
        }
        .info-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 22px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            height: 100%;
        }
        .info-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
        }
        .info-card .info-tag {
            display: inline-block;
            background: rgba(123, 47, 255, 0.2);
            color: var(--neon-purple);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            margin-bottom: 8px;
        }
        .info-card .info-title {
            font-weight: 700;
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        .info-card .info-desc {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.5;
        }

        /* ========== FEATURE BIG CARD ========== */
        .feature-big-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .feature-big-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .feature-big-card .feature-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-color);
        }
        .feature-big-card .feature-body {
            padding: 20px;
        }
        .feature-big-card .feature-body h3 {
            font-weight: 700;
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .feature-big-card .feature-body p {
            font-size: 0.88rem;
            color: var(--text-body);
            margin: 0;
        }

        /* ========== REVIEW CARDS ========== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 991.98px) {
            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .review-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 18px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 4px 18px rgba(123, 47, 255, 0.2);
        }
        .review-card .reviewer-name {
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
        }
        .review-card .reviewer-tag {
            font-size: 0.7rem;
            color: var(--electric-cyan);
            display: inline-block;
            margin-bottom: 6px;
        }
        .review-card .review-stars {
            color: #FFB800;
            font-size: 0.8rem;
            margin-bottom: 6px;
        }
        .review-card .review-text {
            font-size: 0.83rem;
            color: var(--text-body);
            line-height: 1.5;
        }
        .review-card .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ========== FAQ ACCORDION ========== */
        .faq-accordion .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-accordion .accordion-button {
            background: var(--bg-card);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            border: none;
            box-shadow: none;
            transition: all var(--transition-fast);
            border-radius: var(--radius-md) !important;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(123, 47, 255, 0.10);
            color: #fff;
            border-left: 3px solid var(--electric-cyan);
            border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
            border-color: var(--electric-cyan);
        }
        .faq-accordion .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }
        .faq-accordion .accordion-body {
            background: rgba(21, 26, 38, 0.6);
            color: var(--text-body);
            font-size: 0.9rem;
            padding: 16px 20px;
            line-height: 1.7;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(123, 47, 255, 0.12) 0%, rgba(0, 229, 255, 0.08) 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
        }
        .cta-section h2 {
            font-weight: 700;
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .cta-section p {
            color: var(--text-body);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .btn-cta-large {
            display: inline-block;
            background: var(--gradient-brand);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 40px;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            letter-spacing: 0.04em;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 24px rgba(123, 47, 255, 0.40);
            text-transform: uppercase;
        }
        .btn-cta-large:hover {
            box-shadow: var(--shadow-glow-purple);
            transform: translateY(-2px);
            filter: brightness(1.15);
            color: #fff;
        }

        /* ========== BOTTOM SHORTCUT GRID ========== */
        .shortcut-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 768px) {
            .shortcut-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .shortcut-grid {
                grid-template-columns: 1fr;
            }
        }
        .shortcut-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            color: var(--text-body);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .shortcut-item:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            color: #fff;
            transform: translateY(-2px);
        }
        .shortcut-item i {
            display: block;
            font-size: 1.6rem;
            color: var(--electric-cyan);
            margin-bottom: 8px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-darker);
            border-top: 2px solid rgba(123, 47, 255, 0.25);
            padding: 50px 0 0;
            color: var(--text-muted);
        }
        .site-footer .footer-brand {
            font-weight: 800;
            font-size: 1.3rem;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            letter-spacing: 0.04em;
            margin-bottom: 8px;
            display: inline-block;
        }
        .site-footer h5 {
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 14px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 6px;
        }
        .site-footer ul li a {
            color: var(--text-muted);
            font-size: 0.83rem;
            transition: color var(--transition-fast);
        }
        .site-footer ul li a:hover {
            color: var(--electric-cyan);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding: 18px 0;
            margin-top: 36px;
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 8px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--electric-cyan);
        }
        .footer-bottom .beian-info {
            margin-top: 6px;
            font-size: 0.75rem;
            color: #555;
        }

        /* ========== UTILITY ========== */
        .text-cyan {
            color: var(--electric-cyan);
        }
        .text-purple {
            color: var(--neon-purple);
        }
        .text-white {
            color: #fff;
        }
        .fw-800 {
            font-weight: 800;
        }
        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--neon-purple), var(--electric-cyan), transparent);
            margin: 40px 0;
            border: none;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            .cta-section {
                padding: 30px 20px;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
        }

/* roulang page: category2 */
:root {
            --bg-deep: #0B0E17;
            --bg-surface: #151A26;
            --bg-nav: #0A0C14;
            --border-color: #1E2433;
            --text-primary: #F0F3FA;
            --text-body: #AEB9CF;
            --text-muted: #6B7280;
            --brand-purple: #7B2FFF;
            --brand-cyan: #00E5FF;
            --accent-red: #FF4D6A;
            --accent-gold: #F0C040;
            --accent-green: #2ED573;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --radius-pill: 50px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.35);
            --shadow-purple: 0 8px 28px rgba(123, 47, 255, 0.25);
            --shadow-cyan: 0 0 20px rgba(0, 229, 255, 0.15);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-mono: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 30% 15%, rgba(123, 47, 255, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 229, 255, 0.04) 0%, transparent 50%);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        /* Top info bar */
        .top-info-bar {
            background: #05070D;
            border-bottom: 2px solid rgba(0, 229, 255, 0.25);
            padding: 6px 0;
            font-size: 0.78rem;
            color: var(--brand-cyan);
            letter-spacing: 0.3px;
        }
        .top-info-bar .scrolling-text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .top-info-bar .info-link {
            color: var(--brand-cyan);
            font-size: 0.75rem;
            transition: color var(--transition-fast);
        }
        .top-info-bar .info-link:hover {
            color: #fff;
        }

        /* Main Nav */
        .main-nav {
            background: var(--bg-nav);
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
            position: sticky;
            top: 0;
            z-index: 1050;
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--brand-purple) 10%, var(--brand-cyan) 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 18px rgba(123, 47, 255, 0.5);
            transition: all var(--transition-smooth);
        }
        .navbar-brand:hover {
            text-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
            transform: scale(1.03);
        }
        .main-nav .nav-link {
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: #fff;
            background: rgba(123, 47, 255, 0.12);
        }
        .main-nav .nav-link.active {
            color: #fff;
            background: rgba(123, 47, 255, 0.2);
            box-shadow: 0 0 14px rgba(123, 47, 255, 0.3);
            font-weight: 600;
        }
        .btn-cta-nav {
            display: inline-block;
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.6px;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            color: #fff;
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(123, 47, 255, 0.35);
            white-space: nowrap;
        }
        .btn-cta-nav:hover {
            box-shadow: 0 6px 24px rgba(0, 229, 255, 0.5);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }
        .navbar-toggler {
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 6px 10px;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(174, 185, 207, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Page Hero */
        .page-hero {
            position: relative;
            background: linear-gradient(170deg, #0A0C18 0%, #0F1324 40%, #0B0E17 100%);
            padding: 70px 0 60px;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
            filter: saturate(0.6) brightness(0.7);
        }
        .page-hero::after {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(123, 47, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }
        .page-hero .hero-content {
            position: relative;
            z-index: 1;
        }
        .page-hero .hero-badge {
            display: inline-block;
            padding: 5px 16px;
            border-radius: var(--radius-pill);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.8px;
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.3);
            color: var(--brand-cyan);
            margin-bottom: 16px;
        }
        .page-hero h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .page-hero h1 .highlight {
            background: linear-gradient(135deg, var(--brand-purple) 10%, var(--brand-cyan) 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-hero .hero-sub {
            font-size: 1.05rem;
            color: var(--text-body);
            max-width: 600px;
            line-height: 1.6;
        }
        .page-hero .hero-stats-row {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 24px;
        }
        .page-hero .hero-stat-item {
            background: rgba(21, 26, 38, 0.7);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            min-width: 130px;
            text-align: center;
            backdrop-filter: blur(8px);
        }
        .page-hero .hero-stat-item .stat-num {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-cyan);
            letter-spacing: 0.5px;
        }
        .page-hero .hero-stat-item .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
            letter-spacing: 0.3px;
        }

        /* Section common */
        .section-block {
            padding: 70px 0;
        }
        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1.2px;
            color: var(--brand-cyan);
            text-transform: uppercase;
            margin-bottom: 8px;
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            background: rgba(0, 229, 255, 0.08);
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        .section-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .section-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 640px;
            line-height: 1.6;
        }

        /* Team Cards Grid */
        .team-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            position: relative;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-purple);
            border-color: rgba(123, 47, 255, 0.4);
        }
        .team-card .rank-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 2;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            font-family: var(--font-mono);
        }
        .rank-badge.rank-1 {
            background: linear-gradient(135deg, #F0C040, #E8A820);
            box-shadow: 0 0 16px rgba(240, 192, 64, 0.5);
        }
        .rank-badge.rank-2 {
            background: linear-gradient(135deg, #B0B8C8, #8890A0);
            box-shadow: 0 0 12px rgba(176, 184, 200, 0.4);
        }
        .rank-badge.rank-3 {
            background: linear-gradient(135deg, #C8925A, #A87040);
            box-shadow: 0 0 10px rgba(200, 146, 90, 0.4);
        }
        .rank-badge.rank-normal {
            background: rgba(21, 26, 38, 0.9);
            border: 2px solid var(--border-color);
            color: var(--text-body);
            font-size: 0.85rem;
        }
        .team-card .card-img-wrap {
            position: relative;
            height: 160px;
            overflow: hidden;
            background: #0D1120;
        }
        .team-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
            opacity: 0.75;
        }
        .team-card:hover .card-img-wrap img {
            transform: scale(1.06);
            opacity: 0.9;
        }
        .team-card .card-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, var(--bg-surface) 100%);
            z-index: 1;
        }
        .team-card .card-body-custom {
            padding: 16px 18px 20px;
            position: relative;
            z-index: 2;
        }
        .team-card .team-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .team-card .team-game {
            font-size: 0.78rem;
            color: var(--brand-cyan);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .team-card .team-stats-mini {
            display: flex;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--text-body);
            flex-wrap: wrap;
        }
        .team-card .team-stats-mini span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .team-card .win-rate-high {
            color: var(--accent-green);
            font-weight: 600;
        }
        .team-card .win-rate-mid {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* Player Table */
        .player-table-wrap {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .player-table-wrap .table {
            margin: 0;
            color: var(--text-body);
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .player-table-wrap .table thead th {
            background: #0D1120;
            color: var(--brand-cyan);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.6px;
            padding: 14px 16px;
            border-bottom: 2px solid var(--border-color);
            white-space: nowrap;
            text-transform: uppercase;
        }
        .player-table-wrap .table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(30, 36, 51, 0.6);
            vertical-align: middle;
            white-space: nowrap;
        }
        .player-table-wrap .table tbody tr {
            transition: background var(--transition-fast);
        }
        .player-table-wrap .table tbody tr:hover {
            background: rgba(123, 47, 255, 0.06);
        }
        .player-table-wrap .table tbody tr:nth-child(even) {
            background: rgba(21, 26, 38, 0.5);
        }
        .player-table-wrap .table tbody tr:nth-child(even):hover {
            background: rgba(123, 47, 255, 0.08);
        }
        .kda-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.85rem;
            font-family: var(--font-mono);
        }
        .kda-high {
            background: rgba(46, 213, 115, 0.15);
            color: var(--accent-green);
        }
        .kda-good {
            background: rgba(0, 229, 255, 0.12);
            color: var(--brand-cyan);
        }
        .kda-mid {
            background: rgba(240, 192, 64, 0.12);
            color: var(--accent-gold);
        }
        .table-responsive-custom {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
        }
        .table-responsive-custom::-webkit-scrollbar {
            height: 6px;
        }
        .table-responsive-custom::-webkit-scrollbar-track {
            background: var(--bg-deep);
            border-radius: 3px;
        }
        .table-responsive-custom::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 3px;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 32px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: linear-gradient(180deg, var(--brand-purple) 0%, var(--brand-cyan) 50%, var(--border-color) 100%);
            border-radius: 1px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 24px;
            padding: 16px 20px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: all var(--transition-smooth);
        }
        .timeline-item:hover {
            border-color: rgba(123, 47, 255, 0.4);
            box-shadow: 0 4px 16px rgba(123, 47, 255, 0.12);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -25px;
            top: 18px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-cyan);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
            z-index: 1;
        }
        .timeline-item.win::before {
            background: var(--accent-green);
            box-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
        }
        .timeline-item.loss::before {
            background: var(--accent-red);
            box-shadow: 0 0 10px rgba(255, 77, 106, 0.5);
        }
        .timeline-item .tl-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .timeline-item .tl-match {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .timeline-item .tl-result {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .tl-win {
            color: var(--accent-green);
        }
        .tl-loss {
            color: var(--accent-red);
        }
        .timeline-item .tl-event {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Reviews */
        .review-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            height: 100%;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: rgba(123, 47, 255, 0.3);
            box-shadow: 0 6px 20px rgba(123, 47, 255, 0.1);
            transform: translateY(-3px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-card .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .review-card .review-tag {
            font-size: 0.72rem;
            color: var(--brand-cyan);
            background: rgba(0, 229, 255, 0.08);
            padding: 2px 8px;
            border-radius: var(--radius-pill);
        }
        .review-card .review-stars {
            color: #F0C040;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        .review-card .review-text {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.6;
        }
        .review-card .review-time {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* FAQ */
        .accordion-custom .accordion-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .accordion-custom .accordion-item:hover {
            border-color: rgba(123, 47, 255, 0.35);
        }
        .accordion-custom .accordion-button {
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            border: none;
            box-shadow: none;
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            color: var(--brand-cyan);
            background: rgba(0, 229, 255, 0.04);
            box-shadow: none;
            border-left: 3px solid var(--brand-cyan);
        }
        .accordion-custom .accordion-button::after {
            filter: invert(0.7);
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: 0 0 0 2px rgba(123, 47, 255, 0.3);
        }
        .accordion-custom .accordion-body {
            color: var(--text-body);
            font-size: 0.9rem;
            line-height: 1.7;
            padding: 8px 20px 18px;
            border-top: 1px solid rgba(30, 36, 51, 0.5);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(160deg, #0F1328 0%, #0A0E1A 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60%;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .cta-section p {
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto 22px;
            font-size: 0.9rem;
        }
        .btn-primary-glow {
            display: inline-block;
            padding: 12px 32px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.7px;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            color: #fff;
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 6px 22px rgba(123, 47, 255, 0.4);
        }
        .btn-primary-glow:hover {
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.55);
            transform: translateY(-3px);
            filter: brightness(1.12);
            color: #fff;
        }
        .btn-outline-glow {
            display: inline-block;
            padding: 11px 28px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.6px;
            border: 2px solid var(--brand-cyan);
            color: var(--brand-cyan);
            background: transparent;
            transition: all var(--transition-smooth);
        }
        .btn-outline-glow:hover {
            background: rgba(0, 229, 255, 0.1);
            box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
            color: #fff;
            border-color: #fff;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-nav);
            border-top: 1px solid var(--border-color);
            padding: 48px 0 0;
            margin-top: 20px;
        }
        .site-footer .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            background: linear-gradient(135deg, var(--brand-purple) 10%, var(--brand-cyan) 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .site-footer h5 {
            color: var(--text-primary);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 7px;
        }
        .site-footer ul li a {
            color: var(--text-muted);
            font-size: 0.83rem;
            transition: color var(--transition-fast);
        }
        .site-footer ul li a:hover {
            color: var(--brand-cyan);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding: 18px 0;
            margin-top: 32px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-bottom .beian-info {
            margin-top: 4px;
            font-size: 0.72rem;
            color: #5A6070;
        }
        .footer-bottom a {
            color: #5A6070;
            font-size: 0.72rem;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-cyan);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .page-hero .hero-stats-row {
                gap: 14px;
            }
            .page-hero .hero-stat-item {
                min-width: 100px;
                padding: 12px 14px;
            }
            .page-hero .hero-stat-item .stat-num {
                font-size: 1.5rem;
            }
            .cta-section {
                padding: 36px 24px;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 50px 0 40px;
            }
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .page-hero .hero-sub {
                font-size: 0.9rem;
            }
            .page-hero .hero-stats-row {
                gap: 10px;
            }
            .page-hero .hero-stat-item {
                min-width: 80px;
                padding: 10px 12px;
                flex: 1 1 auto;
            }
            .page-hero .hero-stat-item .stat-num {
                font-size: 1.3rem;
            }
            .page-hero .hero-stat-item .stat-label {
                font-size: 0.68rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .section-block {
                padding: 44px 0;
            }
            .team-card .card-img-wrap {
                height: 130px;
            }
            .timeline {
                padding-left: 26px;
            }
            .timeline-item::before {
                left: -20px;
                width: 8px;
                height: 8px;
            }
            .cta-section {
                padding: 30px 18px;
                border-radius: var(--radius-lg);
            }
            .cta-section h3 {
                font-size: 1.2rem;
            }
            .main-nav .nav-link {
                font-size: 0.85rem;
                padding: 6px 12px;
            }
            .btn-cta-nav {
                font-size: 0.78rem;
                padding: 7px 16px;
            }
        }
        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 1.4rem;
            }
            .page-hero .hero-stats-row {
                flex-direction: column;
                gap: 8px;
            }
            .page-hero .hero-stat-item {
                width: 100%;
                text-align: left;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 14px;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .team-card .card-img-wrap {
                height: 110px;
            }
            .review-card {
                padding: 16px 14px;
            }
            .cta-section {
                padding: 24px 14px;
            }
            .btn-primary-glow,
            .btn-outline-glow {
                display: block;
                width: 100%;
                text-align: center;
                margin-bottom: 8px;
            }
            .timeline {
                padding-left: 22px;
            }
            .timeline-item {
                padding: 12px 14px;
            }
            .timeline-item::before {
                left: -17px;
                width: 7px;
                height: 7px;
                top: 14px;
            }
            .page-hero .hero-badge {
                font-size: 0.7rem;
            }
            .player-table-wrap .table {
                font-size: 0.75rem;
            }
            .player-table-wrap .table thead th,
            .player-table-wrap .table tbody td {
                padding: 8px 10px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-deep: #0B0E17;
            --bg-card: #151A26;
            --bg-nav: #0A0C14;
            --bg-topbar: #05070D;
            --border-subtle: #1E2433;
            --text-primary: #F0F3FA;
            --text-body: #AEB9CF;
            --text-muted: #6B7280;
            --accent-purple: #7B2FFF;
            --accent-cyan: #00E5FF;
            --accent-red: #FF4D6A;
            --accent-green: #00D68F;
            --accent-orange: #FF9F43;
            --gradient-brand: linear-gradient(135deg, #7B2FFF 0%, #00E5FF 100%);
            --gradient-btn: linear-gradient(135deg, #7B2FFF 0%, #00D4F0 100%);
            --glow-purple: 0 8px 24px rgba(123, 47, 255, 0.25);
            --glow-cyan: 0 4px 16px rgba(0, 229, 255, 0.2);
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-pill: 50px;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-mono: 'Teko', 'Rajdhani', 'DIN', 'Roboto Mono', monospace;
            --section-gap: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-heading);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 30% 15%, rgba(123, 47, 255, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 40%, rgba(0, 229, 255, 0.03) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 75%, rgba(123, 47, 255, 0.03) 0%, transparent 50%);
            background-attachment: fixed;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            height: auto;
        }
        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== TOP BAR ========== */
        .top-info-bar {
            background: var(--bg-topbar);
            border-bottom: 2px solid rgba(0, 229, 255, 0.15);
            padding: 7px 0;
            font-size: 0.8rem;
            color: var(--accent-cyan);
            overflow: hidden;
            position: relative;
            z-index: 1030;
        }
        .top-info-bar .scrolling-text {
            display: inline-block;
            white-space: nowrap;
            animation: scrollLeft 20s linear infinite;
        }
        @keyframes scrollLeft {
            0% {
                transform: translateX(20%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        .top-info-bar .top-actions a {
            color: var(--accent-cyan);
            font-size: 0.8rem;
            margin-left: 18px;
            transition: color 0.2s, text-shadow 0.2s;
            white-space: nowrap;
        }
        .top-info-bar .top-actions a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
        }

        /* ========== MAIN NAV ========== */
        .main-nav {
            background: rgba(10, 12, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 8px 0;
            position: sticky;
            top: 0;
            z-index: 1025;
            transition: background 0.3s;
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.45rem;
            letter-spacing: 1px;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            text-shadow: none;
        }
        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-brand);
            border-radius: 2px;
            opacity: 0.7;
        }
        .main-nav .nav-link {
            color: var(--text-body) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 14px !important;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: #fff !important;
            background: rgba(123, 47, 255, 0.1);
        }
        .main-nav .nav-link.active {
            color: #fff !important;
            background: rgba(123, 47, 255, 0.2);
            box-shadow: inset 0 -2px 0 var(--accent-cyan);
        }
        .btn-cta-nav {
            display: inline-block;
            background: var(--gradient-btn);
            color: #fff !important;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(123, 47, 255, 0.3);
            text-transform: none;
        }
        .btn-cta-nav:hover {
            box-shadow: 0 6px 22px rgba(123, 47, 255, 0.5);
            transform: translateY(-2px);
            color: #fff !important;
            filter: brightness(1.1);
        }
        .navbar-toggler {
            border: 1px solid var(--border-subtle) !important;
            border-radius: 8px;
            padding: 6px 10px;
            background: rgba(21, 26, 38, 0.8);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23AEB9CF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-brand);
            border-radius: 4px;
        }
        .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        /* ========== HERO ========== */
        .hero-inner {
            position: relative;
            padding: 60px 0 50px;
            background: linear-gradient(180deg, rgba(11, 14, 23, 0.3) 0%, var(--bg-deep) 100%),
                url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            background-blend-mode: overlay;
            overflow: hidden;
        }
        .hero-inner::before {
            content: '';
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(123, 47, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
            z-index: 0;
        }
        .hero-inner .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero-inner h1 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .hero-inner h1 .accent {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-inner .hero-sub {
            font-size: 1rem;
            color: var(--text-body);
            margin-top: 12px;
            max-width: 550px;
            line-height: 1.6;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }
        .hero-tag {
            display: inline-block;
            background: rgba(21, 26, 38, 0.8);
            border: 1px solid var(--border-subtle);
            color: var(--text-body);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            transition: all 0.25s;
            cursor: default;
        }
        .hero-tag:hover {
            border-color: var(--accent-cyan);
            color: #fff;
            box-shadow: var(--glow-cyan);
        }
        .hero-tag.live-tag {
            border-color: var(--accent-red);
            color: var(--accent-red);
            animation: pulseLive 2s infinite;
        }
        @keyframes pulseLive {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 77, 106, 0);
            }
        }
        .hero-btn {
            display: inline-block;
            background: var(--gradient-btn);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 30px;
            border-radius: var(--radius-pill);
            margin-top: 20px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(123, 47, 255, 0.35);
        }
        .hero-btn:hover {
            box-shadow: 0 8px 28px rgba(123, 47, 255, 0.55);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.08);
        }

        /* ========== STAT BADGES ========== */
        .stat-badges-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 30px;
        }
        .stat-badge-card {
            background: rgba(21, 26, 38, 0.85);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            flex: 1 1 140px;
            min-width: 130px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }
        .stat-badge-card:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--glow-purple);
            transform: translateY(-3px);
        }
        .stat-badge-card .stat-num {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
        }
        .stat-badge-card .stat-num.accent-red {
            color: var(--accent-red);
        }
        .stat-badge-card .stat-num.accent-cyan {
            color: var(--accent-cyan);
        }
        .stat-badge-card .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ========== CARD BASE ========== */
        .card-esports {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .card-esports:hover {
            border-color: rgba(123, 47, 255, 0.5);
            box-shadow: var(--glow-purple);
            transform: translateY(-4px);
        }
        .card-esports .card-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .tag-live {
            background: rgba(255, 77, 106, 0.2);
            color: var(--accent-red);
            border: 1px solid rgba(255, 77, 106, 0.4);
        }
        .tag-upcoming {
            background: rgba(0, 229, 255, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        .tag-completed {
            background: rgba(107, 114, 128, 0.2);
            color: var(--text-muted);
            border: 1px solid rgba(107, 114, 128, 0.3);
        }
        .tag-tournament {
            background: rgba(123, 47, 255, 0.15);
            color: #b388ff;
            border: 1px solid rgba(123, 47, 255, 0.35);
        }
        .card-esports .card-title-sm {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .card-esports .card-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ========== SCHEDULE TABLE (PSEUDO) ========== */
        .schedule-table-wrap {
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
        }
        .schedule-row {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(30, 36, 51, 0.6);
            transition: all 0.25s;
            cursor: pointer;
            flex-wrap: wrap;
            gap: 12px;
        }
        .schedule-row:last-child {
            border-bottom: none;
        }
        .schedule-row:hover {
            background: rgba(123, 47, 255, 0.06);
            border-left: 3px solid var(--accent-cyan);
            padding-left: 17px;
        }
        .schedule-row .s-time {
            font-family: var(--font-mono);
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--accent-cyan);
            min-width: 65px;
            letter-spacing: 1px;
        }
        .schedule-row .s-league {
            font-size: 0.75rem;
            color: var(--text-muted);
            min-width: 80px;
            text-align: center;
            background: rgba(21, 26, 38, 0.6);
            padding: 3px 10px;
            border-radius: 10px;
            white-space: nowrap;
        }
        .schedule-row .s-teams {
            flex: 1;
            min-width: 180px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.95rem;
            text-align: center;
        }
        .schedule-row .s-teams .vs {
            color: var(--accent-purple);
            margin: 0 10px;
            font-weight: 800;
        }
        .schedule-row .s-status {
            min-width: 70px;
            text-align: center;
        }
        .schedule-row .s-status .status-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 5px;
            animation: breathe 1.6s infinite;
        }
        .status-dot.live-dot {
            background: var(--accent-red);
            box-shadow: 0 0 8px rgba(255, 77, 106, 0.7);
        }
        .status-dot.upcoming-dot {
            background: var(--accent-cyan);
        }
        .status-dot.done-dot {
            background: var(--text-muted);
            animation: none;
        }
        @keyframes breathe {
            0%,
            100% {
                box-shadow: 0 0 4px rgba(255, 77, 106, 0.5);
            }
            50% {
                box-shadow: 0 0 14px rgba(255, 77, 106, 1);
            }
        }
        .schedule-row .s-action {
            min-width: 70px;
            text-align: right;
        }
        .btn-sm-outline {
            display: inline-block;
            border: 1px solid var(--accent-cyan);
            color: var(--accent-cyan);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            transition: all 0.25s;
            background: transparent;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-sm-outline:hover {
            background: rgba(0, 229, 255, 0.1);
            color: #fff;
            box-shadow: var(--glow-cyan);
        }

        /* ========== FILTER CARDS ========== */
        .filter-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }
        .filter-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .filter-card:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--glow-purple);
            transform: translateY(-3px);
        }
        .filter-card .filter-icon {
            font-size: 2rem;
            margin-bottom: 8px;
            color: var(--accent-cyan);
        }
        .filter-card .filter-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }
        .filter-card .filter-count {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .filter-card.active-filter {
            border-color: var(--accent-cyan);
            box-shadow: var(--glow-cyan);
            background: rgba(0, 229, 255, 0.05);
        }

        /* ========== REMINDER SECTION ========== */
        .reminder-section {
            background: linear-gradient(135deg, rgba(21, 26, 38, 0.9) 0%, rgba(11, 14, 23, 0.95) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
        }
        .reminder-section::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .reminder-section .reminder-icon {
            font-size: 2.5rem;
            color: var(--accent-cyan);
            margin-bottom: 10px;
        }

        /* ========== NEWS LIST ========== */
        .news-card-sm {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 16px 18px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            transition: all 0.3s;
            cursor: pointer;
        }
        .news-card-sm:hover {
            border-color: rgba(123, 47, 255, 0.5);
            box-shadow: var(--glow-purple);
            transform: translateY(-2px);
        }
        .news-card-sm .news-thumb {
            width: 80px;
            height: 56px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-card-sm .news-info h6 {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
            margin: 0 0 4px;
            line-height: 1.3;
        }
        .news-card-sm .news-info .news-date {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ========== REVIEWS ========== */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all 0.3s;
            height: 100%;
        }
        .review-card:hover {
            border-color: rgba(123, 47, 255, 0.4);
            box-shadow: var(--glow-purple);
            transform: translateY(-2px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-brand);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
            background: rgba(107, 114, 128, 0.15);
            padding: 2px 8px;
            border-radius: 10px;
        }
        .review-stars {
            color: var(--accent-orange);
            font-size: 0.8rem;
        }
        .review-body {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.5;
        }

        /* ========== FAQ ========== */
        .accordion-esports .accordion-item {
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-esports .accordion-button {
            background: var(--bg-card);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            border-radius: var(--radius-lg) !important;
            transition: all 0.25s;
            box-shadow: none;
        }
        .accordion-esports .accordion-button:not(.collapsed) {
            background: rgba(21, 26, 38, 0.9);
            color: #fff;
            border-left: 3px solid var(--accent-cyan);
        }
        .accordion-esports .accordion-button::after {
            filter: invert(0.7);
        }
        .accordion-esports .accordion-button:focus {
            box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.25);
            border-color: var(--accent-cyan);
        }
        .accordion-esports .accordion-body {
            background: rgba(11, 14, 23, 0.6);
            color: var(--text-body);
            font-size: 0.88rem;
            line-height: 1.7;
            padding: 14px 20px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(123, 47, 255, 0.08) 0%, rgba(0, 229, 255, 0.06) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .cta-section h3 {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
        }
        .cta-section .btn-cta-lg {
            display: inline-block;
            background: var(--gradient-btn);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 36px;
            border-radius: var(--radius-pill);
            margin-top: 16px;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            box-shadow: 0 6px 24px rgba(123, 47, 255, 0.4);
            position: relative;
            z-index: 1;
        }
        .btn-cta-lg:hover {
            box-shadow: 0 10px 32px rgba(123, 47, 255, 0.6);
            transform: translateY(-2px);
            color: #fff;
            filter: brightness(1.1);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-nav);
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 30px;
            margin-top: var(--section-gap);
        }
        .site-footer .footer-brand {
            font-weight: 800;
            font-size: 1.3rem;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .site-footer h5 {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 12px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 6px;
        }
        .site-footer ul li a {
            color: var(--text-muted);
            font-size: 0.83rem;
            transition: color 0.2s;
        }
        .site-footer ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 6px;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .beian-info {
            margin-top: 6px;
            font-size: 0.72rem;
            color: #555;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-inner h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .stat-badges-row {
                gap: 10px;
            }
            .stat-badge-card {
                flex: 1 1 120px;
                min-width: 100px;
                padding: 12px 14px;
            }
            .stat-badge-card .stat-num {
                font-size: 1.6rem;
            }
            .schedule-row {
                padding: 12px 14px;
                gap: 8px;
            }
            .schedule-row .s-time {
                font-size: 0.95rem;
                min-width: 50px;
            }
            .schedule-row .s-teams {
                font-size: 0.85rem;
                min-width: 140px;
            }
            .filter-card-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 10px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-gap: 50px;
            }
            .hero-inner {
                padding: 40px 0 35px;
                text-align: center;
            }
            .hero-inner h1 {
                font-size: 1.8rem;
            }
            .hero-inner .hero-sub {
                margin: 10px auto 0;
                font-size: 0.9rem;
                max-width: 100%;
            }
            .hero-tags {
                justify-content: center;
            }
            .stat-badges-row {
                justify-content: center;
            }
            .stat-badge-card {
                flex: 1 1 90px;
                min-width: 85px;
            }
            .stat-badge-card .stat-num {
                font-size: 1.4rem;
            }
            .schedule-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .schedule-row .s-time {
                min-width: auto;
            }
            .schedule-row .s-teams {
                min-width: auto;
                text-align: left;
            }
            .schedule-row .s-action {
                text-align: left;
            }
            .filter-card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .reminder-section {
                padding: 20px 16px;
            }
            .news-card-sm {
                flex-direction: column;
            }
            .news-card-sm .news-thumb {
                width: 100%;
                height: 120px;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .hero-btn {
                padding: 10px 24px;
                font-size: 0.85rem;
            }
            .btn-cta-nav {
                padding: 7px 16px;
                font-size: 0.78rem;
            }
            .main-nav .nav-link {
                padding: 10px 12px !important;
            }
        }

        @media (max-width: 520px) {
            .hero-inner h1 {
                font-size: 1.5rem;
            }
            .stat-badges-row {
                gap: 6px;
            }
            .stat-badge-card {
                flex: 1 1 70px;
                min-width: 65px;
                padding: 10px 8px;
            }
            .stat-badge-card .stat-num {
                font-size: 1.2rem;
            }
            .stat-badge-card .stat-label {
                font-size: 0.68rem;
            }
            .filter-card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .filter-card {
                padding: 14px 10px;
            }
            .filter-card .filter-name {
                font-size: 0.85rem;
            }
            .review-card {
                padding: 14px;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .schedule-row .s-teams {
                font-size: 0.8rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg-deep: #0B0E17;
            --bg-card: #151A26;
            --bg-nav: #0A0C14;
            --bg-topbar: #05070D;
            --border-color: #1E2433;
            --border-glow: rgba(123, 47, 255, 0.35);
            --brand-purple: #7B2FFF;
            --brand-cyan: #00E5FF;
            --accent-red: #FF4D6A;
            --accent-amber: #F5A623;
            --accent-green: #2ED573;
            --text-primary: #F0F3FA;
            --text-body: #AEB9CF;
            --text-muted: #6B7280;
            --text-light: #C8CFE0;
            --gradient-brand: linear-gradient(135deg, #7B2FFF 0%, #00E5FF 100%);
            --gradient-hero-glow: radial-gradient(ellipse at 30% 50%, rgba(123, 47, 255, 0.22) 0%, transparent 60%),
            radial-gradient(ellipse at 70% 40%, rgba(0, 229, 255, 0.18) 0%, transparent 55%);
            --gradient-btn: linear-gradient(135deg, #7B2FFF 0%, #00E5FF 100%);
            --gradient-btn-hover: linear-gradient(135deg, #8F4AFF 0%, #33EAFF 100%);
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 8px 32px rgba(123, 47, 255, 0.28), 0 2px 8px rgba(0, 229, 255, 0.12);
            --shadow-btn-glow: 0 0 20px rgba(123, 47, 255, 0.40), 0 0 40px rgba(0, 229, 255, 0.25);
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --transition-base: all 0.25s ease;
            --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-mono: 'SF Mono', 'Roboto Mono', 'Consolas', 'Monaco', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            background-image:
                radial-gradient(ellipse at 25% 15%, rgba(123, 47, 255, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 60%, rgba(0, 229, 255, 0.04) 0%, transparent 50%);
            background-attachment: fixed;
        }

        a {
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== 顶部信息条 ========== */
        .top-info-bar {
            background: var(--bg-topbar);
            border-bottom: 2px solid rgba(0, 229, 255, 0.2);
            padding: 7px 0;
            font-size: 0.8rem;
            color: var(--brand-cyan);
            overflow: hidden;
        }
        .top-info-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }
        .top-info-bar .scrolling-tip {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 320px;
            animation: fadeInScroll 0.8s ease;
        }
        .top-info-bar .top-actions a {
            color: var(--brand-cyan);
            margin-left: 16px;
            font-size: 0.78rem;
            opacity: 0.85;
            transition: var(--transition-base);
        }
        .top-info-bar .top-actions a:hover {
            opacity: 1;
            color: #fff;
            text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
        }
        @keyframes fadeInScroll {
            from {
                opacity: 0;
                transform: translateX(-12px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-red);
            margin-right: 6px;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 77, 106, 0);
            }
        }

        /* ========== 主导航 ========== */
        .main-nav {
            background: var(--bg-nav);
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            z-index: 1000;
            position: sticky;
            top: 0;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.55rem;
            letter-spacing: 0.5px;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            text-shadow: none;
            transition: var(--transition-base);
        }
        .navbar-brand:hover {
            filter: brightness(1.2);
            transform: translateY(-1px);
        }
        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-brand);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .navbar-brand:hover::after {
            opacity: 1;
        }
        .main-nav .nav-link {
            color: var(--text-body) !important;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 16px !important;
            border-radius: var(--radius-sm);
            transition: var(--transition-base);
            letter-spacing: 0.3px;
            position: relative;
            white-space: nowrap;
        }
        .main-nav .nav-link:hover {
            color: #fff !important;
            background: rgba(123, 47, 255, 0.1);
        }
        .main-nav .nav-link.active {
            color: #fff !important;
            background: rgba(123, 47, 255, 0.18);
            box-shadow: inset 0 0 0 1px rgba(123, 47, 255, 0.4);
        }
        .btn-cta-nav {
            display: inline-block;
            padding: 9px 22px;
            border-radius: var(--radius-pill);
            background: var(--gradient-btn);
            color: #fff !important;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.4px;
            white-space: nowrap;
            border: none;
            transition: var(--transition-smooth);
            box-shadow: 0 0 16px rgba(123, 47, 255, 0.3);
        }
        .btn-cta-nav:hover {
            background: var(--gradient-btn-hover);
            box-shadow: var(--shadow-btn-glow);
            transform: translateY(-2px);
            color: #fff;
        }
        .navbar-toggler {
            border: 1px solid var(--border-color) !important;
            border-radius: var(--radius-sm);
            padding: 6px 10px;
            background: rgba(255, 255, 255, 0.03);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,207,224,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ========== Hero - 全宽比分数据面板 ========== */
        .hero-score-hall {
            position: relative;
            padding: 70px 0 60px;
            background: var(--bg-deep);
            background-image:
                var(--gradient-hero-glow),
                url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-score-hall::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(11, 14, 23, 0.78);
            z-index: 1;
        }
        .hero-score-hall .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .hero-score-hall .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 24px;
        }
        .hero-metric-badge {
            background: rgba(21, 26, 38, 0.85);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            min-width: 130px;
            flex: 1 1 auto;
            text-align: center;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .hero-metric-badge::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(123, 47, 255, 0.08) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.5s;
        }
        .hero-metric-badge:hover::after {
            opacity: 1;
        }
        .hero-metric-badge:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .hero-metric-badge .metric-value {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            letter-spacing: -1px;
        }
        .hero-metric-badge .metric-value.live {
            background: none;
            -webkit-text-fill-color: var(--accent-red);
            color: var(--accent-red);
            animation: pulse-text 2s ease-in-out infinite;
        }
        @keyframes pulse-text {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        .hero-metric-badge .metric-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.5px;
        }
        .hero-score-hall .hero-title {
            font-family: var(--font-heading);
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.8px;
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .hero-score-hall .hero-title .highlight {
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-score-hall .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            max-width: 560px;
            margin-bottom: 22px;
            line-height: 1.6;
        }
        .hero-score-hall .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .hero-tag {
            display: inline-block;
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            background: rgba(21, 26, 38, 0.8);
            border: 1px solid var(--border-color);
            font-size: 0.82rem;
            color: var(--text-light);
            transition: var(--transition-base);
            cursor: pointer;
            white-space: nowrap;
        }
        .hero-tag:hover {
            border-color: var(--brand-cyan);
            color: #fff;
            background: rgba(0, 229, 255, 0.08);
            box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
        }
        .hero-tag.live-tag {
            border-color: var(--accent-red);
            color: var(--accent-red);
            animation: pulse-border 2s ease-in-out infinite;
        }
        @keyframes pulse-border {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 106, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(255, 77, 106, 0);
            }
        }
        .btn-hero-main {
            display: inline-block;
            padding: 13px 32px;
            border-radius: var(--radius-pill);
            background: var(--gradient-btn);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border: none;
            transition: var(--transition-smooth);
            box-shadow: 0 0 20px rgba(123, 47, 255, 0.35);
            text-transform: uppercase;
        }
        .btn-hero-main:hover {
            background: var(--gradient-btn-hover);
            box-shadow: var(--shadow-btn-glow);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: 70px 0;
        }
        .section-block.alt-bg {
            background: rgba(10, 12, 20, 0.5);
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.4px;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header .section-title {
            position: relative;
            display: inline-block;
        }
        .section-header .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            border-radius: 3px;
            background: var(--gradient-brand);
        }

        /* ========== 游戏分类Tab ========== */
        .game-tabs-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 36px;
            overflow-x: auto;
            padding-bottom: 6px;
            -webkit-overflow-scrolling: touch;
        }
        .game-tab-btn {
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            background: rgba(21, 26, 38, 0.7);
            border: 1px solid var(--border-color);
            color: var(--text-body);
            font-weight: 600;
            font-size: 0.88rem;
            white-space: nowrap;
            transition: var(--transition-smooth);
            cursor: pointer;
            letter-spacing: 0.3px;
        }
        .game-tab-btn:hover {
            border-color: var(--brand-cyan);
            color: #fff;
            background: rgba(0, 229, 255, 0.06);
        }
        .game-tab-btn.active {
            background: var(--gradient-brand);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 0 18px rgba(123, 47, 255, 0.4);
        }

        /* ========== 对局详情卡片 ========== */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }
        .match-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .match-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            border-radius: 4px 0 0 4px;
            background: var(--brand-cyan);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .match-card.live-match::before {
            background: var(--accent-red);
            opacity: 1;
            animation: pulse-border-vertical 2s ease-in-out infinite;
        }
        @keyframes pulse-border-vertical {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(255, 77, 106, 0.6);
            }
            50% {
                box-shadow: 0 0 18px rgba(255, 77, 106, 0.15);
            }
        }
        .match-card.ended-match::before {
            background: var(--text-muted);
            opacity: 0.6;
        }
        .match-card.upcoming-match::before {
            background: var(--accent-amber);
            opacity: 0.8;
        }
        .match-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .match-card .match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .match-card .game-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            background: rgba(123, 47, 255, 0.2);
            color: var(--brand-cyan);
            border: 1px solid rgba(123, 47, 255, 0.35);
            white-space: nowrap;
        }
        .match-card .status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .status-badge.live-status {
            background: rgba(255, 77, 106, 0.2);
            color: var(--accent-red);
            border: 1px solid rgba(255, 77, 106, 0.4);
        }
        .status-badge.ended-status {
            background: rgba(107, 114, 128, 0.15);
            color: var(--text-muted);
            border: 1px solid rgba(107, 114, 128, 0.3);
        }
        .status-badge.upcoming-status {
            background: rgba(245, 166, 35, 0.15);
            color: var(--accent-amber);
            border: 1px solid rgba(245, 166, 35, 0.35);
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .match-card .team-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            flex: 1;
            min-width: 80px;
            text-align: center;
        }
        .match-card .score-display {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--text-primary);
            text-align: center;
            min-width: 70px;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .match-card.live-match .score-display {
            background: none;
            -webkit-text-fill-color: var(--accent-red);
            color: var(--accent-red);
            animation: pulse-text 1.8s ease-in-out infinite;
        }
        .match-card .match-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .match-card .match-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .match-card .match-meta i {
            font-size: 0.7rem;
            color: var(--brand-cyan);
        }
        .match-card .btn-detail-sm {
            display: inline-block;
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            background: transparent;
            border: 1px solid var(--brand-cyan);
            color: var(--brand-cyan);
            font-size: 0.8rem;
            font-weight: 600;
            transition: var(--transition-base);
            text-align: center;
            cursor: pointer;
            letter-spacing: 0.3px;
        }
        .match-card .btn-detail-sm:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: #fff;
            color: #fff;
            box-shadow: 0 0 14px rgba(0, 229, 255, 0.3);
        }

        /* ========== 数据亮点区 ========== */
        .data-highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 18px;
        }
        .data-highlight-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .data-highlight-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .data-highlight-card .hl-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .data-highlight-card .hl-value {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        .data-highlight-card .hl-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ========== 更新时间提示条 ========== */
        .update-info-bar {
            background: rgba(21, 26, 38, 0.7);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 14px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--text-body);
        }
        .update-info-bar .refresh-btn {
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            background: transparent;
            border: 1px solid var(--brand-cyan);
            color: var(--brand-cyan);
            font-weight: 600;
            font-size: 0.82rem;
            cursor: pointer;
            transition: var(--transition-base);
            letter-spacing: 0.3px;
        }
        .update-info-bar .refresh-btn:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }
        .update-info-bar .update-time {
            color: var(--text-muted);
            font-family: var(--font-mono);
            font-size: 0.8rem;
        }

        /* ========== 用户评论 ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 18px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            transition: var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-brand);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .review-card .review-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
            background: rgba(107, 114, 128, 0.15);
            padding: 2px 8px;
            border-radius: var(--radius-pill);
        }
        .review-card .review-stars {
            color: var(--accent-amber);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .review-card .review-text {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.5;
        }
        .review-card .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ========== FAQ ========== */
        .faq-accordion .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-accordion .accordion-button {
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            border: none;
            box-shadow: none;
            transition: var(--transition-base);
            letter-spacing: 0.3px;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(123, 47, 255, 0.08);
            color: #fff;
            border-left: 3px solid var(--brand-cyan);
        }
        .faq-accordion .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.2);
        }
        .faq-accordion .accordion-body {
            background: rgba(10, 12, 20, 0.4);
            color: var(--text-body);
            font-size: 0.88rem;
            padding: 16px 20px;
            line-height: 1.6;
            border-top: 1px solid var(--border-color);
        }

        /* ========== CTA区块 ========== */
        .cta-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 50px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 40%, rgba(123, 47, 255, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .cta-section h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.6rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: var(--text-body);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .btn-cta-lg {
            display: inline-block;
            padding: 14px 34px;
            border-radius: var(--radius-pill);
            background: var(--gradient-btn);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border: none;
            transition: var(--transition-smooth);
            box-shadow: 0 0 20px rgba(123, 47, 255, 0.3);
            position: relative;
            z-index: 1;
            text-transform: uppercase;
        }
        .btn-cta-lg:hover {
            background: var(--gradient-btn-hover);
            box-shadow: var(--shadow-btn-glow);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--bg-nav);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 0;
            color: var(--text-body);
            font-size: 0.88rem;
        }
        .site-footer h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.95rem;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 7px;
        }
        .site-footer ul li a {
            color: var(--text-muted);
            font-size: 0.83rem;
            transition: var(--transition-base);
        }
        .site-footer ul li a:hover {
            color: var(--brand-cyan);
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            background: var(--gradient-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
            margin-top: 30px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: var(--transition-base);
        }
        .footer-bottom a:hover {
            color: var(--brand-cyan);
        }
        .beian-info span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .hero-score-hall {
                padding: 50px 0 44px;
                min-height: 420px;
            }
            .hero-score-hall .hero-title {
                font-size: 2.2rem;
            }
            .hero-metric-badge .metric-value {
                font-size: 2rem;
            }
            .match-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .data-highlights-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .hero-score-hall {
                padding: 36px 0 32px;
                min-height: auto;
                text-align: center;
            }
            .hero-score-hall .hero-title {
                font-size: 1.75rem;
            }
            .hero-score-hall .hero-subtitle {
                font-size: 0.9rem;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-metrics {
                justify-content: center;
                gap: 10px;
            }
            .hero-metric-badge {
                min-width: 90px;
                padding: 12px 14px;
            }
            .hero-metric-badge .metric-value {
                font-size: 1.6rem;
            }
            .hero-tags {
                justify-content: center;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .match-card .match-teams {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
            }
            .match-card .score-display {
                font-size: 1.6rem;
            }
            .data-highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .section-block {
                padding: 42px 0;
            }
            .game-tabs-wrapper {
                gap: 6px;
            }
            .game-tab-btn {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            .cta-section {
                padding: 30px 20px;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .site-footer .row>div {
                margin-bottom: 16px;
            }
        }
        @media (max-width: 520px) {
            .hero-score-hall .hero-title {
                font-size: 1.45rem;
            }
            .hero-metric-badge {
                min-width: 70px;
                padding: 10px 8px;
            }
            .hero-metric-badge .metric-value {
                font-size: 1.3rem;
            }
            .hero-metric-badge .metric-label {
                font-size: 0.68rem;
            }
            .match-card .team-name {
                font-size: 0.9rem;
            }
            .match-card .score-display {
                font-size: 1.3rem;
                min-width: 50px;
            }
            .data-highlights-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .data-highlight-card {
                padding: 14px 10px;
            }
            .data-highlight-card .hl-value {
                font-size: 1.5rem;
            }
            .btn-hero-main {
                padding: 10px 22px;
                font-size: 0.82rem;
            }
            .btn-cta-lg {
                padding: 10px 24px;
                font-size: 0.82rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
        }

        .match-tab-content {
            display: none;
        }
        .match-tab-content.active {
            display: block;
        }

/* roulang page: category4 */
:root {
            --bg-deep: #0B0E17;
            --bg-surface: #151A26;
            --bg-nav: #0A0C14;
            --bg-topbar: #05070D;
            --brand-purple: #7B2FFF;
            --brand-cyan: #00E5FF;
            --accent-red: #FF4D6A;
            --accent-orange: #FF8C42;
            --accent-green: #00E676;
            --text-primary: #F0F3FA;
            --text-body: #AEB9CF;
            --text-muted: #6B7280;
            --border-color: #1E2433;
            --border-glow: rgba(123, 47, 255, 0.35);
            --card-radius: 14px;
            --btn-radius: 50px;
            --shadow-glow: 0 8px 24px rgba(123, 47, 255, 0.25);
            --shadow-cyan: 0 6px 20px rgba(0, 229, 255, 0.18);
            --shadow-card-hover: 0 10px 32px rgba(123, 47, 255, 0.30);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-mono: 'Teko', 'Rajdhani', 'DIN', 'Roboto Mono', 'Courier New', monospace;
            --section-gap: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-heading);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 25% 15%, rgba(123, 47, 255, 0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 30%, rgba(0, 229, 255, 0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 60%, rgba(123, 47, 255, 0.03) 0%, transparent 50%);
            background-attachment: fixed;
        }

        a {
            color: var(--brand-cyan);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-purple);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            padding-left: 16px;
            padding-right: 16px;
        }

        /* ========== TOP BAR ========== */
        .top-info-bar {
            background-color: var(--bg-topbar);
            color: var(--text-muted);
            font-size: 0.78rem;
            padding: 7px 0;
            border-bottom: 2px solid rgba(123, 47, 255, 0.5);
            position: relative;
            z-index: 1030;
        }
        .top-info-bar .top-scroll-text {
            color: var(--brand-cyan);
            animation: topGlowPulse 2.8s ease-in-out infinite;
        }
        @keyframes topGlowPulse {
            0%,
            100% {
                text-shadow: 0 0 4px rgba(0, 229, 255, 0.3);
            }
            50% {
                text-shadow: 0 0 12px rgba(0, 229, 255, 0.7);
            }
        }
        .top-info-bar .top-right-links a {
            color: var(--text-muted);
            font-size: 0.78rem;
            margin-left: 18px;
            transition: color var(--transition-fast);
        }
        .top-info-bar .top-right-links a:hover {
            color: var(--brand-cyan);
        }

        /* ========== MAIN NAV ========== */
        .main-nav {
            background-color: var(--bg-nav);
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1020;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.55rem;
            color: var(--text-primary) !important;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
        }
        .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
            border-radius: 2px;
            opacity: 0.7;
        }
        .main-nav .nav-link {
            color: var(--text-body) !important;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .main-nav .nav-link:hover {
            color: var(--brand-cyan) !important;
            background-color: rgba(123, 47, 255, 0.08);
        }
        .main-nav .nav-link.active {
            color: var(--brand-cyan) !important;
            background-color: rgba(123, 47, 255, 0.14);
            box-shadow: inset 0 0 0 1px rgba(123, 47, 255, 0.4);
        }
        .btn-cta-nav {
            display: inline-block;
            padding: 9px 22px;
            border-radius: var(--btn-radius);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            border: none;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-cta-nav:hover {
            color: #fff;
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
            background: linear-gradient(135deg, #9147ff 0%, #00f0ff 100%);
        }
        .navbar-toggler {
            border-color: var(--border-color);
            box-shadow: none;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(174,185,207,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ========== HERO BANNER ========== */
        .hero-banner {
            position: relative;
            padding: 70px 0 64px;
            background:
                radial-gradient(ellipse at 30% 40%, rgba(123, 47, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(0, 229, 255, 0.10) 0%, transparent 55%),
                var(--bg-deep);
            overflow: hidden;
        }
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(123, 47, 255, 0.03) 2px, rgba(123, 47, 255, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 229, 255, 0.02) 2px, rgba(0, 229, 255, 0.02) 4px);
            pointer-events: none;
            z-index: 0;
        }
        .hero-banner .container {
            position: relative;
            z-index: 1;
        }
        .hero-banner .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--brand-cyan);
            background: rgba(0, 229, 255, 0.08);
            border: 1px solid rgba(0, 229, 255, 0.25);
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        .hero-banner h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1.25;
            margin-bottom: 12px;
        }
        .hero-banner h1 span {
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-banner .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            max-width: 620px;
            margin-bottom: 20px;
        }
        .hero-banner .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .hero-banner .hero-tag {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-body);
            background: rgba(21, 26, 38, 0.8);
            border: 1px solid var(--border-color);
            transition: all var(--transition-fast);
        }
        .hero-banner .hero-tag:hover {
            border-color: var(--brand-purple);
            color: var(--brand-cyan);
            background: rgba(123, 47, 255, 0.08);
        }
        .btn-hero-main {
            display: inline-block;
            padding: 13px 32px;
            border-radius: var(--btn-radius);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(123, 47, 255, 0.30);
        }
        .btn-hero-main:hover {
            color: #fff;
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .hero-banner .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 28px;
        }
        .hero-stat-badge {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 14px 20px;
            min-width: 120px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .hero-stat-badge:hover {
            border-color: var(--brand-purple);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .hero-stat-badge .stat-num {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-cyan);
            line-height: 1;
            margin-bottom: 4px;
        }
        .hero-stat-badge .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ========== SECTIONS ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-block.bg-alt {
            background-color: rgba(21, 26, 38, 0.35);
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            letter-spacing: 1px;
        }
        .section-title .accent-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-cyan);
            margin-right: 8px;
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
            vertical-align: middle;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 36px;
        }

        /* ========== TIMELINE ========== */
        .timeline-wrapper {
            position: relative;
            padding-left: 28px;
            border-left: 2px solid var(--border-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 32px;
            padding-left: 24px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -35px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--brand-purple);
            border: 2px solid var(--brand-cyan);
            box-shadow: 0 0 12px rgba(123, 47, 255, 0.5);
        }
        .timeline-item .tl-date {
            font-size: 0.8rem;
            color: var(--brand-cyan);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .timeline-item .tl-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .timeline-item .tl-desc {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.6;
        }
        .timeline-item .tl-game-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.73rem;
            font-weight: 600;
            color: #fff;
            background: rgba(123, 47, 255, 0.4);
            border: 1px solid rgba(123, 47, 255, 0.5);
            margin-right: 6px;
        }
        .timeline-item .tl-impact {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.73rem;
            font-weight: 600;
        }
        .tl-impact.high {
            background: rgba(255, 77, 106, 0.18);
            color: var(--accent-red);
            border: 1px solid rgba(255, 77, 106, 0.35);
        }
        .tl-impact.medium {
            background: rgba(255, 140, 66, 0.18);
            color: var(--accent-orange);
            border: 1px solid rgba(255, 140, 66, 0.35);
        }
        .tl-impact.low {
            background: rgba(0, 230, 118, 0.15);
            color: var(--accent-green);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }

        /* ========== CARDS ========== */
        .card-custom {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 22px 20px;
            height: 100%;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan));
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .card-custom:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .card-custom:hover::before {
            opacity: 1;
        }
        .card-custom .card-icon-round {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .card-custom h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .card-custom p {
            font-size: 0.88rem;
            color: var(--text-body);
            margin-bottom: 10px;
        }
        .card-custom .card-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .card-custom .card-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.73rem;
            font-weight: 600;
            color: var(--brand-cyan);
            background: rgba(0, 229, 255, 0.08);
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        /* ========== GUIDE GRID ========== */
        .guide-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: all var(--transition-smooth);
            height: 100%;
            cursor: pointer;
        }
        .guide-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .guide-card .guide-img-wrap {
            position: relative;
            height: 160px;
            overflow: hidden;
            background: var(--bg-nav);
        }
        .guide-card .guide-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .guide-card:hover .guide-img-wrap img {
            transform: scale(1.06);
        }
        .guide-card .guide-img-wrap .guide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 8px 14px;
            background: linear-gradient(transparent, rgba(10, 12, 20, 0.9));
            font-size: 0.75rem;
            color: var(--brand-cyan);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .guide-card .guide-body {
            padding: 16px 18px;
        }
        .guide-card .guide-body h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .guide-card .guide-body p {
            font-size: 0.82rem;
            color: var(--text-body);
            margin-bottom: 8px;
        }
        .guide-card .guide-body .guide-stats {
            display: flex;
            gap: 14px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ========== ANALYSIS BLOCK ========== */
        .analysis-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 20px 22px;
            margin-bottom: 16px;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .analysis-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
        }
        .analysis-card .analysis-game-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .analysis-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .analysis-card .analysis-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-section .accordion-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 10px !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-section .accordion-button {
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            box-shadow: none;
            border: none;
            transition: all var(--transition-fast);
        }
        .faq-section .accordion-button:not(.collapsed) {
            background: rgba(123, 47, 255, 0.08);
            color: var(--brand-cyan);
            border-left: 3px solid var(--brand-cyan);
        }
        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .faq-section .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }
        .faq-section .accordion-body {
            color: var(--text-body);
            font-size: 0.88rem;
            padding: 12px 20px 18px;
            line-height: 1.7;
        }

        /* ========== REVIEWS ========== */
        .review-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 18px 20px;
            height: 100%;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .review-card .review-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .review-card .review-stars {
            color: #FFB800;
            font-size: 0.78rem;
            letter-spacing: 2px;
        }
        .review-card .review-text {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.6;
        }
        .review-card .review-time {
            font-size: 0.73rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background:
                radial-gradient(ellipse at 40% 50%, rgba(123, 47, 255, 0.12) 0%, transparent 60%),
                var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 48px 32px;
            text-align: center;
            margin: var(--section-gap) 0;
        }
        .cta-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .cta-section p {
            color: var(--text-body);
            max-width: 550px;
            margin: 0 auto 22px;
        }
        .btn-cta-lg {
            display: inline-block;
            padding: 14px 36px;
            border-radius: var(--btn-radius);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-cyan) 100%);
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 18px rgba(123, 47, 255, 0.30);
        }
        .btn-cta-lg:hover {
            color: #fff;
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background-color: var(--bg-nav);
            border-top: 1px solid var(--border-color);
            padding: 48px 0 28px;
            color: var(--text-body);
            font-size: 0.88rem;
        }
        .site-footer .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .site-footer h5 {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 0.92rem;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 7px;
        }
        .site-footer ul li a {
            color: var(--text-muted);
            font-size: 0.83rem;
            transition: color var(--transition-fast);
        }
        .site-footer ul li a:hover {
            color: var(--brand-cyan);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            margin-top: 32px;
            padding-top: 18px;
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .footer-bottom .beian-info {
            margin-top: 2px;
        }
        .footer-bottom a {
            color: var(--text-muted);
            font-size: 0.78rem;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-cyan);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-banner h1 {
                font-size: 2.2rem;
            }
            .hero-banner .hero-stats-row {
                gap: 12px;
            }
            .hero-stat-badge {
                min-width: 100px;
                padding: 10px 14px;
            }
            .hero-stat-badge .stat-num {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .timeline-wrapper {
                padding-left: 16px;
            }
            .timeline-item {
                padding-left: 14px;
            }
            .timeline-item::before {
                left: -25px;
                width: 10px;
                height: 10px;
            }
        }
        @media (max-width: 768px) {
            .hero-banner {
                padding: 40px 0 36px;
            }
            .hero-banner h1 {
                font-size: 1.7rem;
            }
            .hero-banner .hero-stats-row {
                gap: 8px;
                flex-wrap: wrap;
                justify-content: flex-start;
            }
            .hero-stat-badge {
                min-width: 80px;
                padding: 8px 10px;
                border-radius: 8px;
            }
            .hero-stat-badge .stat-num {
                font-size: 1.2rem;
            }
            .hero-stat-badge .stat-label {
                font-size: 0.68rem;
            }
            .btn-hero-main {
                padding: 10px 22px;
                font-size: 0.85rem;
            }
            .section-block {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .card-custom {
                padding: 16px 14px;
            }
            .guide-card .guide-img-wrap {
                height: 130px;
            }
            .cta-section {
                padding: 32px 16px;
                margin: 36px 0;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .timeline-wrapper {
                padding-left: 10px;
                border-left-width: 1.5px;
            }
            .timeline-item {
                padding-left: 10px;
                margin-bottom: 22px;
            }
            .timeline-item::before {
                left: -19px;
                width: 8px;
                height: 8px;
            }
            .site-footer {
                padding: 32px 0 20px;
            }
        }
        @media (max-width: 520px) {
            .hero-banner h1 {
                font-size: 1.4rem;
            }
            .hero-banner .hero-subtitle {
                font-size: 0.85rem;
            }
            .hero-banner .hero-tags {
                gap: 6px;
            }
            .hero-banner .hero-tag {
                font-size: 0.72rem;
                padding: 4px 10px;
            }
            .hero-banner .hero-stats-row {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 6px;
            }
            .hero-stat-badge {
                flex: 1 1 calc(50% - 6px);
                min-width: auto;
            }
            .btn-hero-main {
                width: 100%;
                text-align: center;
            }
            .section-title {
                font-size: 1.15rem;
            }
            .guide-card .guide-img-wrap {
                height: 110px;
            }
            .review-card {
                padding: 14px;
            }
        }
