/* roulang page: index */
:root {
            --bg-deep: #060b14;
            --bg-primary: #0a1525;
            --bg-card: #0f1c30;
            --bg-card-hover: #152540;
            --bg-nav: #0b1628;
            --border-subtle: #1a2a42;
            --border-glow: #1e3a5a;
            --text-primary: #e4ecf5;
            --text-secondary: #8a9bb8;
            --text-muted: #5e6f88;
            --accent-cyan: #0ad4f0;
            --accent-cyan-glow: rgba(10, 212, 240, 0.35);
            --accent-purple: #8b5cf6;
            --accent-purple-glow: rgba(139, 92, 246, 0.35);
            --accent-green: #00e887;
            --accent-green-glow: rgba(0, 232, 135, 0.3);
            --accent-amber: #f59e0b;
            --accent-rose: #f43f5e;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
            --shadow-glow-cyan: 0 0 18px rgba(10, 212, 240, 0.2), 0 0 40px rgba(10, 212, 240, 0.08);
            --shadow-glow-purple: 0 0 18px rgba(139, 92, 246, 0.2), 0 0 40px rgba(139, 92, 246, 0.08);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input,
        select,
        textarea {
            font-family: inherit;
        }

        /* ========== 容器 ========== */
        .section-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .section-container {
                padding: 0 14px;
            }
        }

        /* ========== 导航 - 卡片化控制面板 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: var(--bg-nav);
            border-bottom: 1px solid var(--border-subtle);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
        }
        .navbar-esports {
            padding: 10px 0;
        }
        .navbar-esports .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: 0.5px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 9px;
            transition: all var(--transition-fast);
        }
        .navbar-esports .navbar-brand .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: var(--shadow-glow-cyan);
        }
        .navbar-esports .navbar-brand:hover {
            color: var(--accent-cyan);
        }
        .nav-panel-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 6px 10px;
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-panel-card .nav-link-esports {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 15px;
            border-radius: var(--radius-md);
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            border: 1px solid transparent;
            background: transparent;
            position: relative;
        }
        .nav-panel-card .nav-link-esports:hover {
            color: var(--accent-cyan);
            background: rgba(10, 212, 240, 0.06);
            border-color: rgba(10, 212, 240, 0.2);
            box-shadow: var(--shadow-glow-cyan);
            transform: translateY(-1px);
        }
        .nav-panel-card .nav-link-esports.active {
            color: #fff;
            background: rgba(10, 212, 240, 0.12);
            border-color: rgba(10, 212, 240, 0.4);
            box-shadow: var(--shadow-glow-cyan);
            font-weight: 600;
        }
        .nav-panel-card .nav-link-esports .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            display: inline-block;
            box-shadow: 0 0 8px var(--accent-cyan-glow);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-glow-cyan);
            white-space: nowrap;
        }
        .nav-cta-btn:hover {
            box-shadow: 0 0 28px rgba(10, 212, 240, 0.4), 0 0 50px rgba(139, 92, 246, 0.25);
            transform: translateY(-2px);
            color: #fff;
        }
        .navbar-toggler-esports {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            background: var(--bg-card);
            color: var(--text-primary);
        }
        .navbar-toggler-esports:focus {
            box-shadow: 0 0 0 3px rgba(10, 212, 240, 0.25);
            outline: none;
        }
        @media (max-width: 991px) {
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                margin-top: 10px;
                padding: 8px;
            }
            .nav-panel-card .nav-link-esports {
                justify-content: flex-start;
                padding: 10px 14px;
            }
            .nav-cta-btn {
                margin-top: 6px;
                justify-content: center;
            }
        }

        /* ========== Hero ========== */
        .hero-section {
            position: relative;
            background: url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
            min-height: 580px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(170deg, rgba(6, 11, 20, 0.82) 0%, rgba(10, 21, 37, 0.9) 55%, rgba(15, 28, 48, 0.95) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 60px 0;
        }
        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            background: rgba(10, 212, 240, 0.12);
            border: 1px solid rgba(10, 212, 240, 0.3);
            color: var(--accent-cyan);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 18px;
            animation: pulse-badge 2.5s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(10, 212, 240, 0.2);
            }
            50% {
                box-shadow: 0 0 22px rgba(10, 212, 240, 0.45);
            }
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 2.9rem;
            font-weight: 800;
            line-height: 1.22;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 26px;
        }
        .hero-tag {
            padding: 7px 15px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 0.82rem;
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(10, 212, 240, 0.06);
        }
        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            background: linear-gradient(135deg, var(--accent-cyan), #00b8d4);
            color: #000;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-glow-cyan);
            letter-spacing: 0.4px;
        }
        .hero-btn-primary:hover {
            box-shadow: 0 0 35px rgba(10, 212, 240, 0.5), 0 0 60px rgba(10, 212, 240, 0.2);
            transform: translateY(-2px);
            color: #000;
        }
        .hero-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .hero-btn-outline:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: var(--shadow-glow-cyan);
        }
        .hero-data-mini {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .hero-data-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            border: 1px solid var(--border-subtle);
            text-align: center;
            min-width: 90px;
            transition: all var(--transition-fast);
        }
        .hero-data-item:hover {
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-glow-cyan);
        }
        .hero-data-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
        }
        .hero-data-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-data-mini {
                gap: 10px;
            }
            .hero-data-item {
                padding: 12px 14px;
                min-width: 70px;
            }
            .hero-data-num {
                font-size: 1.2rem;
            }
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: 56px 0;
        }
        .section-block.alt-bg {
            background: var(--bg-primary);
        }
        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: var(--accent-cyan);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.2px;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 600px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
            }
            .section-block {
                padding: 38px 0;
            }
        }

        /* ========== 卡片 ========== */
        .card-esports {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition-normal);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .card-esports:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-cyan);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .card-esports .card-icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .card-esports .card-icon-circle.cyan {
            background: rgba(10, 212, 240, 0.12);
            color: var(--accent-cyan);
        }
        .card-esports .card-icon-circle.purple {
            background: rgba(139, 92, 246, 0.12);
            color: var(--accent-purple);
        }
        .card-esports .card-icon-circle.green {
            background: rgba(0, 232, 135, 0.12);
            color: var(--accent-green);
        }
        .card-esports .card-icon-circle.amber {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-amber);
        }
        .card-esports .card-title-sm {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 6px;
        }
        .card-esports .card-desc-sm {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .card-esports .card-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(10, 212, 240, 0.1);
            color: var(--accent-cyan);
            border: 1px solid rgba(10, 212, 240, 0.25);
            margin-top: 10px;
        }
        .card-esports-cover {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 14px;
            aspect-ratio: 16 / 10;
            background: var(--bg-primary);
        }
        .card-esports-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-esports:hover .card-esports-cover img {
            transform: scale(1.05);
        }

        /* ========== 数据指标卡片 ========== */
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            text-align: center;
            transition: all var(--transition-fast);
            position: relative;
        }
        .stat-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-glow-cyan);
            transform: translateY(-3px);
        }
        .stat-card .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: -0.5px;
        }
        .stat-card .stat-num.accent-cyan {
            color: var(--accent-cyan);
        }
        .stat-card .stat-num.accent-green {
            color: var(--accent-green);
        }
        .stat-card .stat-num.accent-purple {
            color: var(--accent-purple);
        }
        .stat-card .stat-num.accent-amber {
            color: var(--accent-amber);
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 500;
        }
        .stat-card .stat-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 2px;
            opacity: 0.7;
        }

        /* ========== 比分数据表 ========== */
        .table-esports {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
        }
        .table-esports thead th {
            background: var(--bg-primary);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.78rem;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 2px solid var(--border-subtle);
            letter-spacing: 0.4px;
            white-space: nowrap;
        }
        .table-esports tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-primary);
            vertical-align: middle;
            white-space: nowrap;
        }
        .table-esports tbody tr {
            transition: background var(--transition-fast);
        }
        .table-esports tbody tr:hover {
            background: var(--bg-card-hover);
        }
        .table-esports tbody tr:last-child td {
            border-bottom: none;
        }
        .badge-status {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .badge-status.live {
            background: rgba(244, 63, 94, 0.15);
            color: var(--accent-rose);
            border: 1px solid rgba(244, 63, 94, 0.35);
            animation: pulse-live 1.5s ease-in-out infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 4px rgba(244, 63, 94, 0.3);
            }
            50% {
                box-shadow: 0 0 16px rgba(244, 63, 94, 0.6);
            }
        }
        .badge-status.upcoming {
            background: rgba(245, 158, 11, 0.12);
            color: var(--accent-amber);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .badge-status.finished {
            background: rgba(138, 155, 184, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(138, 155, 184, 0.2);
        }
        .score-highlight {
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--accent-cyan);
            letter-spacing: 1px;
        }
        .game-tag {
            display: inline-block;
            padding: 3px 9px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(139, 92, 246, 0.12);
            color: var(--accent-purple);
            border: 1px solid rgba(139, 92, 246, 0.25);
        }
        .table-responsive-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
        }
        @media (max-width: 768px) {
            .table-esports {
                font-size: 0.78rem;
            }
            .table-esports thead th,
            .table-esports tbody td {
                padding: 10px 10px;
            }
        }

        /* ========== 排行列表 ========== */
        .rank-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .rank-list-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 15px 18px;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            border-radius: var(--radius-sm);
            margin-bottom: 2px;
            background: transparent;
        }
        .rank-list-item:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-sm);
        }
        .rank-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .rank-num.top1 {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: #000;
            box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
        }
        .rank-num.top2 {
            background: linear-gradient(135deg, #94a3b8, #cbd5e1);
            color: #000;
        }
        .rank-num.top3 {
            background: linear-gradient(135deg, #cd853f, #e8a870);
            color: #000;
        }
        .rank-num.normal {
            background: var(--bg-primary);
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .rank-info {
            flex: 1;
            min-width: 0;
        }
        .rank-name {
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-sub {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .rank-stat {
            font-weight: 700;
            color: var(--accent-cyan);
            font-size: 0.9rem;
            white-space: nowrap;
        }

        /* ========== 资讯卡片 ========== */
        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-normal);
            height: 100%;
        }
        .news-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-purple);
            transform: translateY(-3px);
        }
        .news-card-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--bg-primary);
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-card:hover .news-card-img img {
            transform: scale(1.06);
        }
        .news-card-body {
            padding: 18px;
        }
        .news-card-tag {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent-purple);
            letter-spacing: 0.5px;
        }
        .news-card-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: #fff;
            margin: 6px 0;
            line-height: 1.4;
        }
        .news-card-time {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ========== 评论模块 ========== */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition-fast);
            height: 100%;
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-sm);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: #fff;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
        }
        .review-tag {
            font-size: 0.7rem;
            color: var(--accent-cyan);
            background: rgba(10, 212, 240, 0.08);
            padding: 2px 8px;
            border-radius: 50px;
        }
        .review-stars {
            color: #f59e0b;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-glow);
        }
        .faq-question {
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-question .faq-icon {
            transition: transform var(--transition-fast);
            color: var(--accent-cyan);
            font-size: 0.85rem;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px 20px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(160deg, var(--bg-primary) 0%, #0f1e38 50%, var(--bg-card) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(10, 212, 240, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }
        .cta-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: 0 0 30px rgba(10, 212, 240, 0.3);
            letter-spacing: 0.3px;
        }
        .cta-btn-lg:hover {
            box-shadow: 0 0 45px rgba(10, 212, 240, 0.5), 0 0 70px rgba(139, 92, 246, 0.3);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-subtle);
            padding: 40px 0 24px;
            color: var(--text-muted);
            font-size: 0.82rem;
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        .footer-divider {
            border-top: 1px solid var(--border-subtle);
            margin: 20px 0;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-beian {
                justify-content: center;
            }
            .cta-section {
                padding: 32px 18px;
            }
            .cta-title {
                font-size: 1.4rem;
            }
        }

        /* ========== 霓虹装饰线 ========== */
        .glow-divider {
            height: 2px;
            border: none;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-purple), transparent);
            margin: 0 auto;
            max-width: 200px;
            opacity: 0.5;
        }

        /* ========== 游戏分类网格 ========== */
        .game-grid-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition-normal);
            cursor: pointer;
            height: 100%;
        }
        .game-grid-card:hover {
            border-color: var(--accent-purple);
            box-shadow: var(--shadow-glow-purple);
            transform: translateY(-4px);
            background: var(--bg-card-hover);
        }
        .game-grid-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }
        .game-grid-name {
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        .game-grid-count {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ========== 脉冲点 ========== */
        .pulse-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-green);
            display: inline-block;
            animation: pulse-dot-anim 1.6s ease-in-out infinite;
            box-shadow: 0 0 10px var(--accent-green-glow);
            margin-right: 6px;
        }
        @keyframes pulse-dot-anim {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.5);
            }
        }

        /* ========== 分类入口卡片 ========== */
        .category-entry-card {
            display: block;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 26px 20px;
            text-align: center;
            transition: all var(--transition-normal);
            height: 100%;
            text-decoration: none;
            color: inherit;
        }
        .category-entry-card:hover {
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-glow-cyan);
            transform: translateY(-4px);
            color: inherit;
        }
        .category-entry-card .cat-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
            display: block;
        }
        .category-entry-card .cat-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .category-entry-card .cat-desc {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

/* roulang page: category2 */
/* ========== 设计变量 ========== */
        :root {
            --bg-deep: #0a0a14;
            --bg-surface: #12121f;
            --bg-card: #18182a;
            --bg-card-hover: #1e1e38;
            --bg-nav-panel: #14142a;
            --bg-table-header: #111125;
            --bg-table-row: #18182c;
            --bg-table-row-alt: #1c1c33;
            --text-primary: #e8e8f0;
            --text-secondary: #b0b0c8;
            --text-muted: #7a7a9a;
            --text-accent: #a78bfa;
            --color-primary: #7c3aed;
            --color-primary-light: #8b5cf6;
            --color-primary-glow: rgba(124, 58, 237, 0.35);
            --color-accent-cyan: #06b6d4;
            --color-accent-cyan-glow: rgba(6, 182, 212, 0.3);
            --color-gold: #f59e0b;
            --color-gold-glow: rgba(245, 158, 11, 0.3);
            --color-silver: #94a3b8;
            --color-bronze: #d97706;
            --color-red: #ef4444;
            --color-green: #22c55e;
            --color-border: rgba(255, 255, 255, 0.08);
            --color-border-light: rgba(255, 255, 255, 0.14);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(124, 58, 237, 0.2);
            --shadow-glow-primary: 0 0 30px var(--color-primary-glow);
            --shadow-glow-cyan: 0 0 24px var(--color-accent-cyan-glow);
            --shadow-glow-gold: 0 0 22px var(--color-gold-glow);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', monospace;
            --section-gap: 80px;
            --section-gap-sm: 50px;
            --container-max: 1200px;
        }

        /* ========== 基础 Reset ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            background-color: var(--bg-deep);
            color: var(--text-primary);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            letter-spacing: 0.01em;
        }

        a {
            text-decoration: none;
            color: var(--text-accent);
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary-light);
        }
        a:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }
        button:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 3px;
            border-radius: 6px;
        }

        input {
            font-family: inherit;
        }

        /* ========== 容器 ========== */
        .section-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (max-width: 768px) {
            .section-container {
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        /* ========== 板块间距 ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-block-sm {
            padding: var(--section-gap-sm) 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 50px 0;
            }
            .section-block-sm {
                padding: 35px 0;
            }
        }

        /* ========== 导航 Header ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(10, 10, 20, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--color-border);
            padding: 10px 0;
            transition: all var(--transition-smooth);
        }
        .site-header .section-container {
            padding-top: 0;
            padding-bottom: 0;
        }
        .navbar-esports {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.25rem;
            color: #fff !important;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .navbar-brand .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--color-primary), #5b21b6);
            border-radius: var(--radius-sm);
            color: #fff;
            font-size: 1.2rem;
            box-shadow: var(--shadow-glow-primary);
        }
        .navbar-toggler-esports {
            border: 1px solid var(--color-border-light);
            background: var(--bg-surface);
            color: var(--text-primary);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 1.2rem;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-esports:hover {
            background: var(--bg-card);
            border-color: var(--color-primary-light);
        }
        .navbar-toggler-esports:focus {
            box-shadow: 0 0 0 3px var(--color-primary-glow);
            outline: none;
        }
        .nav-panel-card {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-nav-panel);
            border-radius: var(--radius-lg);
            padding: 8px 14px;
            border: 1px solid var(--color-border);
            flex-wrap: wrap;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
        }
        .nav-link-esports {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            color: var(--text-secondary) !important;
            font-size: 0.88rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.02em;
        }
        .nav-link-esports .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
            display: inline-block;
            flex-shrink: 0;
        }
        .nav-link-esports:hover {
            color: #fff !important;
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-link-esports.active {
            color: #fff !important;
            background: rgba(124, 58, 237, 0.25);
            font-weight: 600;
            box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.5);
        }
        .nav-link-esports.active .nav-dot {
            background: var(--color-primary-light);
            box-shadow: 0 0 8px var(--color-primary-glow);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--color-primary), #6d28d9);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.03em;
            box-shadow: 0 4px 18px var(--color-primary-glow);
        }
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--color-primary-light), #7c3aed);
            box-shadow: 0 6px 28px rgba(124, 58, 237, 0.5);
            transform: translateY(-1px);
        }
        @media (max-width: 991px) {
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 10px 12px;
                margin-top: 8px;
                width: 100%;
            }
            .nav-link-esports {
                justify-content: flex-start;
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .nav-cta-btn {
                justify-content: center;
                margin-top: 4px;
                width: 100%;
                text-align: center;
            }
        }

        /* ========== Hero 内页 Banner ========== */
        .hero-inner {
            position: relative;
            padding: 80px 0 70px;
            background: linear-gradient(180deg, #0f0f24 0%, #0a0a18 60%, var(--bg-deep) 100%);
            overflow: hidden;
            text-align: center;
        }
        .hero-inner .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }
        .hero-inner .hero-glow {
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }
        .hero-inner .section-container {
            position: relative;
            z-index: 1;
        }
        .hero-inner .hero-badge {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 20px;
            background: rgba(124, 58, 237, 0.2);
            border: 1px solid rgba(124, 58, 237, 0.4);
            color: var(--text-accent);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            margin-bottom: 18px;
        }
        .hero-inner h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.25;
        }
        .hero-inner h1 .highlight {
            background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-inner .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 620px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .hero-inner .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .hero-inner .hero-tag {
            padding: 5px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--color-border);
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }
        .hero-inner .hero-tag:hover {
            border-color: var(--color-primary-light);
            color: #fff;
            background: rgba(124, 58, 237, 0.12);
        }
        .hero-inner .hero-cta-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .hero-inner {
                padding: 55px 0 45px;
            }
            .hero-inner h1 {
                font-size: 1.9rem;
            }
            .hero-inner .hero-subtitle {
                font-size: 0.95rem;
            }
        }

        /* ========== 按钮系统 ========== */
        .btn-primary-glow {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 26px;
            border-radius: 28px;
            background: linear-gradient(135deg, var(--color-primary), #6d28d9);
            color: #fff;
            border: none;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 20px var(--color-primary-glow);
            letter-spacing: 0.03em;
            text-decoration: none;
        }
        .btn-primary-glow:hover {
            background: linear-gradient(135deg, var(--color-primary-light), #7c3aed);
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-outline-glow {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 26px;
            border-radius: 28px;
            background: transparent;
            color: #fff;
            border: 1.5px solid var(--color-border-light);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            text-decoration: none;
        }
        .btn-outline-glow:hover {
            border-color: var(--color-accent-cyan);
            color: var(--color-accent-cyan);
            box-shadow: var(--shadow-glow-cyan);
            background: rgba(6, 182, 212, 0.06);
        }

        /* ========== 卡片系统 ========== */
        .data-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 28px 22px;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .data-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .data-card .card-icon-wrap {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .data-card .card-icon-purple {
            background: rgba(124, 58, 237, 0.2);
            color: var(--color-primary-light);
        }
        .data-card .card-icon-cyan {
            background: rgba(6, 182, 212, 0.2);
            color: var(--color-accent-cyan);
        }
        .data-card .card-icon-gold {
            background: rgba(245, 158, 11, 0.2);
            color: var(--color-gold);
        }
        .data-card .card-icon-green {
            background: rgba(34, 197, 94, 0.2);
            color: var(--color-green);
        }
        .data-card .card-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.02em;
            line-height: 1.1;
            font-family: var(--font-mono);
        }
        .data-card .card-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.03em;
        }
        .data-card .card-trend {
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            margin-top: 6px;
        }
        .data-card .card-trend.up {
            color: var(--color-green);
        }
        .data-card .card-trend.down {
            color: var(--color-red);
        }

        /* ========== 排行卡片 ========== */
        .rank-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .rank-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-card-hover);
            transform: translateX(3px);
        }
        .rank-card .rank-badge {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
            font-family: var(--font-mono);
        }
        .rank-card .rank-badge.rank-1 {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #1a1a00;
            box-shadow: var(--shadow-glow-gold);
        }
        .rank-card .rank-badge.rank-2 {
            background: linear-gradient(135deg, #94a3b8, #64748b);
            color: #fff;
        }
        .rank-card .rank-badge.rank-3 {
            background: linear-gradient(135deg, #d97706, #b45309);
            color: #fff;
        }
        .rank-card .rank-badge.rank-normal {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-secondary);
        }
        .rank-card .rank-info {
            flex: 1;
            min-width: 0;
        }
        .rank-card .rank-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            letter-spacing: 0.03em;
        }
        .rank-card .rank-detail {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .rank-card .rank-stat {
            text-align: right;
            flex-shrink: 0;
        }
        .rank-card .rank-stat .stat-value {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--color-accent-cyan);
            font-family: var(--font-mono);
        }
        .rank-card .rank-stat .stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ========== 数据表格 ========== */
        .table-dark-esports {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
        }
        .table-dark-esports thead th {
            background: var(--bg-table-header);
            color: var(--text-accent);
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            padding: 14px 16px;
            border-bottom: 2px solid var(--color-border-light);
            text-align: left;
            white-space: nowrap;
        }
        .table-dark-esports tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--color-border);
            font-size: 0.9rem;
            color: var(--text-primary);
            vertical-align: middle;
        }
        .table-dark-esports tbody tr {
            transition: background var(--transition-fast);
        }
        .table-dark-esports tbody tr:nth-child(even) {
            background: var(--bg-table-row-alt);
        }
        .table-dark-esports tbody tr:nth-child(odd) {
            background: var(--bg-table-row);
        }
        .table-dark-esports tbody tr:hover {
            background: rgba(124, 58, 237, 0.08);
        }
        .table-badge {
            display: inline-block;
            padding: 4px 11px;
            border-radius: 12px;
            font-size: 0.73rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .table-badge.hot {
            background: rgba(239, 68, 68, 0.2);
            color: #f87171;
        }
        .table-badge.stable {
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
        }
        .table-badge.rising {
            background: rgba(6, 182, 212, 0.2);
            color: #22d3ee;
        }
        .win-rate-bar {
            display: inline-block;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--color-green), var(--color-accent-cyan));
            min-width: 20px;
            vertical-align: middle;
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .table-dark-esports thead th,
            .table-dark-esports tbody td {
                padding: 10px 8px;
                font-size: 0.75rem;
            }
            .table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }

        /* ========== 用户评论 ========== */
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            height: 100%;
        }
        .review-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .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, #4c1d95, #7c3aed);
            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: 600;
            font-size: 0.9rem;
            color: #fff;
        }
        .review-card .review-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .review-card .review-stars {
            color: var(--color-gold);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .review-card .review-text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .review-card .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            border: 1px solid var(--color-border);
            transition: all var(--transition-fast);
            cursor: pointer;
            margin-bottom: 10px;
        }
        .faq-item:hover {
            border-color: var(--color-border-light);
            background: var(--bg-card-hover);
        }
        .faq-item .faq-question {
            font-weight: 600;
            font-size: 0.95rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.02em;
        }
        .faq-item .faq-question i {
            color: var(--color-primary-light);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .faq-item .faq-answer {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 8px;
            padding-left: 26px;
            line-height: 1.65;
        }

        /* ========== CTA 板块 ========== */
        .cta-block {
            background: linear-gradient(135deg, #18182e 0%, #141430 50%, #0f0f26 100%);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            border: 1px solid var(--color-border);
            position: relative;
            overflow: hidden;
        }
        .cta-block .cta-glow {
            position: absolute;
            top: -80px;
            right: -60px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-block h3 {
            font-weight: 700;
            font-size: 1.6rem;
            color: #fff;
            position: relative;
            z-index: 1;
        }
        .cta-block p {
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
            max-width: 500px;
            margin: 10px auto 22px;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--color-border);
            padding: 45px 0 30px;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .site-footer .footer-brand {
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.04em;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 5px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--text-accent);
        }
        .footer-divider {
            border-color: var(--color-border);
            margin: 20px 0;
            opacity: 0.5;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 6px;
            }
            .footer-beian {
                justify-content: center;
            }
        }

        /* ========== 响应式补充 ========== */
        @media (max-width: 520px) {
            .hero-inner h1 {
                font-size: 1.5rem;
            }
            .data-card .card-value {
                font-size: 1.6rem;
            }
            .rank-card {
                flex-wrap: wrap;
                gap: 10px;
            }
            .rank-card .rank-stat {
                text-align: left;
            }
            .cta-block {
                padding: 30px 18px;
            }
            .cta-block h3 {
                font-size: 1.3rem;
            }
            .btn-primary-glow,
            .btn-outline-glow {
                padding: 10px 18px;
                font-size: 0.82rem;
            }
        }

        /* 滚动条美化 */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-deep);
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a44;
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3a5a;
        }

        /* 选中文本 */
        ::selection {
            background: rgba(124, 58, 237, 0.4);
            color: #fff;
        }

/* roulang page: category1 */
:root {
            --bg-deep: #080b13;
            --bg-primary: #0d1117;
            --bg-card: #131820;
            --bg-card-hover: #181f2b;
            --bg-nav: #0f141c;
            --border-color: #1e2736;
            --border-glow: #3b3f6b;
            --text-primary: #e8ecf1;
            --text-secondary: #b0b8c4;
            --text-muted: #6b7280;
            --accent-cyan: #00d4aa;
            --accent-blue: #4d8cf5;
            --accent-purple: #8b5cf6;
            --accent-pink: #e04090;
            --accent-orange: #f59e0b;
            --accent-red: #ef4444;
            --gradient-hero: linear-gradient(135deg, #0d1117 0%, #131820 40%, #1a0d2e 100%);
            --gradient-card: linear-gradient(145deg, #131820 0%, #0f141c 100%);
            --gradient-btn: linear-gradient(135deg, #6c3ce0 0%, #4d8cf5 100%);
            --gradient-cta: linear-gradient(135deg, #1a1040 0%, #0f1b30 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 30px rgba(109, 80, 220, 0.25);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s ease;
            --font-display: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        .section-container {
            max-width: 1260px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            background: var(--bg-nav);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1050;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .navbar-esports {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .navbar-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-primary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
            transition: color var(--transition-fast);
        }

        .navbar-brand:hover {
            color: var(--accent-cyan) !important;
        }

        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: var(--gradient-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #fff;
            flex-shrink: 0;
        }

        .navbar-toggler-esports {
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-primary);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 1.1rem;
            transition: all var(--transition-fast);
        }

        .navbar-toggler-esports:hover {
            border-color: var(--accent-purple);
            background: var(--bg-card-hover);
        }

        .nav-panel-card {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 6px 10px;
            border: 1px solid var(--border-color);
            flex-wrap: wrap;
        }

        .nav-link-esports {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            padding: 9px 15px;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-link-esports:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-link-esports.active {
            color: #fff;
            background: rgba(109, 80, 220, 0.2);
            box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.4);
            font-weight: 600;
        }

        .nav-link-esports.active .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            display: inline-block;
            box-shadow: 0 0 10px var(--accent-cyan);
        }

        .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--text-muted);
            display: inline-block;
        }

        .nav-cta-btn {
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            padding: 9px 18px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(108, 60, 224, 0.3);
        }

        .nav-cta-btn:hover {
            box-shadow: 0 6px 24px rgba(108, 60, 224, 0.5);
            transform: translateY(-1px);
        }

        /* ========== HERO ========== */
        .hero-section {
            background: var(--gradient-hero);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.18);
            border: 1px solid rgba(139, 92, 246, 0.35);
            color: var(--accent-purple);
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }

        .hero-badge .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-cyan);
            animation: pulse-dot-anim 2s infinite;
        }

        @keyframes pulse-dot-anim {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.6);
            }
            50% {
                box-shadow: 0 0 0 14px rgba(0, 212, 170, 0);
            }
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 14px;
            color: #fff;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
            max-width: 580px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 26px;
            position: relative;
            z-index: 1;
        }

        .hero-tag {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 7px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }

        .hero-tag:hover {
            border-color: var(--accent-purple);
            color: var(--text-primary);
            background: var(--bg-card-hover);
        }

        .hero-tag.hot {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            background: rgba(245, 158, 11, 0.08);
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            padding: 14px 30px;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            box-shadow: 0 6px 24px rgba(108, 60, 224, 0.35);
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        .btn-hero:hover {
            box-shadow: 0 10px 36px rgba(108, 60, 224, 0.55);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-glow);
            padding: 14px 30px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
            margin-left: 12px;
        }

        .btn-hero-outline:hover {
            border-color: var(--accent-purple);
            background: rgba(139, 92, 246, 0.08);
            color: #fff;
        }

        .hero-visual-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 20px;
            position: relative;
            z-index: 1;
            box-shadow: var(--shadow-lg);
        }

        .hero-visual-card .mini-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            gap: 12px;
        }

        .mini-match:last-child {
            border-bottom: none;
        }

        .mini-match .team-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
            min-width: 70px;
            text-align: center;
        }

        .mini-match .score-display {
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            min-width: 50px;
            text-align: center;
            background: rgba(139, 92, 246, 0.2);
            border-radius: var(--radius-sm);
            padding: 4px 10px;
        }

        .mini-match .status-badge {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(0, 212, 170, 0.15);
            color: var(--accent-cyan);
            white-space: nowrap;
        }

        .mini-match .status-badge.upcoming {
            background: rgba(245, 158, 11, 0.15);
            color: var(--accent-orange);
        }

        /* ========== STATS RIBBON ========== */
        .stats-ribbon {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            padding: 28px 0;
        }

        .stat-item {
            text-align: center;
            padding: 8px 16px;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            letter-spacing: 0.5px;
        }

        .stat-value.accent-cyan {
            color: var(--accent-cyan);
        }
        .stat-value.accent-blue {
            color: var(--accent-blue);
        }
        .stat-value.accent-purple {
            color: var(--accent-purple);
        }
        .stat-value.accent-orange {
            color: var(--accent-orange);
        }
        .stat-value.accent-pink {
            color: var(--accent-pink);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
            font-weight: 500;
        }

        /* ========== SECTION TITLES ========== */
        .section-title-block {
            margin-bottom: 32px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--accent-purple);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-heading {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 600px;
        }

        /* ========== TOURNAMENT TABLE ========== */
        .tournament-table-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .table-esports {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
            color: var(--text-primary);
        }

        .table-esports thead th {
            background: var(--bg-nav);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 14px 16px;
            border-bottom: 2px solid var(--border-color);
            white-space: nowrap;
        }

        .table-esports tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
            vertical-align: middle;
            transition: background var(--transition-fast);
        }

        .table-esports tbody tr {
            transition: background var(--transition-fast);
        }

        .table-esports tbody tr:hover {
            background: var(--bg-card-hover);
        }

        .table-esports tbody tr:last-child td {
            border-bottom: none;
        }

        .game-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 14px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(77, 140, 245, 0.15);
            color: var(--accent-blue);
            white-space: nowrap;
        }

        .game-tag.lol {
            background: rgba(224, 64, 144, 0.15);
            color: var(--accent-pink);
        }
        .game-tag.dota2 {
            background: rgba(245, 158, 11, 0.15);
            color: var(--accent-orange);
        }
        .game-tag.cs2 {
            background: rgba(0, 212, 170, 0.15);
            color: var(--accent-cyan);
        }
        .game-tag.valorant {
            background: rgba(139, 92, 246, 0.15);
            color: var(--accent-purple);
        }

        .match-status-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(239, 68, 68, 0.18);
            color: var(--accent-red);
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 700;
            animation: live-blink 1.8s infinite;
        }

        @keyframes live-blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }

        .match-status-upcoming {
            display: inline-block;
            background: rgba(245, 158, 11, 0.15);
            color: var(--accent-orange);
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .match-status-finished {
            display: inline-block;
            background: rgba(107, 114, 128, 0.2);
            color: var(--text-muted);
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 500;
        }

        .btn-watch {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            padding: 7px 15px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-watch:hover {
            box-shadow: 0 4px 18px rgba(108, 60, 224, 0.45);
            color: #fff;
            transform: translateY(-1px);
        }

        .btn-detail-outline {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            padding: 7px 15px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-detail-outline:hover {
            border-color: var(--accent-purple);
            color: #fff;
        }

        /* ========== FEATURE CARDS ========== */
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: all var(--transition-smooth);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }

        .feature-card .card-icon-circle {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .icon-purple {
            background: rgba(139, 92, 246, 0.2);
            color: var(--accent-purple);
        }
        .icon-cyan {
            background: rgba(0, 212, 170, 0.2);
            color: var(--accent-cyan);
        }
        .icon-blue {
            background: rgba(77, 140, 245, 0.2);
            color: var(--accent-blue);
        }
        .icon-orange {
            background: rgba(245, 158, 11, 0.2);
            color: var(--accent-orange);
        }

        .feature-card h4 {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* ========== HOT RANKING SIDEBAR ========== */
        .ranking-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 20px;
            box-shadow: var(--shadow-md);
        }

        .ranking-card .ranking-title {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid var(--border-color);
            transition: all var(--transition-fast);
        }

        .ranking-item:last-child {
            border-bottom: none;
        }

        .ranking-item:hover {
            background: var(--bg-card-hover);
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--radius-sm);
        }

        .rank-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .rank-num.top1 {
            background: linear-gradient(135deg, #f59e0b, #e04090);
            color: #fff;
        }
        .rank-num.top2 {
            background: linear-gradient(135deg, #8b9cb8, #6b7280);
            color: #fff;
        }
        .rank-num.top3 {
            background: linear-gradient(135deg, #b87333, #8b5a2b);
            color: #fff;
        }
        .rank-num.normal {
            background: var(--bg-nav);
            color: var(--text-muted);
        }

        .rank-info .rank-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-primary);
        }
        .rank-info .rank-meta {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        .rank-heat {
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--accent-orange);
            margin-left: auto;
            white-space: nowrap;
        }

        /* ========== REVIEWS ========== */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition-smooth);
            height: 100%;
        }

        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-md);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .review-user {
            font-weight: 600;
            font-size: 0.85rem;
            color: #fff;
        }

        .review-tag {
            font-size: 0.7rem;
            color: var(--accent-purple);
            background: rgba(139, 92, 246, 0.12);
            padding: 2px 8px;
            border-radius: 10px;
        }

        .review-stars {
            color: var(--accent-orange);
            font-size: 0.75rem;
            margin-bottom: 6px;
        }

        .review-text {
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.6;
            margin-bottom: 6px;
        }

        .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .accordion-esports .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            margin-bottom: 10px;
            border-radius: var(--radius-md) !important;
            overflow: hidden;
        }

        .accordion-esports .accordion-button {
            background: var(--bg-card);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            box-shadow: none;
            border-radius: var(--radius-md) !important;
            transition: all var(--transition-fast);
        }

        .accordion-esports .accordion-button:not(.collapsed) {
            background: var(--bg-card-hover);
            color: var(--accent-cyan);
            box-shadow: none;
            border-bottom: 1px solid var(--border-color);
        }

        .accordion-esports .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }

        .accordion-esports .accordion-body {
            background: var(--bg-card);
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
            padding: 16px 20px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--gradient-cta);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h3 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.6rem;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }

        .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            padding: 15px 36px;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            box-shadow: 0 8px 28px rgba(108, 60, 224, 0.4);
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        .btn-cta-lg:hover {
            box-shadow: 0 12px 40px rgba(108, 60, 224, 0.6);
            transform: translateY(-3px);
            color: #fff;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-nav);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 24px;
            margin-top: 20px;
        }

        .footer-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 6px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 6px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
        }

        .footer-divider {
            border-color: var(--border-color);
            margin: 20px 0;
            opacity: 0.5;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            gap: 10px;
        }

        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.4rem;
            }
            .stat-value {
                font-size: 1.7rem;
            }
            .nav-panel-card {
                gap: 2px;
                padding: 4px 6px;
            }
            .nav-link-esports {
                padding: 7px 10px;
                font-size: 0.8rem;
            }
            .section-heading {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .btn-hero-outline {
                margin-left: 0;
                margin-top: 10px;
            }
            .hero-visual-card {
                margin-top: 24px;
            }
            .stat-value {
                font-size: 1.5rem;
            }
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                margin-top: 8px;
            }
            .nav-link-esports {
                justify-content: flex-start;
            }
            .nav-cta-btn {
                justify-content: center;
                margin-top: 4px;
            }
            .table-esports thead {
                display: none;
            }
            .table-esports tbody td {
                display: block;
                text-align: right;
                padding: 10px 14px;
                position: relative;
            }
            .table-esports tbody td::before {
                content: attr(data-label);
                float: left;
                font-weight: 600;
                color: var(--text-muted);
                font-size: 0.75rem;
                text-transform: uppercase;
            }
            .table-esports tbody tr {
                display: block;
                border-bottom: 2px solid var(--border-color);
                margin-bottom: 8px;
            }
            .section-heading {
                font-size: 1.4rem;
            }
            .cta-section {
                padding: 28px 18px;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-beian {
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .stat-value {
                font-size: 1.3rem;
            }
            .stat-item {
                padding: 6px 8px;
            }
            .btn-hero,
            .btn-hero-outline {
                padding: 12px 20px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
                margin-left: 0;
                margin-top: 8px;
            }
            .section-heading {
                font-size: 1.2rem;
            }
            .feature-card {
                padding: 20px 16px;
            }
            .review-card {
                padding: 16px;
            }
            .navbar-brand {
                font-size: 1.1rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #0a0e17;
            --bg-secondary: #111827;
            --bg-card: #161b25;
            --bg-elevated: #1a1f2e;
            --bg-input: #1e2433;
            --text-primary: #e8ecf1;
            --text-secondary: #b0b8c5;
            --text-muted: #6b7280;
            --accent-cyan: #00d4aa;
            --accent-cyan-glow: rgba(0, 212, 170, 0.3);
            --accent-purple: #7c5cfc;
            --accent-purple-glow: rgba(124, 92, 252, 0.25);
            --accent-gold: #f0a830;
            --accent-gold-glow: rgba(240, 168, 48, 0.3);
            --accent-rose: #f43f5e;
            --accent-blue: #3b82f6;
            --border-subtle: #1e293b;
            --border-card: #232b3a;
            --border-active: #00d4aa40;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
            --shadow-glow-cyan: 0 0 24px rgba(0, 212, 170, 0.2);
            --shadow-glow-purple: 0 0 20px rgba(124, 92, 252, 0.2);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 26px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --section-gap: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: #00f0c0;
        }
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
        }

        input {
            font-family: inherit;
        }

        .section-container {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 1400px) {
            .section-container {
                max-width: 1320px;
            }
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(10, 14, 23, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(10, 14, 23, 0.95);
            box-shadow: var(--shadow-md);
        }

        .navbar-esports {
            padding: 10px 0;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-primary) !important;
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .navbar-brand:hover {
            color: var(--accent-cyan) !important;
        }
        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--accent-cyan), #009e7a);
            color: #fff;
            font-size: 1.15rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-glow-cyan);
        }

        .navbar-toggler-esports {
            border: 1px solid var(--border-subtle);
            background: var(--bg-elevated);
            color: var(--text-primary);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            font-size: 1.2rem;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-esports:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .navbar-toggler-esports:focus {
            box-shadow: 0 0 0 3px var(--accent-cyan-glow);
        }

        .nav-panel-card {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            padding: 6px 10px;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-sm);
        }

        .nav-link-esports {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 9px 14px;
            border-radius: var(--radius-md);
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-decoration: none;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.3px;
        }
        .nav-link-esports:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
            text-decoration: none;
        }
        .nav-link-esports.active {
            color: #fff;
            background: rgba(0, 212, 170, 0.12);
            box-shadow: inset 0 0 0 1px var(--border-active);
        }
        .nav-link-esports .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            display: inline-block;
            flex-shrink: 0;
            box-shadow: 0 0 8px var(--accent-cyan-glow);
        }
        .nav-link-esports i {
            font-size: 0.85rem;
            opacity: 0.85;
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 18px;
            border-radius: var(--radius-md);
            font-size: 0.85rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-cyan), #009e7a);
            color: #000;
            border: none;
            white-space: nowrap;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-cyan);
            cursor: pointer;
        }
        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 32px rgba(0, 212, 170, 0.4);
            color: #000;
            background: linear-gradient(135deg, #00f0c0, #00b890);
        }
        .nav-cta-btn:active {
            transform: translateY(0);
        }
        .nav-cta-btn i {
            font-size: 0.9rem;
        }

        @media (max-width: 991px) {
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                margin-top: 10px;
                padding: 8px;
                border-radius: var(--radius-md);
            }
            .nav-link-esports {
                padding: 10px 14px;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
            .nav-cta-btn {
                margin-top: 6px;
                justify-content: center;
                width: 100%;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .navbar-brand {
                font-size: 1.05rem;
                gap: 6px;
            }
            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .section-container {
                padding-left: 12px;
                padding-right: 12px;
            }
        }

        /* ============ HERO ============ */
        .hero-section {
            position: relative;
            padding: 80px 0 70px;
            background: linear-gradient(180deg, #0f172a 0%, #0a0e17 100%);
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 170, 0.07) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 92, 252, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 212, 170, 0.1);
            border: 1px solid rgba(0, 212, 170, 0.3);
            color: var(--accent-cyan);
            font-size: 0.82rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
        }
        .hero-badge i {
            font-size: 0.75rem;
        }
        .hero-title {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.18;
            letter-spacing: -0.4px;
            color: #fff;
            margin-bottom: 16px;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-cyan), #00e8b8);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .hero-desc {
            font-size: 1.08rem;
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.6;
            margin-bottom: 28px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-tag {
            display: inline-block;
            padding: 7px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            background: var(--bg-elevated);
            color: var(--text-secondary);
            border: 1px solid var(--border-card);
            transition: all var(--transition-fast);
            cursor: default;
        }
        .hero-tag:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0, 212, 170, 0.05);
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-cyan), #009e7a);
            color: #000;
            border: none;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-cyan);
            text-decoration: none;
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(0, 212, 170, 0.45);
            color: #000;
            background: linear-gradient(135deg, #00f0c0, #00b890);
        }
        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 700;
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-card);
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            text-decoration: none;
        }
        .btn-hero-outline:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0, 212, 170, 0.04);
            text-decoration: none;
        }

        .hero-preview-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 1;
        }
        .hero-preview-card .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }
        .hero-preview-card .preview-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-preview-card .preview-title i {
            color: var(--accent-cyan);
        }
        .preview-live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--accent-rose);
            animation: pulse-dot 1.6s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(244, 63, 94, 0);
            }
        }
        .hero-schedule-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            background: var(--bg-elevated);
            margin-bottom: 8px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .hero-schedule-item:hover {
            border-color: var(--border-active);
            background: rgba(0, 212, 170, 0.03);
        }
        .hero-schedule-item .time-badge {
            font-family: var(--font-mono);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--accent-cyan);
            white-space: nowrap;
            min-width: 44px;
            text-align: center;
        }
        .hero-schedule-item .game-icon-sm {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-primary);
            flex-shrink: 0;
        }
        .hero-schedule-item .match-info {
            flex: 1;
            min-width: 0;
        }
        .hero-schedule-item .match-teams {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-primary);
        }
        .hero-schedule-item .match-league {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .hero-schedule-item .status-tag {
            font-size: 0.68rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            white-space: nowrap;
        }
        .status-upcoming {
            background: rgba(59, 130, 246, 0.15);
            color: var(--accent-blue);
        }
        .status-live {
            background: rgba(244, 63, 94, 0.15);
            color: var(--accent-rose);
            animation: pulse-dot 1.6s infinite;
        }

        @media (max-width: 991px) {
            .hero-section {
                padding: 50px 0 40px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .hero-preview-card {
                margin-top: 28px;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.6rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 20px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }
            .hero-btns {
                flex-direction: column;
            }
            .hero-schedule-item {
                flex-wrap: wrap;
                gap: 6px;
            }
        }

        /* ============ SECTION COMMON ============ */
        .section-block {
            padding: 70px 0;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-cyan);
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.3px;
            color: #fff;
            margin-bottom: 12px;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 36px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 44px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }

        /* ============ STATS CARDS ============ */
        .stat-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            border: 1px solid var(--border-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .stat-card:hover {
            border-color: var(--border-active);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow-cyan);
        }
        .stat-card .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .stat-icon-cyan {
            background: rgba(0, 212, 170, 0.12);
            color: var(--accent-cyan);
        }
        .stat-icon-purple {
            background: rgba(124, 92, 252, 0.12);
            color: var(--accent-purple);
        }
        .stat-icon-gold {
            background: rgba(240, 168, 48, 0.12);
            color: var(--accent-gold);
        }
        .stat-icon-blue {
            background: rgba(59, 130, 246, 0.12);
            color: var(--accent-blue);
        }
        .stat-icon-rose {
            background: rgba(244, 63, 94, 0.12);
            color: var(--accent-rose);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.5px;
            line-height: 1;
            margin-bottom: 4px;
            font-family: var(--font-mono);
        }
        .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .stat-trend {
            font-size: 0.7rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            margin-top: 4px;
        }
        .stat-trend.up {
            color: var(--accent-cyan);
        }
        .stat-trend.down {
            color: var(--accent-rose);
        }

        @media (max-width: 520px) {
            .stat-number {
                font-size: 1.6rem;
            }
            .stat-card {
                padding: 16px 14px;
            }
        }

        /* ============ SCHEDULE TABLE SECTION ============ */
        .schedule-table-wrap {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-card);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .schedule-table-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-card);
            flex-wrap: wrap;
            gap: 12px;
        }
        .schedule-table-header .table-title {
            font-weight: 800;
            font-size: 1.05rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .schedule-table-header .table-title i {
            color: var(--accent-cyan);
        }
        .date-filter-pills {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .date-pill {
            padding: 7px 16px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
            border: 1px solid var(--border-card);
            background: var(--bg-elevated);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .date-pill:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .date-pill.active {
            background: rgba(0, 212, 170, 0.15);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 12px rgba(0, 212, 170, 0.2);
        }
        .schedule-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-card);
            transition: all var(--transition-fast);
            cursor: pointer;
            flex-wrap: wrap;
        }
        .schedule-row:last-child {
            border-bottom: none;
        }
        .schedule-row:hover {
            background: rgba(255, 255, 255, 0.015);
        }
        .schedule-row .s-time {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--accent-cyan);
            min-width: 50px;
            white-space: nowrap;
        }
        .schedule-row .s-game-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: var(--bg-input);
            border-radius: 6px;
            padding: 5px 10px;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--text-secondary);
            white-space: nowrap;
            min-width: 70px;
            justify-content: center;
        }
        .schedule-row .s-matchup {
            flex: 1;
            min-width: 140px;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .schedule-row .s-matchup .vs-text {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.75rem;
        }
        .schedule-row .s-stage {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            white-space: nowrap;
            background: rgba(124, 92, 252, 0.12);
            color: var(--accent-purple);
        }
        .schedule-row .s-status {
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 50px;
            white-space: nowrap;
        }
        .s-status-upcoming {
            background: rgba(59, 130, 246, 0.12);
            color: var(--accent-blue);
        }
        .s-status-live {
            background: rgba(244, 63, 94, 0.15);
            color: var(--accent-rose);
        }
        .s-status-done {
            background: rgba(107, 114, 128, 0.12);
            color: var(--text-muted);
        }
        .schedule-row .s-remind-btn {
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            border: 1px solid var(--border-card);
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .schedule-row .s-remind-btn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0, 212, 170, 0.05);
        }

        @media (max-width: 768px) {
            .schedule-row {
                gap: 8px;
                padding: 12px 14px;
            }
            .schedule-row .s-matchup {
                font-size: 0.8rem;
                min-width: 100px;
            }
            .schedule-row .s-time {
                font-size: 0.75rem;
                min-width: 40px;
            }
            .schedule-table-header {
                padding: 12px 14px;
            }
            .date-pill {
                padding: 5px 10px;
                font-size: 0.7rem;
            }
        }
        @media (max-width: 520px) {
            .schedule-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .schedule-row .s-matchup {
                font-size: 0.85rem;
            }
        }

        /* ============ GAME CATEGORY CARDS ============ */
        .game-cat-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            border: 1px solid var(--border-card);
            text-align: center;
            transition: all var(--transition-smooth);
            height: 100%;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .game-cat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .game-cat-card:hover {
            border-color: var(--border-active);
            transform: translateY(-4px);
            box-shadow: var(--shadow-glow-cyan);
        }
        .game-cat-card:hover::before {
            opacity: 1;
        }
        .game-cat-card .cat-img-wrap {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-md);
            margin: 0 auto 14px;
            overflow: hidden;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--border-card);
        }
        .game-cat-card .cat-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .game-cat-card .cat-name {
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .game-cat-card .cat-count {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .game-cat-card .cat-arrow {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-top: 8px;
            transition: gap var(--transition-fast);
        }
        .game-cat-card:hover .cat-arrow {
            gap: 8px;
        }

        /* ============ REVIEWS ============ */
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            border: 1px solid var(--border-card);
            height: 100%;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--border-active);
            box-shadow: var(--shadow-sm);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--accent-cyan);
            flex-shrink: 0;
            border: 2px solid var(--border-card);
        }
        .reviewer-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .reviewer-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--accent-gold);
            font-size: 0.7rem;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }
        .review-time {
            font-size: 0.68rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ============ FAQ ============ */
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-active);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: color var(--transition-fast);
            letter-spacing: 0.2px;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-question i {
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }

        /* ============ CTA ============ */
        .cta-section {
            position: relative;
            padding: 70px 0;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d1525 100%);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .cta-card {
            position: relative;
            z-index: 1;
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-lg);
        }
        .cta-card .cta-title {
            font-size: 1.7rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 10px;
        }
        .cta-card .cta-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }
        .cta-card .cta-input-group {
            display: flex;
            gap: 10px;
            max-width: 460px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-card input {
            flex: 1;
            min-width: 200px;
            padding: 13px 18px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            background: var(--bg-input);
            color: var(--text-primary);
            font-size: 0.9rem;
            transition: border-color var(--transition-fast);
        }
        .cta-card input:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px var(--accent-cyan-glow);
        }
        .cta-card .btn-cta-submit {
            padding: 13px 24px;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 0.9rem;
            background: linear-gradient(135deg, var(--accent-cyan), #009e7a);
            color: #000;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-cyan);
            cursor: pointer;
        }
        .cta-card .btn-cta-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 32px rgba(0, 212, 170, 0.4);
        }

        @media (max-width: 520px) {
            .cta-card {
                padding: 28px 16px;
            }
            .cta-card .cta-title {
                font-size: 1.3rem;
            }
            .cta-card input {
                min-width: 100%;
            }
            .cta-card .btn-cta-submit {
                width: 100%;
            }
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #070b13;
            padding: 50px 0 30px;
            border-top: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .footer-brand {
            font-weight: 800;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .footer-links li a {
            color: var(--text-muted);
            font-size: 0.78rem;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-links li a:hover {
            color: var(--accent-cyan);
        }
        .footer-divider {
            border-color: var(--border-subtle);
            margin: 24px 0;
            opacity: 0.6;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            justify-content: space-between;
            align-items: center;
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
        }
        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

/* roulang page: category4 */
/* ========== 设计变量 ========== */
        :root {
            --bg-deep: #08081a;
            --bg-primary: #0c0c22;
            --bg-secondary: #111133;
            --bg-card: #161644;
            --bg-card-hover: #1c1c55;
            --bg-surface: #1a1a3e;
            --text-primary: #e8e8f5;
            --text-secondary: #b0b0d0;
            --text-muted: #70709a;
            --text-bright: #f5f5ff;
            --accent-purple: #7c3aed;
            --accent-blue: #4f46e5;
            --accent-cyan: #06b6d4;
            --accent-pink: #ec4899;
            --accent-glow-purple: rgba(124, 58, 237, 0.5);
            --accent-glow-cyan: rgba(6, 182, 212, 0.45);
            --accent-glow-blue: rgba(79, 70, 229, 0.4);
            --gradient-hero: linear-gradient(135deg, #0c0c22 0%, #16164a 40%, #0f0f35 70%, #0a0a1e 100%);
            --gradient-card: linear-gradient(160deg, #161644 0%, #1a1a50 50%, #12123a 100%);
            --gradient-cta: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #3b82f6 100%);
            --gradient-neon: linear-gradient(135deg, #7c3aed 0%, #06b6d4 50%, #3b82f6 100%);
            --border-color: #2a2a55;
            --border-glow: #3d3d70;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-card: 0 4px 28px rgba(80, 50, 200, 0.12);
            --shadow-card-hover: 0 8px 40px rgba(100, 60, 220, 0.22);
            --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.25);
            --shadow-neon: 0 0 20px rgba(6, 182, 212, 0.3);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        /* ========== 基础 Reset ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-heading);
            line-height: 1.65;
            background: var(--bg-deep);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
            color: var(--text-bright);
            font-weight: 700;
        }

        /* ========== 容器 ========== */
        .section-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 70px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 44px 0;
            }
            .section-container {
                padding: 0 16px;
            }
        }

        /* ========== Header / 导航 ========== */
        .site-header {
            background: rgba(12, 12, 34, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
        }

        .navbar-esports {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--text-bright) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--gradient-neon);
            color: #fff;
            font-size: 1.1rem;
            box-shadow: var(--shadow-glow);
            flex-shrink: 0;
        }

        .nav-panel-card {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            border-radius: 40px;
            padding: 6px 10px;
            border: 1px solid var(--border-color);
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }

        .nav-link-esports {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            font-weight: 500;
            padding: 9px 16px;
            border-radius: 30px;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            position: relative;
        }

        .nav-link-esports:hover {
            color: var(--text-bright);
            background: rgba(124, 58, 237, 0.15);
        }

        .nav-link-esports.active {
            color: #fff;
            background: var(--gradient-neon);
            box-shadow: var(--shadow-glow);
            font-weight: 600;
        }

        .nav-link-esports.active .nav-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
            }
            50% {
                box-shadow: 0 0 16px rgba(255, 255, 255, 0.95);
            }
        }

        .nav-cta-btn {
            background: var(--gradient-cta);
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 10px 20px;
            border-radius: 30px;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow);
            display: flex;
            align-items: center;
            gap: 6px;
            border: none;
            cursor: pointer;
        }

        .nav-cta-btn:hover {
            box-shadow: 0 0 36px rgba(124, 58, 237, 0.5);
            transform: translateY(-1px);
        }

        .nav-cta-btn:active {
            transform: scale(0.96);
        }

        .navbar-toggler-esports {
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-bright);
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 1.2rem;
            transition: all var(--transition-fast);
        }

        .navbar-toggler-esports:hover {
            background: var(--bg-card-hover);
            border-color: var(--accent-purple);
        }

        @media (max-width: 991px) {
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                border-radius: var(--radius-lg);
                padding: 12px;
                gap: 4px;
                margin-top: 10px;
                width: 100%;
            }
            .nav-link-esports {
                justify-content: center;
                padding: 11px 16px;
            }
            .nav-cta-btn {
                justify-content: center;
                margin-top: 6px;
                text-align: center;
            }
            .navbar-esports {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 520px) {
            .navbar-brand {
                font-size: 1.15rem;
            }
            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 0.95rem;
            }
            .nav-link-esports {
                font-size: 0.82rem;
                padding: 9px 12px;
            }
            .nav-cta-btn {
                font-size: 0.8rem;
                padding: 9px 16px;
            }
        }

        /* ========== Hero 板块 ========== */
        .hero-section {
            position: relative;
            background: var(--gradient-hero);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 90px 0 80px;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 80%, rgba(79, 70, 229, 0.18) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-section .section-container {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(124, 58, 237, 0.2);
            border: 1px solid rgba(124, 58, 237, 0.45);
            color: #c4b5fd;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            animation: fadeInUp 0.7s ease-out;
        }

        .hero-badge .live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 10px #10b981;
            animation: pulse-live 1.4s ease-in-out infinite;
        }

        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 8px #10b981;
            }
            50% {
                box-shadow: 0 0 22px #10b981, 0 0 40px rgba(16, 185, 129, 0.4);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--text-bright);
            margin-bottom: 16px;
            letter-spacing: 1px;
            animation: fadeInUp 0.7s ease-out 0.1s both;
        }

        .hero-title .gradient-text {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 24px;
            line-height: 1.7;
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
            animation: fadeInUp 0.7s ease-out 0.3s both;
        }

        .hero-tag {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: var(--text-secondary);
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }

        .hero-tag:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(6, 182, 212, 0.08);
        }

        .hero-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            animation: fadeInUp 0.7s ease-out 0.4s both;
        }

        .btn-hero-primary {
            background: var(--gradient-neon);
            color: #fff;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }

        .btn-hero-primary:hover {
            box-shadow: 0 0 44px rgba(124, 58, 237, 0.55);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-hero-outline {
            background: transparent;
            border: 2px solid var(--border-glow);
            color: var(--text-bright);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-outline:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: var(--shadow-neon);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.1rem;
                letter-spacing: 0.3px;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-section {
                padding: 56px 0 48px;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-tag {
                font-size: 0.78rem;
                padding: 5px 12px;
            }
        }

        /* ========== 数据指标卡片 ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .stat-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--accent-glow-purple);
            filter: blur(40px);
            opacity: 0;
            transition: opacity var(--transition-smooth);
            pointer-events: none;
        }

        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .stat-card:hover::after {
            opacity: 0.5;
        }

        .stat-value {
            font-size: 2.2rem;
            font-weight: 900;
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-value {
                font-size: 1.6rem;
            }
            .stat-label {
                font-size: 0.74rem;
            }
        }

        /* ========== 板块标题 ========== */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .section-header .accent-line {
            display: inline-block;
            width: 50px;
            height: 3px;
            background: var(--gradient-neon);
            border-radius: 2px;
            margin-bottom: 12px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.5rem;
            }
            .section-header p {
                font-size: 0.85rem;
            }
        }

        /* ========== 赛程表格板块 ========== */
        .schedule-table-wrapper {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .schedule-table-wrapper .table-header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 12px;
        }

        .table-header-bar .table-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-bright);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .table-filter-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 7px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .filter-tab:hover {
            border-color: var(--border-glow);
            color: var(--text-bright);
        }

        .filter-tab.active {
            background: var(--accent-purple);
            color: #fff;
            border-color: var(--accent-purple);
            font-weight: 600;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .schedule-table thead th {
            background: rgba(0, 0, 0, 0.25);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-color);
            white-space: nowrap;
            text-align: left;
        }

        .schedule-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(42, 42, 85, 0.5);
            color: var(--text-secondary);
            vertical-align: middle;
            white-space: nowrap;
        }

        .schedule-table tbody tr {
            transition: background var(--transition-fast);
        }

        .schedule-table tbody tr:hover {
            background: rgba(124, 58, 237, 0.06);
        }

        .schedule-table .team-cell {
            color: var(--text-bright);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-avatar-placeholder {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--gradient-neon);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .status-live {
            background: rgba(239, 68, 68, 0.18);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.35);
            animation: pulse-status 2s ease-in-out infinite;
        }

        @keyframes pulse-status {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
            }
            50% {
                box-shadow: 0 0 16px rgba(239, 68, 68, 0.6);
            }
        }

        .status-upcoming {
            background: rgba(6, 182, 212, 0.15);
            color: #22d3ee;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .status-done {
            background: rgba(107, 107, 138, 0.15);
            color: #9090b0;
            border: 1px solid rgba(107, 107, 138, 0.25);
        }

        .btn-sm-outline {
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 0.78rem;
            font-weight: 500;
            border: 1px solid var(--border-glow);
            color: var(--text-secondary);
            background: transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-sm-outline:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(6, 182, 212, 0.06);
        }

        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        @media (max-width: 768px) {
            .schedule-table {
                font-size: 0.78rem;
            }
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 10px 10px;
            }
            .table-header-bar {
                padding: 14px 14px;
            }
            .filter-tab {
                padding: 5px 10px;
                font-size: 0.74rem;
            }
        }

        /* ========== 游戏分类赛程卡片 ========== */
        .game-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .game-card {
            background: var(--gradient-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .game-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }

        .game-card-img {
            height: 150px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .game-card-img .overlay-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 0.74rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }

        .game-card-body {
            padding: 16px 18px;
        }

        .game-card-body h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-bright);
        }

        .game-card-body .game-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .game-card-body .game-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        @media (max-width: 1024px) {
            .game-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }

        @media (max-width: 520px) {
            .game-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .game-card-img {
                height: 110px;
            }
            .game-card-body h4 {
                font-size: 0.88rem;
            }
        }

        /* ========== 卖点板块 ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            text-align: center;
            transition: all var(--transition-smooth);
        }

        .feature-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .feature-icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.18);
            color: var(--accent-purple);
            font-size: 1.4rem;
            margin-bottom: 16px;
            transition: all var(--transition-smooth);
        }

        .feature-card:hover .feature-icon-circle {
            background: var(--accent-purple);
            color: #fff;
            box-shadow: var(--shadow-glow);
        }

        .feature-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin: 0;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .feature-card {
                padding: 20px 16px;
            }
        }

        @media (max-width: 520px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 用户评论板块 ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            transition: all var(--transition-smooth);
        }

        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--gradient-neon);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .review-user-info .review-name {
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--text-bright);
        }

        .review-user-info .review-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .review-stars {
            color: #fbbf24;
            font-size: 0.75rem;
            margin-bottom: 8px;
        }

        .review-text {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ 板块 ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-glow);
        }

        .faq-question {
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-bright);
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: rgba(124, 58, 237, 0.06);
        }

        .faq-question .faq-arrow {
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 22px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        @media (max-width: 520px) {
            .faq-question {
                padding: 14px 16px;
                font-size: 0.85rem;
            }
            .faq-answer {
                padding: 0 16px;
                font-size: 0.78rem;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
        }

        /* ========== CTA 板块 ========== */
        .cta-section {
            background: var(--gradient-hero);
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            border-radius: var(--radius-xl);
            padding: 60px 40px;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25) 0%, transparent 65%);
            pointer-events: none;
            z-index: 1;
        }

        .cta-section>* {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-bright);
            margin-bottom: 12px;
        }

        .cta-section p {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-neon);
            color: #fff;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 34px;
            font-size: 1.08rem;
            letter-spacing: 0.5px;
            box-shadow: var(--shadow-glow);
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
        }

        .btn-cta-large:hover {
            box-shadow: 0 0 50px rgba(124, 58, 237, 0.6);
            transform: translateY(-3px);
            color: #fff;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 40px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
            .btn-cta-large {
                padding: 14px 30px;
                font-size: 0.95rem;
            }
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
            margin-top: 60px;
        }

        .footer-brand {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--text-bright);
            margin-bottom: 8px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
        }

        .footer-divider {
            border-color: var(--border-color);
            margin: 20px 0;
            opacity: 0.6;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 32px 0 20px;
                margin-top: 40px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* ========== 通用辅助 ========== */
        .text-center {
            text-align: center;
        }

        .mb-0 {
            margin-bottom: 0 !important;
        }

        /* ========== 响应式通用调整 ========== */
        @media (max-width: 520px) {
            :root {
                --radius-lg: 14px;
                --radius-xl: 18px;
            }
            html {
                font-size: 15px;
            }
        }

/* roulang page: category6 */
:root {
            --bg-primary: #080c14;
            --bg-secondary: #0f1520;
            --bg-card: #131a28;
            --bg-card-hover: #1a2235;
            --bg-nav: #0d1320;
            --text-primary: #e8ecf2;
            --text-secondary: #b0b8c5;
            --text-muted: #6b7385;
            --accent-cyan: #00c8ff;
            --accent-purple: #8b5cf6;
            --accent-green: #00e5a0;
            --accent-orange: #f59e0b;
            --accent-pink: #ec4899;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-card: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(0, 200, 255, 0.25);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55);
            --shadow-glow-cyan: 0 0 20px rgba(0, 200, 255, 0.15), 0 0 60px rgba(0, 200, 255, 0.05);
            --shadow-glow-purple: 0 0 20px rgba(139, 92, 246, 0.15), 0 0 60px rgba(139, 92, 246, 0.05);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', monospace;
            --section-gap: 80px;
            --section-gap-sm: 50px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            background-image:
                radial-gradient(ellipse at 20% 15%, rgba(0, 200, 255, 0.03) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 30%, rgba(139, 92, 246, 0.03) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 60%, rgba(0, 229, 160, 0.02) 0%, transparent 50%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--accent-cyan);
            transition: color var(--transition-fast);
        }
        a:hover {
            color: #33d6ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        input,
        select,
        textarea {
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .section-container {
            width: 100%;
            max-width: 1260px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(13, 19, 32, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 0;
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }

        .navbar-esports {
            padding: 0;
            align-items: center;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff !important;
            display: flex;
            align-items: center;
            gap: 9px;
            white-space: nowrap;
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
        }
        .navbar-brand:hover {
            color: var(--accent-cyan) !important;
        }
        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: #fff;
            font-size: 1.05rem;
            box-shadow: 0 0 16px rgba(0, 200, 255, 0.3);
        }

        .navbar-toggler-esports {
            border: 1px solid var(--border-card);
            color: var(--text-primary);
            padding: 7px 12px;
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            font-size: 1.15rem;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-esports:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .navbar-toggler-esports:focus {
            box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.2);
            outline: none;
        }

        .nav-panel-card {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--bg-card);
            border-radius: 40px;
            padding: 5px 6px;
            border: 1px solid var(--border-card);
            flex-wrap: wrap;
            box-shadow: var(--shadow-sm);
        }
        .nav-link-esports {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 9px 15px;
            border-radius: 30px;
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.2px;
        }
        .nav-link-esports .nav-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--text-muted);
            display: inline-block;
            transition: all var(--transition-fast);
        }
        .nav-link-esports:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-link-esports.active {
            color: #fff;
            background: linear-gradient(135deg, rgba(0, 200, 255, 0.2), rgba(139, 92, 246, 0.2));
            font-weight: 600;
            box-shadow: 0 0 14px rgba(0, 200, 255, 0.12);
        }
        .nav-link-esports.active .nav-dot {
            background: var(--accent-cyan);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.6);
            width: 8px;
            height: 8px;
        }
        .nav-cta-btn {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 9px 18px;
            border-radius: 30px;
            background: linear-gradient(135deg, var(--accent-cyan), #0098cc);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 0 18px rgba(0, 200, 255, 0.2);
            letter-spacing: 0.3px;
            border: none;
            cursor: pointer;
        }
        .nav-cta-btn:hover {
            box-shadow: 0 0 28px rgba(0, 200, 255, 0.4);
            transform: translateY(-1px);
            background: linear-gradient(135deg, #1ad0ff, #00a8dd);
        }
        .nav-cta-btn:active {
            transform: scale(0.97);
        }

        /* ========== HERO ========== */
        .hero-news {
            position: relative;
            padding: 90px 0 80px;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 30% 25%, rgba(0, 200, 255, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
                var(--bg-primary);
        }
        .hero-news::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -180px;
            width: 620px;
            height: 620px;
            background: radial-gradient(circle, rgba(0, 200, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero-news .hero-bg-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 48%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 30%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.7) 30%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-news-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .hero-news-text .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }
        .hero-badge-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            border: 1px solid var(--border-card);
            background: var(--bg-card);
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .hero-badge-tag.hot {
            border-color: rgba(245, 158, 11, 0.4);
            color: var(--accent-orange);
            background: rgba(245, 158, 11, 0.08);
        }
        .hero-badge-tag.live {
            border-color: rgba(0, 229, 160, 0.4);
            color: var(--accent-green);
            background: rgba(0, 229, 160, 0.08);
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.3);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 229, 160, 0);
            }
        }
        .hero-news-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .hero-news-text h1 .highlight {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-news-text .hero-subtitle {
            font-size: 1.08rem;
            color: var(--text-secondary);
            margin-bottom: 26px;
            line-height: 1.7;
            max-width: 480px;
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            background: linear-gradient(135deg, var(--accent-cyan), #0088cc);
            color: #fff;
            box-shadow: 0 0 22px rgba(0, 200, 255, 0.25);
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
        }
        .btn-hero-primary:hover {
            box-shadow: 0 0 34px rgba(0, 200, 255, 0.45);
            transform: translateY(-2px);
            color: #fff;
            background: linear-gradient(135deg, #1ad0ff, #0099dd);
        }
        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .btn-hero-outline:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 200, 255, 0.06);
            color: #fff;
        }
        .hero-news-visual {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .hero-featured-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .hero-featured-card::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-featured-card .featured-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--accent-cyan);
            margin-bottom: 6px;
        }
        .hero-featured-card .featured-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .hero-featured-card .featured-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 14px;
        }
        .hero-stats-mini {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .hero-stat-chip {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            border: 1px solid var(--border-card);
            text-align: center;
            transition: all var(--transition-fast);
        }
        .hero-stat-chip:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-cyan);
        }
        .hero-stat-chip .stat-val {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            font-family: var(--font-mono);
            letter-spacing: 0.5px;
        }
        .hero-stat-chip .stat-lbl {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ========== SECTION COMMONS ========== */
        .section-pad {
            padding: var(--section-gap) 0;
        }
        .section-pad-sm {
            padding: var(--section-gap-sm) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }
        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
        }
        .section-divider {
            width: 50px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            margin: 14px auto 0;
        }

        /* ========== STATS ROW ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 22px 16px;
            border: 1px solid var(--border-card);
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -40px;
            width: 90px;
            height: 90px;
            background: radial-gradient(circle, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            transition: all var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-cyan);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .stat-card:hover::before {
            top: -20px;
            left: -20px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
        }
        .stat-card .stat-icon {
            font-size: 1.6rem;
            margin-bottom: 8px;
            display: block;
        }
        .stat-card .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            font-family: var(--font-mono);
            letter-spacing: 0.5px;
        }
        .stat-card .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.2px;
        }

        /* ========== HEADLINE CARDS ========== */
        .headline-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 18px;
        }
        .headline-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .headline-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-cyan);
            transform: translateY(-3px);
        }
        .headline-card .hl-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: var(--bg-secondary);
        }
        .headline-card .hl-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .headline-card:hover .hl-img-wrap img {
            transform: scale(1.06);
        }
        .headline-card .hl-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 5px 11px;
            border-radius: 16px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 2;
            background: var(--accent-purple);
            color: #fff;
        }
        .headline-card .hl-tag.cyan {
            background: var(--accent-cyan);
            color: #000;
        }
        .headline-card .hl-tag.green {
            background: var(--accent-green);
            color: #000;
        }
        .headline-card .hl-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .headline-card .hl-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .headline-card .hl-excerpt {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .headline-card .hl-meta {
            font-size: 0.72rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            margin-top: 10px;
            align-items: center;
        }
        .headline-card.featured {
            grid-row: span 2;
        }
        .headline-card.featured .hl-title {
            font-size: 1.2rem;
        }

        /* ========== CATEGORY PANEL ========== */
        .category-panel-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
        }
        .cat-panel-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px 18px;
            text-align: center;
            border: 1px solid var(--border-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .cat-panel-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-smooth);
            border-radius: 0 0 var(--radius-md) var(--radius-md);
        }
        .cat-panel-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow-purple);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .cat-panel-card:hover::after {
            transform: scaleX(1);
        }
        .cat-panel-card .cat-icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(0, 200, 255, 0.08);
            font-size: 1.4rem;
            margin-bottom: 12px;
            transition: all var(--transition-smooth);
        }
        .cat-panel-card:hover .cat-icon-circle {
            background: rgba(0, 200, 255, 0.18);
            box-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
        }
        .cat-panel-card .cat-name {
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        .cat-panel-card .cat-count {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ========== RANKING LIST ========== */
        .ranking-list-wrap {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-card);
            overflow: hidden;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .ranking-item:last-child {
            border-bottom: none;
        }
        .ranking-item:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .rank-num {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            flex-shrink: 0;
            color: #fff;
            background: var(--bg-secondary);
            border: 1.5px solid var(--border-card);
        }
        .rank-num.top1 {
            background: linear-gradient(135deg, #f59e0b, #e67e00);
            border-color: #f59e0b;
            box-shadow: 0 0 14px rgba(245, 158, 11, 0.35);
        }
        .rank-num.top2 {
            background: linear-gradient(135deg, #94a3b8, #64748b);
            border-color: #94a3b8;
        }
        .rank-num.top3 {
            background: linear-gradient(135deg, #b87333, #8b4e1e);
            border-color: #b87333;
        }
        .rank-info {
            flex: 1;
            min-width: 0;
        }
        .rank-title {
            font-weight: 600;
            color: #fff;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-tag-sm {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            background: rgba(0, 200, 255, 0.12);
            color: var(--accent-cyan);
            margin-left: 6px;
        }
        .rank-views {
            font-size: 0.78rem;
            color: var(--text-muted);
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 22px;
            border: 1px solid var(--border-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .review-top {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            color: #fff;
            font-size: 0.85rem;
        }
        .review-tag {
            font-size: 0.68rem;
            color: var(--text-muted);
        }
        .review-stars {
            color: #f59e0b;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .review-time {
            font-size: 0.68rem;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-glow);
        }
        .faq-question {
            padding: 18px 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
            user-select: none;
            transition: all var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-icon {
            transition: transform var(--transition-fast);
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 22px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 22px 18px;
        }

        /* ========== CTA SECTION ========== */
        .cta-news-section {
            background:
                radial-gradient(ellipse at 30% 40%, rgba(0, 200, 255, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 55%),
                var(--bg-secondary);
            border-radius: var(--radius-xl);
            margin: 0 20px;
            border: 1px solid var(--border-card);
            position: relative;
            overflow: hidden;
        }
        .cta-news-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -100px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(0, 200, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-news-inner {
            position: relative;
            z-index: 2;
            padding: 50px 40px;
            text-align: center;
        }
        .cta-news-inner h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }
        .cta-news-inner p {
            color: var(--text-secondary);
            margin-bottom: 22px;
            font-size: 0.95rem;
        }
        .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.4px;
            background: linear-gradient(135deg, var(--accent-purple), #6d28d9);
            color: #fff;
            box-shadow: 0 0 24px rgba(139, 92, 246, 0.3);
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
        }
        .btn-cta-lg:hover {
            box-shadow: 0 0 38px rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
            color: #fff;
            background: linear-gradient(135deg, #9b6dff, #7c3aed);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-nav);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 20px;
            margin-top: 20px;
        }
        .footer-brand {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .footer-links li a {
            font-size: 0.78rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-links li a:hover {
            color: var(--accent-cyan);
        }
        .footer-divider {
            border-color: var(--border-subtle);
            margin: 28px 0 18px;
            opacity: 0.5;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .headline-grid {
                grid-template-columns: 1fr 1fr;
            }
            .headline-card.featured {
                grid-column: 1 / -1;
                grid-row: auto;
            }
            .category-panel-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-news-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-news .hero-bg-img {
                width: 80%;
                opacity: 0.12;
            }
        }
        @media (max-width: 991px) {
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
                border-radius: var(--radius-md);
                padding: 8px;
                margin-top: 8px;
                background: var(--bg-card);
            }
            .nav-link-esports {
                border-radius: var(--radius-sm);
                padding: 10px 14px;
            }
            .nav-cta-btn {
                border-radius: var(--radius-sm);
                justify-content: center;
                margin-top: 4px;
            }
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .headline-grid {
                grid-template-columns: 1fr;
            }
            .category-panel-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .reviews-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-news {
                padding: 60px 0 50px;
            }
            .hero-news-text h1 {
                font-size: 2rem;
            }
            .section-pad {
                padding: 50px 0;
            }
        }
        @media (max-width: 767px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .category-panel-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .headline-grid {
                grid-template-columns: 1fr;
            }
            .hero-news-text h1 {
                font-size: 1.7rem;
            }
            .hero-news-text .hero-subtitle {
                font-size: 0.9rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .hero-stats-mini {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .hero-stat-chip {
                padding: 12px 10px;
            }
            .hero-stat-chip .stat-val {
                font-size: 1.3rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .cta-news-inner {
                padding: 30px 20px;
            }
            .cta-news-inner h3 {
                font-size: 1.3rem;
            }
            .site-header {
                padding: 6px 0;
            }
            .navbar-brand {
                font-size: 1.05rem;
            }
            .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-card {
                padding: 14px 8px;
            }
            .stat-card .stat-number {
                font-size: 1.4rem;
            }
            .category-panel-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .cat-panel-card {
                padding: 16px 10px;
            }
            .hero-news {
                padding: 40px 0 35px;
            }
            .hero-news-text h1 {
                font-size: 1.4rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 10px 18px;
                font-size: 0.82rem;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .ranking-item {
                padding: 12px 14px;
                gap: 8px;
            }
            .rank-num {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }
            .section-container {
                padding-left: 12px;
                padding-right: 12px;
            }
            .cta-news-section {
                margin: 0 8px;
                border-radius: var(--radius-lg);
            }
        }

/* roulang page: category5 */
:root {
            --bg-deep: #060b14;
            --bg-surface: #0d1322;
            --bg-card: #111b2d;
            --bg-card-hover: #162032;
            --bg-elevated: #18253b;
            --text-primary: #e8ecf2;
            --text-secondary: #b0bdd0;
            --text-muted: #6e7d94;
            --accent-neon: #0af0c5;
            --accent-neon-dim: #07c49e;
            --accent-blue: #4da8ff;
            --accent-purple: #8b5cf6;
            --accent-gold: #f0b90b;
            --accent-pink: #f06292;
            --accent-orange: #ff8a50;
            --border-subtle: #1e2d44;
            --border-card: #243249;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-xl: 28px;
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-elevated: 0 8px 36px rgba(0, 0, 0, 0.5);
            --shadow-neon: 0 0 30px rgba(10, 240, 197, 0.15);
            --shadow-neon-strong: 0 0 50px rgba(10, 240, 197, 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);
            --font-heading: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            --section-gap: 80px;
            --section-gap-sm: 50px;
        }

        *,
        *::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-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input,
        button,
        select,
        textarea {
            font-family: inherit;
        }

        .section-container {
            width: 100%;
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ===== HEADER / NAV ===== */
        .site-header {
            background: rgba(13, 19, 34, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(13, 19, 34, 0.96);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }
        .navbar-esports {
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--text-primary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.3px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .navbar-brand:hover {
            color: var(--accent-neon) !important;
        }
        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--accent-neon-dim), #0a8f6e);
            color: #fff;
            font-size: 1.15rem;
            box-shadow: var(--shadow-neon);
            flex-shrink: 0;
        }
        .navbar-toggler-esports {
            border: 1px solid var(--border-card);
            color: var(--text-primary);
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            font-size: 1.1rem;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-esports:hover {
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            background: var(--bg-card-hover);
        }
        .navbar-toggler-esports:focus {
            box-shadow: 0 0 0 3px rgba(10, 240, 197, 0.2);
            outline: none;
        }
        .nav-panel-card {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            border-radius: 40px;
            padding: 6px 10px;
            border: 1px solid var(--border-card);
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }
        .nav-link-esports {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 32px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-link-esports:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-link-esports.active {
            color: var(--accent-neon);
            background: rgba(10, 240, 197, 0.08);
            font-weight: 600;
            box-shadow: inset 0 0 0 1px rgba(10, 240, 197, 0.25);
        }
        .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-neon);
            display: inline-block;
            flex-shrink: 0;
            box-shadow: 0 0 8px var(--accent-neon);
        }
        .nav-cta-btn {
            margin-left: 8px;
            padding: 9px 20px;
            border-radius: 32px;
            background: linear-gradient(135deg, var(--accent-neon-dim), #0a8f6e);
            color: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            border: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-neon);
            cursor: pointer;
        }
        .nav-cta-btn:hover {
            box-shadow: var(--shadow-neon-strong);
            transform: translateY(-1px);
            background: linear-gradient(135deg, #0cf7d2, #0bc08a);
            color: #fff;
        }
        .nav-cta-btn:active {
            transform: scale(0.97);
            transition: transform 0.1s ease;
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            padding: 90px 0 100px;
            background: linear-gradient(180deg, #0a101d 0%, var(--bg-deep) 50%, var(--bg-deep) 100%);
            overflow: hidden;
        }
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            pointer-events: none;
            z-index: 0;
        }
        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            filter: blur(180px);
            pointer-events: none;
            z-index: 0;
        }
        .hero-glow.glow-left {
            top: -100px;
            left: -150px;
            background: rgba(10, 240, 197, 0.08);
        }
        .hero-glow.glow-right {
            bottom: -100px;
            right: -150px;
            background: rgba(139, 92, 246, 0.06);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 860px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(10, 240, 197, 0.1);
            border: 1px solid rgba(10, 240, 197, 0.3);
            color: var(--accent-neon);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 22px;
            letter-spacing: 0.4px;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4.5vw, 3.4rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
            color: var(--text-primary);
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent-neon), #4df0c5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }
        .hero-desc {
            color: var(--text-secondary);
            font-size: 1.12rem;
            max-width: 650px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 34px;
        }
        .hero-tag {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            color: var(--text-secondary);
            padding: 7px 16px;
            border-radius: 24px;
            font-size: 0.85rem;
            transition: all var(--transition-fast);
            cursor: default;
        }
        .hero-tag:hover {
            border-color: var(--accent-neon-dim);
            color: var(--accent-neon);
            background: rgba(10, 240, 197, 0.06);
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn-neon {
            padding: 14px 34px;
            border-radius: 36px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            background: linear-gradient(135deg, var(--accent-neon-dim), #0a8f6e);
            color: #fff;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-neon);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            letter-spacing: 0.3px;
        }
        .btn-neon:hover {
            box-shadow: var(--shadow-neon-strong);
            transform: translateY(-2px);
            color: #fff;
            background: linear-gradient(135deg, #0cf7d2, #0bc08a);
        }
        .btn-neon:active {
            transform: scale(0.97);
            transition: transform 0.1s ease;
        }
        .btn-outline-neon {
            padding: 14px 34px;
            border-radius: 36px;
            font-weight: 700;
            font-size: 1rem;
            border: 2px solid var(--border-card);
            background: transparent;
            color: var(--text-primary);
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            letter-spacing: 0.3px;
        }
        .btn-outline-neon:hover {
            border-color: var(--accent-neon);
            color: var(--accent-neon);
            background: rgba(10, 240, 197, 0.04);
            box-shadow: var(--shadow-neon);
        }

        /* ===== SECTIONS ===== */
        .section-block {
            padding: var(--section-gap) 0;
            position: relative;
            z-index: 1;
        }
        .section-block.section-alt {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--accent-neon);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 3vw, 2.3rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 640px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        .text-center-mx {
            text-align: center;
        }
        .text-center-mx .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== STATS CARDS ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 28px 22px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(10, 240, 197, 0.03);
            pointer-events: none;
            transition: all var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: var(--accent-neon-dim);
            box-shadow: var(--shadow-neon);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .stat-card:hover::before {
            background: rgba(10, 240, 197, 0.06);
            width: 120px;
            height: 120px;
            top: -40px;
            right: -40px;
        }
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.3rem;
            color: #fff;
            position: relative;
            z-index: 1;
        }
        .stat-icon.icon-neon {
            background: linear-gradient(135deg, var(--accent-neon-dim), #0a8f6e);
            box-shadow: 0 0 16px rgba(10, 240, 197, 0.3);
        }
        .stat-icon.icon-blue {
            background: linear-gradient(135deg, #4da8ff, #2b7de0);
            box-shadow: 0 0 16px rgba(77, 168, 255, 0.3);
        }
        .stat-icon.icon-purple {
            background: linear-gradient(135deg, #8b5cf6, #6d3fd4);
            box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
        }
        .stat-icon.icon-gold {
            background: linear-gradient(135deg, #f0b90b, #d4a30a);
            box-shadow: 0 0 16px rgba(240, 185, 11, 0.3);
        }
        .stat-value {
            font-family: var(--font-heading);
            font-size: 2.3rem;
            font-weight: 900;
            color: var(--text-primary);
            letter-spacing: -1px;
            position: relative;
            z-index: 1;
        }
        .stat-unit {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-left: 2px;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
            position: relative;
            z-index: 1;
        }

        /* ===== GAME CARDS GRID ===== */
        .game-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .game-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .game-card:hover {
            border-color: var(--accent-neon-dim);
            box-shadow: var(--shadow-elevated);
            transform: translateY(-4px);
        }
        .game-card-img-wrap {
            position: relative;
            overflow: hidden;
            height: 180px;
            background: var(--bg-elevated);
        }
        .game-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .game-card:hover .game-card-img-wrap img {
            transform: scale(1.06);
        }
        .game-card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(6, 11, 20, 0.85) 100%);
            pointer-events: none;
        }
        .game-card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            color: var(--accent-neon);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            border: 1px solid rgba(10, 240, 197, 0.3);
            z-index: 2;
        }
        .game-card-body {
            padding: 20px 18px 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }
        .game-card-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }
        .game-card-meta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .game-card-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .game-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
        }
        .game-tag-sm {
            font-size: 0.74rem;
            padding: 4px 10px;
            border-radius: 16px;
            background: var(--bg-elevated);
            color: var(--text-secondary);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }
        .game-tag-sm:hover {
            border-color: var(--accent-neon-dim);
            color: var(--accent-neon);
        }
        .game-card-arrow {
            align-self: flex-end;
            margin-top: auto;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            font-size: 0.9rem;
        }
        .game-card:hover .game-card-arrow {
            background: var(--accent-neon-dim);
            color: #fff;
            box-shadow: var(--shadow-neon);
        }

        /* ===== RANKING TABLE ===== */
        .ranking-table-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .ranking-table thead th {
            background: var(--bg-elevated);
            color: var(--text-secondary);
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 2px solid var(--border-card);
            font-size: 0.82rem;
            letter-spacing: 0.4px;
        }
        .ranking-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-subtle);
            vertical-align: middle;
        }
        .ranking-table tbody tr {
            transition: background var(--transition-fast);
        }
        .ranking-table tbody tr:hover {
            background: rgba(10, 240, 197, 0.03);
        }
        .rank-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .rank-num.rank-top {
            background: linear-gradient(135deg, #f0b90b, #e0a800);
            color: #1a1a1a;
            box-shadow: 0 0 12px rgba(240, 185, 11, 0.4);
        }
        .rank-num.rank-silver {
            background: linear-gradient(135deg, #b0bec5, #90a4ae);
            color: #1a1a1a;
        }
        .rank-num.rank-bronze {
            background: linear-gradient(135deg, #e0a060, #c08040);
            color: #1a1a1a;
        }
        .rank-num.rank-normal {
            background: var(--bg-elevated);
            color: var(--text-muted);
        }
        .game-name-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .game-name-dot {
            width: 10px;
            height: 10px;
            border-radius: 3px;
            flex-shrink: 0;
        }
        .heat-bar-wrap {
            background: var(--bg-elevated);
            border-radius: 8px;
            height: 8px;
            width: 100%;
            max-width: 140px;
            overflow: hidden;
        }
        .heat-bar-fill {
            height: 100%;
            border-radius: 8px;
            background: linear-gradient(90deg, var(--accent-neon-dim), var(--accent-neon));
            transition: width var(--transition-smooth);
        }
        .btn-table-link {
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            background: transparent;
            border: 1px solid var(--border-card);
            color: var(--accent-neon);
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
            display: inline-block;
        }
        .btn-table-link:hover {
            background: rgba(10, 240, 197, 0.08);
            border-color: var(--accent-neon);
            box-shadow: var(--shadow-neon);
            color: var(--accent-neon);
        }

        /* ===== REVIEWS ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--accent-neon-dim);
            box-shadow: var(--shadow-card);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .avatar-1 {
            background: linear-gradient(135deg, #4da8ff, #2b7de0);
        }
        .avatar-2 {
            background: linear-gradient(135deg, #8b5cf6, #6d3fd4);
        }
        .avatar-3 {
            background: linear-gradient(135deg, #f06292, #d44a78);
        }
        .avatar-4 {
            background: linear-gradient(135deg, #ff8a50, #e0703a);
        }
        .avatar-5 {
            background: linear-gradient(135deg, #0af0c5, #07a882);
        }
        .avatar-6 {
            background: linear-gradient(135deg, #f0b90b, #c8980a);
        }
        .review-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .review-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--accent-gold);
            font-size: 0.78rem;
            letter-spacing: 1px;
        }
        .review-text {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.65;
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--accent-neon-dim);
        }
        .faq-question {
            padding: 18px 22px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.95rem;
            user-select: none;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: rgba(10, 240, 197, 0.03);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--accent-neon);
            transition: transform var(--transition-fast);
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            background: var(--accent-neon-dim);
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 22px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, #0d1a2e, #0f2035);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(10, 240, 197, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }
        .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta-title {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 2.8vw, 2rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .cta-desc {
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto 26px;
            font-size: 0.95rem;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 30px;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--accent-neon);
        }
        .footer-divider {
            border-color: var(--border-subtle);
            margin: 24px 0 18px;
            opacity: 0.6;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: center;
        }
        .footer-beian {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .footer-beian span {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            :root {
                --section-gap: 60px;
            }
            .nav-panel-card {
                gap: 3px;
                padding: 5px 8px;
                border-radius: 32px;
            }
            .nav-link-esports {
                padding: 7px 12px;
                font-size: 0.82rem;
                gap: 4px;
            }
            .nav-cta-btn {
                padding: 7px 14px;
                font-size: 0.8rem;
                margin-left: 4px;
            }
            .hero-section {
                padding: 60px 0 70px;
            }
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .game-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            :root {
                --section-gap: 48px;
                --section-gap-sm: 36px;
            }
            .section-container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .nav-panel-card {
                flex-direction: column;
                align-items: stretch;
                border-radius: var(--radius-md);
                padding: 12px;
                gap: 4px;
                margin-top: 8px;
            }
            .nav-link-esports {
                border-radius: var(--radius-sm);
                justify-content: center;
            }
            .nav-cta-btn {
                margin-left: 0;
                justify-content: center;
                margin-top: 6px;
            }
            .ranking-table-wrap {
                overflow-x: auto;
            }
            .ranking-table {
                min-width: 600px;
                font-size: 0.8rem;
            }
            .cta-section {
                padding: 34px 20px;
                border-radius: var(--radius-lg);
            }
            .btn-neon,
            .btn-outline-neon {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
            }
            .stat-value {
                font-size: 1.7rem;
            }
            .game-card-img-wrap {
                height: 140px;
            }
        }
        @media (max-width: 520px) {
            .game-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 20px 14px;
            }
            .stat-value {
                font-size: 1.5rem;
            }
            .hero-section {
                padding: 40px 0 50px;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                font-size: 0.75rem;
                padding: 5px 12px;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .btn-neon,
            .btn-outline-neon {
                width: 100%;
                justify-content: center;
            }
            .review-card {
                padding: 16px 14px;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 0.85rem;
            }
            .faq-answer {
                padding: 0 16px;
                font-size: 0.8rem;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
        }
