/* roulang page: index */
:root {
            --brand-orange: #F74902;
            --brand-orange-dark: #D43D00;
            --brand-orange-light: #FF6B2E;
            --deep-black: #0A0E1C;
            --deep-black-alt: #111627;
            --surface-dark: #161B2E;
            --surface-card: #1A1F35;
            --neon-cyan: #00E6FF;
            --neon-cyan-dim: rgba(0, 230, 255, 0.25);
            --mist-white: #F2F4F8;
            --text-primary: #EAECF0;
            --text-secondary: #9BA1B0;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-active: rgba(247, 73, 2, 0.5);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 0 20px rgba(247, 73, 2, 0.05);
            --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.35);
            --shadow-neon: 0 0 0 2px rgba(0, 230, 255, 0.4);
            --font-display: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-mono: 'Red Hat Display', 'DIN', 'Courier New', monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 64px;
            --spacing-2xl: 96px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--deep-black);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-orange);
        }
        a:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 3px;
        }

        input {
            font-family: inherit;
        }

        .container-wide {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: var(--spacing-md);
            padding-right: var(--spacing-md);
        }

        .container-narrow {
            max-width: 1080px;
            margin: 0 auto;
            padding-left: var(--spacing-md);
            padding-right: var(--spacing-md);
        }

        /* ========== 导航 ========== */
        .nav-shell {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: transparent;
            transition: all var(--transition-smooth);
            padding: 16px 0;
        }
        .nav-shell.scrolled {
            background: rgba(10, 14, 28, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 0;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        .nav-logo {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff;
            letter-spacing: -0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-logo .logo-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--brand-orange);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--brand-orange);
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links-desktop li {
            position: relative;
        }
        .nav-links-desktop a {
            display: block;
            padding: 8px 16px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-pill);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links-desktop a.nav-active {
            color: var(--brand-orange);
            font-weight: 600;
            background: rgba(247, 73, 2, 0.08);
        }
        .nav-links-desktop a.nav-active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 3px 3px 0 0;
        }
        .nav-separator {
            width: 1px;
            height: 18px;
            background: rgba(255, 255, 255, 0.12);
            margin: 0 4px;
            border-radius: 1px;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .hamburger-btn:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* 移动端 off-canvas */
        .off-canvas-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: var(--surface-dark);
            z-index: 1001;
            transition: right var(--transition-smooth);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            box-shadow: -4px 0 32px rgba(0, 0, 0, 0.6);
            overflow-y: auto;
        }
        .off-canvas-menu.open {
            right: 0;
        }
        .off-canvas-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-smooth);
        }
        .off-canvas-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .off-canvas-menu a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .off-canvas-menu a:hover,
        .off-canvas-menu a.nav-active {
            background: rgba(247, 73, 2, 0.1);
            color: var(--brand-orange);
        }
        .off-canvas-close {
            align-self: flex-end;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 10px;
            border-radius: 8px;
            cursor: pointer;
        }

        /* ========== Hero ========== */
        .hero-dashboard {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: radial-gradient(ellipse at 65% 30%, rgba(247, 73, 2, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(0, 230, 255, 0.06) 0%, transparent 55%),
                var(--deep-black);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }
        .hero-dashboard::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.003) 2px, rgba(255, 255, 255, 0.003) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.003) 2px, rgba(255, 255, 255, 0.003) 4px);
            pointer-events: none;
            z-index: 1;
        }
        .hero-dashboard::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 14, 28, 0.45);
            z-index: 1;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--spacing-xl);
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 120px var(--spacing-md) 80px;
        }
        .hero-text {
            flex: 1 1 460px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(247, 73, 2, 0.15);
            border: 1px solid rgba(247, 73, 2, 0.35);
            color: var(--brand-orange);
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: var(--spacing-md);
            animation: pulse-badge 2.2s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(247, 73, 2, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(247, 73, 2, 0);
            }
        }
        .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: blink-dot 1s steps(2) infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.2;
            }
        }
        .hero-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            line-height: 1.15;
            color: #fff;
            margin: 0 0 var(--spacing-sm);
            letter-spacing: -0.03em;
        }
        .hero-title .highlight {
            color: var(--brand-orange);
            position: relative;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin: 0 0 var(--spacing-lg);
            max-width: 520px;
            line-height: 1.7;
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
            box-shadow: 0 4px 20px rgba(247, 73, 2, 0.35);
        }
        .btn-primary:hover {
            background: var(--brand-orange-light);
            box-shadow: 0 6px 28px rgba(247, 73, 2, 0.5);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
        }
        .btn-ghost:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }
        .hero-score-card {
            flex: 0 0 380px;
            background: rgba(22, 27, 46, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 28px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-elevated);
            position: relative;
            overflow: hidden;
        }
        .hero-score-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 230, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-score-card .matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 16px;
        }
        .hero-score-card .team {
            text-align: center;
            flex: 1;
        }
        .hero-score-card .team-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-secondary);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        .hero-score-card .team-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
            margin: 0;
        }
        .hero-score-card .score-display {
            font-family: var(--font-mono);
            font-size: 3.2rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: 0.04em;
        }
        .hero-score-card .score-divider {
            color: var(--brand-orange);
            font-weight: 700;
        }
        .hero-score-card .match-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .hero-score-card .match-meta .tag {
            background: rgba(0, 230, 255, 0.12);
            color: var(--neon-cyan);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 0.75rem;
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: var(--spacing-2xl) var(--spacing-md);
        }
        .section-block.alt-bg {
            background: var(--deep-black-alt);
        }
        .section-block.mist-bg {
            background: var(--mist-white);
            color: #1a1a2e;
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section-header h2 {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            letter-spacing: -0.02em;
            margin: 0 0 12px;
            color: #fff;
        }
        .mist-bg .section-header h2 {
            color: #1a1a2e;
        }
        .section-header .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
        }
        .mist-bg .section-header .section-subtitle {
            color: #5a5f6e;
        }
        .section-divider {
            width: 60px;
            height: 4px;
            background: var(--brand-orange);
            border-radius: 2px;
            margin: 16px auto 0;
        }

        /* ========== 数据看板 ========== */
        .stat-card {
            background: var(--surface-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
            height: 100%;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-neon), var(--shadow-elevated);
            border-color: rgba(0, 230, 255, 0.3);
        }
        .stat-card .stat-icon-bg {
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 6rem;
            opacity: 0.04;
            color: #fff;
            pointer-events: none;
        }
        .stat-card .stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 8px;
        }
        .stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 3.2rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-card .stat-value.accent {
            color: var(--brand-orange);
        }
        .stat-card .stat-change {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #00e676;
            background: rgba(0, 230, 118, 0.1);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
        }
        .stat-card .stat-change.down {
            color: #ff5252;
            background: rgba(255, 82, 82, 0.1);
        }
        .stat-mini-bar {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 40px;
            margin-top: 12px;
        }
        .stat-mini-bar .bar {
            flex: 1;
            border-radius: 3px 3px 0 0;
            background: var(--brand-orange);
            transition: height var(--transition-smooth);
        }
        .stat-mini-bar .bar:nth-child(even) {
            background: rgba(247, 73, 2, 0.5);
        }

        /* ========== 分类入口矩阵 ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .category-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 3 / 4;
            cursor: pointer;
            transition: all var(--transition-smooth);
            background: var(--surface-card);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-card);
            text-decoration: none;
            color: inherit;
        }
        .category-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 0 2px rgba(0, 230, 255, 0.4), 0 16px 48px rgba(0, 0, 0, 0.5);
            border-color: rgba(0, 230, 255, 0.5);
        }
        .category-card .cat-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform var(--transition-smooth);
        }
        .category-card:hover .cat-bg {
            transform: scale(1.06);
        }
        .category-card .cat-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 14, 28, 0.92) 25%, rgba(10, 14, 28, 0.25) 70%, transparent 100%);
        }
        .category-card .cat-info {
            position: relative;
            z-index: 2;
            padding: 20px;
            width: 100%;
        }
        .category-card .cat-name {
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            margin: 0 0 4px;
            letter-spacing: -0.01em;
        }
        .category-card .cat-count {
            font-size: 0.8rem;
            color: var(--neon-cyan);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .category-card .cat-count .count-num {
            background: rgba(0, 230, 255, 0.15);
            padding: 2px 10px;
            border-radius: var(--radius-pill);
        }

        /* ========== 赛事动态信息流 ========== */
        .news-card {
            display: flex;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            align-items: flex-start;
        }
        .news-card:hover {
            background: rgba(255, 255, 255, 0.015);
            border-radius: var(--radius-sm);
            padding-left: 12px;
        }
        .news-card .news-thumb {
            flex: 0 0 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: var(--surface-dark);
            flex-shrink: 0;
        }
        .news-card .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-card .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-card .news-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: #fff;
            margin: 0 0 4px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .news-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .rank-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }
        .rank-list li:hover {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius-sm);
            padding-left: 8px;
        }
        .rank-list .rank-num {
            flex: 0 0 28px;
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text-muted);
            text-align: center;
        }
        .rank-list li.top3 .rank-num {
            color: var(--brand-orange);
        }
        .rank-list .rank-team {
            flex: 1;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-list .rank-change {
            font-size: 0.8rem;
        }
        .rank-list .rank-change.up {
            color: #00e676;
        }
        .rank-list .rank-change.down {
            color: #ff5252;
        }

        /* ========== Tabs 数据榜单 ========== */
        .tabs-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: var(--spacing-md);
            border-bottom: 2px solid var(--border-subtle);
            padding-bottom: 0;
        }
        .tabs-nav button {
            background: none;
            border: none;
            padding: 12px 20px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-muted);
            cursor: pointer;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            transition: all var(--transition-fast);
            border-radius: 4px 4px 0 0;
        }
        .tabs-nav button.active {
            color: var(--brand-orange);
            border-bottom-color: var(--brand-orange);
        }
        .tabs-nav button:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.03);
        }
        .tab-panel {
            display: none;
        }
        .tab-panel.active {
            display: block;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .data-table thead th {
            text-align: left;
            padding: 12px 14px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            border-bottom: 2px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
        }
        .data-table tbody td {
            padding: 13px 14px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-primary);
            white-space: nowrap;
        }
        .data-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .data-table .highlight-row {
            background: rgba(247, 73, 2, 0.06);
        }
        .data-table .player-name {
            font-weight: 600;
            color: #fff;
        }

        /* ========== 社区口碑 ========== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .testimonial-card {
            background: rgba(22, 27, 46, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: 24px;
            position: relative;
            transition: all var(--transition-smooth);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .testimonial-card:hover {
            border-color: rgba(247, 73, 2, 0.35);
            box-shadow: 0 8px 32px rgba(247, 73, 2, 0.08);
            transform: translateY(-3px);
        }
        .testimonial-card .t-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .testimonial-card .t-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-orange), #c0392b);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            flex-shrink: 0;
        }
        .testimonial-card .t-user-info {
            flex: 1;
            min-width: 0;
        }
        .testimonial-card .t-name {
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
            margin: 0;
        }
        .testimonial-card .t-name::before {
            content: '@';
            color: var(--brand-orange);
        }
        .testimonial-card .t-tag {
            font-size: 0.75rem;
            color: var(--neon-cyan);
            font-weight: 500;
        }
        .testimonial-card .t-stars {
            color: #f5a623;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .testimonial-card .t-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== 赛程时间轴 ========== */
        .timeline {
            position: relative;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--brand-orange), transparent);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding: 18px 20px;
            background: var(--surface-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .timeline-item:hover {
            border-color: rgba(247, 73, 2, 0.4);
            box-shadow: 0 4px 20px rgba(247, 73, 2, 0.06);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 22px;
            width: 12px;
            height: 12px;
            background: var(--brand-orange);
            border-radius: 50%;
            box-shadow: 0 0 16px rgba(247, 73, 2, 0.6);
            z-index: 2;
        }
        .timeline-item .tl-date {
            font-size: 0.8rem;
            color: var(--brand-orange);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 6px;
        }
        .timeline-item .tl-matchup {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .timeline-item .tl-team {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
        }
        .timeline-item .tl-vs {
            font-family: var(--font-mono);
            font-weight: 800;
            color: var(--neon-cyan);
            font-size: 0.9rem;
        }
        .timeline-item .tl-event {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .btn-tiny {
            display: inline-block;
            padding: 7px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: var(--radius-pill);
            background: transparent;
            border: 1.5px solid var(--brand-orange);
            color: var(--brand-orange);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-tiny:hover {
            background: var(--brand-orange);
            color: #fff;
        }

        /* ========== FAQ ========== */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .faq-item {
            background: var(--surface-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 18px 20px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all var(--transition-fast);
            border-left: 4px solid transparent;
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-item.open .faq-question {
            border-left-color: var(--brand-orange);
            background: rgba(247, 73, 2, 0.04);
        }
        .faq-question .faq-icon {
            transition: transform var(--transition-fast);
            color: var(--brand-orange);
            flex-shrink: 0;
            font-size: 1rem;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }
        .faq-answer p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== 页脚 CTA ========== */
        .footer-cta {
            position: relative;
            background: linear-gradient(135deg, #0d0f1a 0%, #1a0a0a 40%, #0a0e1c 100%);
            text-align: center;
            padding: var(--spacing-2xl) var(--spacing-md);
            overflow: hidden;
        }
        .footer-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(247, 73, 2, 0.15) 0%, transparent 65%);
            pointer-events: none;
        }
        .footer-cta h2 {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: #fff;
            margin: 0 0 12px;
            position: relative;
            z-index: 1;
        }
        .footer-cta p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin: 0 0 24px;
            position: relative;
            z-index: 1;
        }
        .footer-cta .cta-btns {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========== 主 Footer ========== */
        .site-footer {
            background: #070913;
            padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            margin: 0 0 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-brand {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }
        .footer-bottom {
            max-width: 1280px;
            margin: var(--spacing-lg) auto 0;
            padding-top: var(--spacing-md);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 8px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }

        /* ========== 响应式 ========== */
        @media screen and (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-score-card {
                flex: 0 0 320px;
            }
            .hero-content {
                gap: 32px;
            }
        }
        @media screen and (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .hamburger-btn {
                display: block;
            }
            .hero-content {
                flex-direction: column;
                padding: 100px var(--spacing-sm) 60px;
            }
            .hero-score-card {
                flex: 1 1 auto;
                width: 100%;
                max-width: 420px;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .stat-card .stat-value {
                font-size: 2.4rem;
            }
            .section-block {
                padding: var(--spacing-xl) var(--spacing-sm);
            }
            .tabs-nav {
                gap: 2px;
            }
            .tabs-nav button {
                padding: 10px 14px;
                font-size: 0.82rem;
            }
            .data-table {
                font-size: 0.78rem;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 8px 10px;
            }
            .timeline {
                padding-left: 28px;
            }
            .timeline::before {
                left: 12px;
            }
            .timeline-item::before {
                left: -20px;
                width: 10px;
                height: 10px;
                top: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
        }
        @media screen and (max-width: 520px) {
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .category-card {
                aspect-ratio: 2 / 3;
            }
            .stat-card {
                padding: 20px 16px;
            }
            .stat-card .stat-value {
                font-size: 2rem;
            }
            .hero-cta-row {
                flex-direction: column;
            }
            .hero-cta-row .btn-primary,
            .hero-cta-row .btn-ghost {
                width: 100%;
                justify-content: center;
            }
            .tabs-nav {
                flex-direction: column;
                gap: 0;
                border-bottom: none;
            }
            .tabs-nav button {
                border-bottom: 1px solid var(--border-subtle);
                border-radius: 0;
                text-align: left;
                padding: 12px 16px;
            }
            .tabs-nav button.active {
                border-left: 3px solid var(--brand-orange);
                border-bottom-color: var(--border-subtle);
            }
            .data-table {
                font-size: 0.7rem;
            }
            .off-canvas-menu {
                width: 260px;
                right: -280px;
            }
        }

/* roulang page: category2 */
:root {
            --brand-orange: #F74902;
            --brand-orange-hover: #e03d00;
            --brand-orange-glow: rgba(247, 73, 2, 0.25);
            --deep-black: #0A0E1C;
            --deep-black-alt: #0d1124;
            --surface-dark: #111827;
            --surface-card: #161b2e;
            --surface-card-hover: #1a1f35;
            --mist-white: #F2F4F8;
            --text-primary: #EAECF0;
            --text-secondary: #9ca3b8;
            --text-muted: #6b7280;
            --neon-cyan: #00E6FF;
            --neon-cyan-glow: rgba(0, 230, 255, 0.35);
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-card: rgba(255, 255, 255, 0.06);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 0 20px rgba(247, 73, 2, 0.05);
            --shadow-card-hover: 0 8px 32px rgba(0, 230, 255, 0.12), 0 0 0 2px rgba(0, 230, 255, 0.4);
            --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.35);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --font-body: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --font-mono: 'Red Hat Display', 'DIN', 'Inter', sans-serif;
            --section-gap: 80px;
            --section-gap-mobile: 48px;
            --nav-height: 72px;
        }

        *,
        *::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: var(--font-body);
            font-weight: 400;
            line-height: 1.65;
            background-color: var(--deep-black);
            color: var(--text-primary);
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--neon-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .off-canvas-wrapper {
            min-height: 100vh;
        }

        .off-canvas-content {
            min-height: 100vh;
            background-color: var(--deep-black);
        }

        /* Off-Canvas Mobile Menu */
        .off-canvas.position-left {
            background: var(--surface-dark);
            border-right: 1px solid var(--border-subtle);
            padding: 24px 20px;
            width: 280px;
        }
        .off-canvas .mobile-nav-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--brand-orange);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .off-canvas .mobile-nav-logo .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-orange);
            display: inline-block;
            box-shadow: 0 0 10px var(--brand-orange-glow);
        }
        .off-canvas .mobile-nav-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .off-canvas .mobile-nav-list a {
            display: block;
            padding: 14px 16px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .off-canvas .mobile-nav-list a:hover,
        .off-canvas .mobile-nav-list a.nav-active-mobile {
            background: rgba(247, 73, 2, 0.1);
            color: var(--brand-orange);
        }
        .off-canvas .mobile-nav-list a.nav-active-mobile {
            border-left: 3px solid var(--brand-orange);
            padding-left: 13px;
        }
        .off-canvas .close-offcanvas-btn {
            position: absolute;
            top: 20px;
            right: 18px;
            background: none;
            color: var(--text-secondary);
            font-size: 1.4rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: color var(--transition-fast);
        }
        .off-canvas .close-offcanvas-btn:hover {
            color: var(--text-primary);
        }

        /* Navigation */
        .nav-shell {
            position: sticky;
            top: 0;
            z-index: 90;
            background: rgba(10, 14, 28, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }
        .nav-inner {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            letter-spacing: -0.3px;
        }
        .nav-logo .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-orange);
            display: inline-block;
            box-shadow: 0 0 14px var(--brand-orange-glow);
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: #fff;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .nav-links-desktop li {
            display: flex;
            align-items: center;
        }
        .nav-links-desktop a {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-secondary);
            padding: 10px 16px;
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .nav-links-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links-desktop a.nav-active {
            color: #fff;
            border-bottom: 3px solid var(--brand-orange);
            border-radius: 0;
            padding-bottom: 7px;
            background: transparent;
        }
        .nav-separator {
            width: 1px;
            height: 20px;
            background: rgba(255, 255, 255, 0.15);
            display: inline-block;
            margin: 0 6px;
            border-radius: 1px;
        }
        .hamburger-btn {
            display: none;
            background: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 8px 10px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .hamburger-btn:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* Banner */
        .category-banner {
            position: relative;
            background: linear-gradient(180deg, #0d1124 0%, #0a0e1c 40%, rgba(10, 14, 28, 0.92) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            padding: 72px 0 60px;
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .category-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 40%, rgba(247, 73, 2, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .category-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 230, 255, 0.3), transparent);
            pointer-events: none;
        }
        .banner-inner {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .banner-text {
            flex: 1 1 420px;
        }
        .banner-badge {
            display: inline-block;
            background: rgba(0, 230, 255, 0.1);
            color: var(--neon-cyan);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(0, 230, 255, 0.25);
        }
        .banner-text h1 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 3rem;
            color: #fff;
            line-height: 1.2;
            letter-spacing: -0.6px;
            margin-bottom: 12px;
        }
        .banner-text h1 .accent {
            color: var(--brand-orange);
        }
        .banner-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 520px;
            margin-bottom: 24px;
        }
        .banner-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-orange);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 18px var(--brand-orange-glow);
            letter-spacing: 0.3px;
        }
        .btn-primary:hover {
            background: var(--brand-orange-hover);
            box-shadow: 0 6px 24px rgba(247, 73, 2, 0.4);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
        }
        .btn-outline:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 20px var(--neon-cyan-glow);
            color: #fff;
        }
        .banner-stat-floater {
            flex: 0 0 auto;
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-elevated);
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 200px;
        }
        .floater-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .floater-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: rgba(247, 73, 2, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--brand-orange);
            flex-shrink: 0;
        }
        .floater-info .floater-val {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1.6rem;
            color: #fff;
            line-height: 1;
        }
        .floater-info .floater-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* Section Commons */
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-eyebrow {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--neon-cyan);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 2.1rem;
            color: #fff;
            letter-spacing: -0.4px;
            margin-bottom: 8px;
        }
        .section-header .subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
        }
        .section-spacing {
            padding: var(--section-gap) 0;
        }
        .section-alt {
            background: var(--deep-black-alt);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        /* Data Cards Grid */
        .data-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .data-match-card {
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .data-match-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 10%, rgba(0, 230, 255, 0.03) 0%, transparent 60%);
            pointer-events: none;
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .data-match-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 230, 255, 0.3);
            background: var(--surface-card-hover);
        }
        .data-match-card:hover::before {
            opacity: 1;
        }
        .card-league-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            background: rgba(247, 73, 2, 0.15);
            color: var(--brand-orange);
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .card-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
        }
        .card-team {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            text-align: center;
            flex: 1;
            line-height: 1.3;
        }
        .card-vs {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1rem;
            color: var(--neon-cyan);
            flex-shrink: 0;
            padding: 0 6px;
        }
        .card-score-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 8px;
        }
        .card-score {
            font-family: var(--font-mono);
            font-weight: 900;
            font-size: 2.6rem;
            color: #fff;
            line-height: 1;
            letter-spacing: -1px;
        }
        .card-score-divider {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-muted);
        }
        .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .card-meta .map-name {
            color: var(--text-secondary);
            font-weight: 500;
        }
        .card-action-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--brand-orange);
            transition: color var(--transition-fast);
            margin-top: 10px;
        }
        .card-action-link:hover {
            color: #fff;
        }
        .card-action-link i {
            font-size: 0.7rem;
            transition: transform var(--transition-fast);
        }
        .card-action-link:hover i {
            transform: translateX(3px);
        }

        /* Sidebar Filter */
        .sidebar-filter {
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            border: 1px solid var(--border-card);
            position: sticky;
            top: calc(var(--nav-height) + 24px);
        }
        .sidebar-filter h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.2px;
        }
        .filter-group {
            margin-bottom: 18px;
        }
        .filter-group label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-muted);
            display: block;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .filter-select {
            width: 100%;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            background: var(--deep-black);
            border: 1px solid var(--border-subtle);
            color: #fff;
            font-size: 0.9rem;
            font-family: var(--font-body);
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%239ca3b8'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            transition: border-color var(--transition-fast);
        }
        .filter-select:focus {
            border-color: var(--neon-cyan);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 230, 255, 0.1);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }
        .tag-pill {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .tag-pill:hover,
        .tag-pill.tag-active {
            background: rgba(247, 73, 2, 0.15);
            color: var(--brand-orange);
            border-color: rgba(247, 73, 2, 0.35);
        }

        /* Team Ranking */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--surface-card);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            border: 1px solid var(--border-card);
            transition: all var(--transition-fast);
        }
        .ranking-item:hover {
            border-color: rgba(0, 230, 255, 0.25);
            box-shadow: 0 0 16px rgba(0, 230, 255, 0.06);
        }
        .rank-num {
            font-family: var(--font-mono);
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--text-muted);
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }
        .ranking-item.top-1 .rank-num {
            color: #FFD700;
        }
        .ranking-item.top-2 .rank-num {
            color: #C0C0C0;
        }
        .ranking-item.top-3 .rank-num {
            color: #CD7F32;
        }
        .rank-team-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            flex: 1;
        }
        .rank-stat {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--neon-cyan);
        }
        .rank-change-up {
            color: #22c55e;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .rank-change-down {
            color: #ef4444;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .rank-change-stable {
            color: var(--text-muted);
            font-weight: 700;
            font-size: 0.85rem;
        }

        /* Player Highlights */
        .player-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .player-card {
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            padding: 22px 16px;
            text-align: center;
            border: 1px solid var(--border-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .player-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .player-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 230, 255, 0.25);
        }
        .player-card:hover::after {
            opacity: 1;
        }
        .player-avatar-placeholder {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(247, 73, 2, 0.3), rgba(0, 230, 255, 0.15));
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.3rem;
            color: #fff;
        }
        .player-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 2px;
        }
        .player-team-tag {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .player-stat-big {
            font-family: var(--font-mono);
            font-weight: 900;
            font-size: 2rem;
            color: var(--neon-cyan);
            line-height: 1;
        }
        .player-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Timeline */
        .match-timeline {
            position: relative;
            padding-left: 36px;
            border-left: 2px solid var(--border-subtle);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 20px;
            transition: all var(--transition-fast);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -43px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--surface-card);
            border: 2px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }
        .timeline-item:hover::before {
            border-color: var(--brand-orange);
            background: var(--brand-orange);
            box-shadow: 0 0 12px var(--brand-orange-glow);
        }
        .timeline-date {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--neon-cyan);
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .timeline-matchup {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .timeline-event {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .timeline-remind-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--brand-orange);
            background: rgba(247, 73, 2, 0.08);
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(247, 73, 2, 0.2);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .timeline-remind-btn:hover {
            background: rgba(247, 73, 2, 0.2);
            border-color: var(--brand-orange);
            color: #fff;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .testimonial-card {
            background: var(--surface-card);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            border: 1px solid var(--border-card);
            position: relative;
            transition: all var(--transition-smooth);
        }
        .testimonial-card:hover {
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
        }
        .testimonial-card .testimonial-stars {
            color: var(--brand-orange);
            font-size: 0.85rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .testimonial-card .testimonial-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testimonial-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(247, 73, 2, 0.4), rgba(0, 230, 255, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            flex-shrink: 0;
        }
        .testimonial-author .author-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
        }
        .testimonial-author .author-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .testimonial-card .author-name::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-orange);
            margin-right: 6px;
            vertical-align: middle;
            box-shadow: 0 0 6px var(--brand-orange-glow);
        }

        /* FAQ Accordion */
        .faq-accordion-wrap .accordion {
            background: transparent;
            border: none;
        }
        .faq-accordion-wrap .accordion-item {
            background: var(--surface-card);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid var(--border-card);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-accordion-wrap .accordion-item:hover {
            border-color: rgba(255, 255, 255, 0.1);
        }
        .faq-accordion-wrap .accordion-title {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            padding: 18px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            position: relative;
        }
        .faq-accordion-wrap .accordion-title::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.8rem;
            color: var(--text-muted);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform var(--transition-fast);
        }
        .faq-accordion-wrap .is-active .accordion-title::after {
            transform: translateY(-50%) rotate(180deg);
            color: var(--brand-orange);
        }
        .faq-accordion-wrap .is-active .accordion-title {
            color: var(--brand-orange);
        }
        .faq-accordion-wrap .is-active {
            border-left: 4px solid var(--brand-orange);
        }
        .faq-accordion-wrap .accordion-content {
            padding: 0 20px 18px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            background: transparent;
            border: none;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            background: linear-gradient(135deg, #0d1124 0%, #111827 40%, #0a0e1c 100%);
            border-top: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(247, 73, 2, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 64px 28px;
        }
        .cta-inner h2 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 2.2rem;
            color: #fff;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
        }
        .cta-inner p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn-group {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .site-footer {
            background: #080b16;
            border-top: 1px solid var(--border-subtle);
            padding: 50px 28px 24px;
        }
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto 36px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom span {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.15);
        }

        /* Responsive */
        @media screen and (max-width: 1024px) {
            .data-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .player-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .banner-text h1 {
                font-size: 2.4rem;
            }
            .section-header h2 {
                font-size: 1.7rem;
            }
            .sidebar-filter {
                position: static;
                margin-bottom: 24px;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .hamburger-btn {
                display: inline-flex;
            }
            .nav-inner {
                padding: 0 18px;
            }
            .banner-inner {
                flex-direction: column;
                gap: 24px;
            }
            .banner-stat-floater {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-around;
            }
            .banner-text h1 {
                font-size: 1.9rem;
            }
            .data-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .card-score {
                font-size: 2rem;
            }
            .player-cards-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .match-timeline {
                padding-left: 24px;
            }
            .timeline-item {
                padding-left: 12px;
            }
            .timeline-item::before {
                left: -31px;
                width: 10px;
                height: 10px;
            }
            .section-spacing {
                padding: var(--section-gap-mobile) 0;
            }
            .section-header {
                margin-bottom: 28px;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cta-inner h2 {
                font-size: 1.6rem;
            }
            .category-banner {
                padding: 48px 0 40px;
            }
            .data-match-card {
                padding: 14px 12px;
            }
            .card-team {
                font-size: 0.85rem;
            }
            .card-score {
                font-size: 1.7rem;
            }
        }

        @media screen and (max-width: 520px) {
            .data-cards-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .player-cards-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .banner-text h1 {
                font-size: 1.55rem;
            }
            .banner-desc {
                font-size: 0.9rem;
            }
            .btn-primary,
            .btn-outline {
                font-size: 0.85rem;
                padding: 12px 22px;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .card-score {
                font-size: 1.5rem;
            }
            .banner-stat-floater {
                flex-direction: column;
                gap: 10px;
                padding: 16px 18px;
            }
            .floater-info .floater-val {
                font-size: 1.3rem;
            }
            .ranking-item {
                padding: 12px 14px;
                gap: 8px;
            }
            .rank-num {
                font-size: 1.1rem;
                width: 28px;
            }
            .rank-team-name {
                font-size: 0.85rem;
            }
        }

/* roulang page: category1 */
:root {
            --brand-orange: #F74902;
            --brand-orange-glow: #FF6B2B;
            --brand-orange-deep: #C93A00;
            --deep-space: #0A0E1C;
            --deep-space-2: #111627;
            --card-bg-dark: #161B2E;
            --card-bg-light: #F2F4F8;
            --mist-white: #F2F4F8;
            --neon-cyan: #00E6FF;
            --neon-cyan-dim: rgba(0, 230, 255, 0.15);
            --text-primary: #1A1D2E;
            --text-secondary: #5A5F72;
            --text-on-dark: #E8EAF0;
            --text-on-dark-muted: #8A8FA3;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-card: rgba(247, 73, 2, 0.12);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 0 20px rgba(247, 73, 2, 0.05);
            --shadow-card-hover: 0 8px 32px rgba(247, 73, 2, 0.15);
            --shadow-glow: 0 0 0 2px rgba(0, 230, 255, 0.4);
            --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: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --font-body: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --font-mono: 'Red Hat Display', 'DIN', 'Inter', monospace;
            --section-gap: 4rem;
            --section-gap-mobile: 2.5rem;
            --nav-height: 72px;
        }

        *,
        *::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: var(--font-body);
            line-height: 1.65;
            color: var(--text-primary);
            background: var(--mist-white);
            overflow-x: hidden;
            min-height: 100vh;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: var(--font-body);
            border: none;
            outline: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible,
        a:focus-visible {
            outline: 3px solid var(--neon-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input,
        select {
            font-family: var(--font-body);
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* ============ NAVIGATION ============ */
        .nav-shell {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 28, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: background var(--transition-smooth);
        }
        .nav-shell.scrolled {
            background: rgba(10, 14, 28, 0.97);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
        }
        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .nav-logo .logo-dot {
            width: 10px;
            height: 10px;
            background: var(--brand-orange);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 10px rgba(247, 73, 2, 0.7);
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links-desktop li {
            display: flex;
            align-items: center;
        }
        .nav-links-desktop a {
            color: #c0c5d4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.45rem 0.9rem;
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .nav-links-desktop a:hover {
            color: #fff;
        }
        .nav-links-desktop a.nav-active {
            color: var(--brand-orange);
            font-weight: 700;
        }
        .nav-links-desktop a.nav-active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 3px;
        }
        .nav-separator {
            width: 1px;
            height: 18px;
            background: rgba(255, 255, 255, 0.15);
            margin: 0 0.25rem;
            display: inline-block;
            border-radius: 1px;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 0.4rem;
            cursor: pointer;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .hamburger-btn:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        @media (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .hamburger-btn {
                display: block;
            }
            .nav-logo {
                font-size: 1.15rem;
            }
        }

        /* Off-Canvas */
        .off-canvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-smooth);
        }
        .off-canvas-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .off-canvas-panel {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100%;
            background: var(--deep-space-2);
            z-index: 2100;
            transition: left var(--transition-smooth);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        .off-canvas-panel.active {
            left: 0;
        }
        .off-canvas-close {
            align-self: flex-end;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 0.4rem;
            cursor: pointer;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .off-canvas-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .off-canvas-panel .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }
        .off-canvas-panel .mobile-nav-links a {
            color: #c0c5d4;
            font-weight: 500;
            font-size: 1.05rem;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            transition: all var(--transition-fast);
            display: block;
        }
        .off-canvas-panel .mobile-nav-links a:hover,
        .off-canvas-panel .mobile-nav-links a.nav-active {
            color: var(--brand-orange);
            background: rgba(247, 73, 2, 0.08);
            font-weight: 700;
        }
        @media (min-width: 769px) {
            .off-canvas-overlay,
            .off-canvas-panel {
                display: none;
            }
        }

        /* ============ CATEGORY BANNER ============ */
        .category-banner {
            position: relative;
            background: linear-gradient(135deg, #0D1B3E 0%, #0A0E1C 40%, #1a1030 70%, #0D1B3E 100%);
            padding: 3.5rem 0 2.5rem;
            overflow: hidden;
            border-bottom: 1px solid rgba(247, 73, 2, 0.2);
        }
        .category-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(247, 73, 2, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .category-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 230, 255, 0.3), transparent);
            pointer-events: none;
        }
        .category-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .banner-text {
            flex: 1;
            min-width: 260px;
        }
        .banner-text .game-tag {
            display: inline-block;
            background: rgba(0, 230, 255, 0.12);
            color: var(--neon-cyan);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.3rem 0.9rem;
            border-radius: var(--radius-pill);
            letter-spacing: 0.06em;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
        }
        .banner-text h1 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 2.4rem;
            color: #fff;
            letter-spacing: -0.03em;
            margin: 0 0 0.5rem;
            line-height: 1.2;
        }
        .banner-text h1 span {
            color: var(--brand-orange);
        }
        .banner-text .banner-desc {
            color: var(--text-on-dark-muted);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 500px;
        }
        .banner-visual {
            flex-shrink: 0;
            width: 200px;
            height: 140px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }
        @media (max-width: 768px) {
            .category-banner {
                padding: 2.5rem 0 2rem;
            }
            .banner-text h1 {
                font-size: 1.7rem;
            }
            .banner-visual {
                width: 140px;
                height: 100px;
            }
            .banner-content {
                gap: 1.2rem;
            }
        }
        @media (max-width: 520px) {
            .banner-visual {
                width: 100%;
                height: 120px;
                order: -1;
            }
            .banner-text h1 {
                font-size: 1.4rem;
            }
        }

        /* ============ SECTION TITLES ============ */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.8rem;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.55rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .section-header h2 .accent-dot {
            width: 8px;
            height: 8px;
            background: var(--brand-orange);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px rgba(247, 73, 2, 0.6);
            flex-shrink: 0;
        }
        .section-header .view-all {
            color: var(--brand-orange);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-pill);
            border: 1.5px solid rgba(247, 73, 2, 0.3);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .section-header .view-all:hover {
            background: var(--brand-orange);
            color: #fff;
            border-color: var(--brand-orange);
        }

        /* ============ MAIN CONTENT AREA ============ */
        .main-content-area {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2rem;
            align-items: start;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============ DATA CARDS GRID ============ */
        .data-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }
        @media (max-width: 1024px) {
            .data-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .data-cards-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        .match-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 1.3rem;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .match-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover), var(--shadow-glow);
            border-color: var(--neon-cyan);
        }
        .match-card .card-league {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--brand-orange);
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .match-card .card-league .league-dot {
            width: 6px;
            height: 6px;
            background: var(--brand-orange);
            border-radius: 50%;
            display: inline-block;
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            margin-bottom: 0.7rem;
        }
        .match-card .team-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            flex: 1;
        }
        .match-card .team-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--deep-space-2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.85rem;
            color: #fff;
            letter-spacing: 0.04em;
            border: 2px solid rgba(255, 255, 255, 0.15);
        }
        .match-card .team-icon.team-a {
            background: #1a3a5c;
        }
        .match-card .team-icon.team-b {
            background: #3d1a1a;
        }
        .match-card .team-name {
            font-weight: 600;
            font-size: 0.82rem;
            color: var(--text-primary);
            text-align: center;
            line-height: 1.3;
        }
        .match-card .vs-badge {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1rem;
            color: var(--text-secondary);
            flex-shrink: 0;
            padding: 0 0.3rem;
        }
        .match-card .score-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: var(--font-mono);
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--deep-space);
            margin: 0.5rem 0;
        }
        .match-card .score-display .score-num {
            line-height: 1;
        }
        .match-card .score-display .score-colon {
            color: var(--brand-orange);
            font-size: 1.2rem;
        }
        .match-card .match-status {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.25rem 0.7rem;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
        }
        .match-card .match-status.live {
            background: rgba(247, 73, 2, 0.12);
            color: var(--brand-orange);
            animation: pulse-live 1.8s ease-in-out infinite;
        }
        .match-card .match-status.upcoming {
            background: rgba(0, 230, 255, 0.08);
            color: var(--neon-cyan);
        }
        .match-card .match-status.finished {
            background: rgba(90, 95, 114, 0.1);
            color: var(--text-secondary);
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .match-card .card-action-row {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.8rem;
        }
        .match-card .btn-card-action {
            flex: 1;
            padding: 0.5rem 0.6rem;
            font-size: 0.78rem;
            font-weight: 700;
            border-radius: 8px;
            text-align: center;
            transition: all var(--transition-fast);
            cursor: pointer;
            letter-spacing: 0.03em;
        }
        .btn-detail {
            background: var(--deep-space);
            color: #fff;
            border: 2px solid var(--deep-space);
        }
        .btn-detail:hover {
            background: #1f2640;
            border-color: #1f2640;
        }
        .btn-live {
            background: var(--brand-orange);
            color: #fff;
            border: 2px solid var(--brand-orange);
        }
        .btn-live:hover {
            background: var(--brand-orange-glow);
            border-color: var(--brand-orange-glow);
            box-shadow: 0 0 16px rgba(247, 73, 2, 0.4);
        }

        /* ============ SIDEBAR ============ */
        .sidebar-panel {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: sticky;
            top: calc(var(--nav-height) + 1.5rem);
        }
        @media (max-width: 1024px) {
            .sidebar-panel {
                display: none;
            }
        }
        .sidebar-block {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 1.3rem;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
        }
        .sidebar-block h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            padding-bottom: 0.6rem;
            border-bottom: 2px solid rgba(247, 73, 2, 0.15);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sidebar-block h4 .mini-dot {
            width: 5px;
            height: 5px;
            background: var(--brand-orange);
            border-radius: 50%;
            display: inline-block;
        }
        .filter-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .filter-chip {
            padding: 0.35rem 0.75rem;
            font-size: 0.78rem;
            font-weight: 600;
            border-radius: var(--radius-pill);
            border: 1.5px solid #ddd;
            background: #fff;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-chip:hover {
            border-color: var(--brand-orange);
            color: var(--brand-orange);
        }
        .filter-chip.chip-active {
            background: var(--brand-orange);
            color: #fff;
            border-color: var(--brand-orange);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .tag-cloud .tag {
            padding: 0.3rem 0.7rem;
            font-size: 0.74rem;
            font-weight: 500;
            border-radius: var(--radius-pill);
            background: rgba(247, 73, 2, 0.06);
            color: var(--brand-orange-deep);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .tag-cloud .tag:hover {
            background: rgba(247, 73, 2, 0.15);
            border-color: rgba(247, 73, 2, 0.3);
        }
        .update-info {
            font-size: 0.78rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .update-info i {
            color: var(--neon-cyan);
            font-size: 0.7rem;
        }

        /* ============ RANKING SECTION ============ */
        .ranking-section {
            padding: 2.5rem 0;
            background: #fff;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        .ranking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .ranking-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .ranking-card {
            background: var(--mist-white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .ranking-card h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background var(--transition-fast);
        }
        .ranking-item:last-child {
            border-bottom: none;
        }
        .ranking-item:hover {
            background: rgba(247, 73, 2, 0.03);
            border-radius: 6px;
            padding-left: 0.4rem;
            padding-right: 0.4rem;
        }
        .rank-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .rank-num.top3 {
            background: var(--brand-orange);
            color: #fff;
        }
        .rank-num.normal {
            background: #e5e7ec;
            color: var(--text-secondary);
        }
        .rank-team-name {
            flex: 1;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .rank-stat {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--deep-space);
            white-space: nowrap;
        }
        .rank-change {
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
        }
        .rank-change.up {
            color: #10b981;
        }
        .rank-change.down {
            color: #ef4444;
        }
        .rank-change.stable {
            color: var(--text-secondary);
        }

        /* ============ PLAYER HIGHLIGHTS ============ */
        .player-highlights {
            padding: 2.5rem 0;
            background: var(--deep-space);
            position: relative;
            overflow: hidden;
        }
        .player-highlights::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(247, 73, 2, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .player-highlights .section-header h2 {
            color: #fff;
        }
        .player-highlights .section-header .view-all {
            color: var(--neon-cyan);
            border-color: rgba(0, 230, 255, 0.35);
        }
        .player-highlights .section-header .view-all:hover {
            background: var(--neon-cyan);
            color: var(--deep-space);
            border-color: var(--neon-cyan);
        }
        .player-cards-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 1024px) {
            .player-cards-row {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .player-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
        }
        .player-card {
            background: var(--card-bg-dark);
            border-radius: var(--radius-lg);
            padding: 1.2rem;
            text-align: center;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .player-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(247, 73, 2, 0.2);
            border-color: rgba(0, 230, 255, 0.3);
        }
        .player-card .player-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #2a2040, #1a3050);
            margin: 0 auto 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        .player-card .player-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 0.2rem;
        }
        .player-card .player-role {
            font-size: 0.7rem;
            color: var(--neon-cyan);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        .player-card .kda-badge {
            display: inline-block;
            font-family: var(--font-mono);
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--brand-orange);
            letter-spacing: -0.02em;
        }
        .player-card .kda-label {
            font-size: 0.68rem;
            color: var(--text-on-dark-muted);
            display: block;
            margin-top: 0.1rem;
        }

        /* ============ PATCH NOTES ============ */
        .patch-section {
            padding: 2.5rem 0;
            background: var(--mist-white);
        }
        .patch-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .patch-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-md);
            background: var(--deep-space);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 900;
            font-size: 1.3rem;
            color: var(--brand-orange);
            border: 2px solid rgba(247, 73, 2, 0.3);
        }
        .patch-info {
            flex: 1;
            min-width: 240px;
        }
        .patch-info h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
        }
        .patch-info .patch-date {
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin-bottom: 0.6rem;
        }
        .patch-info .patch-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .patch-changes {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-top: 0.8rem;
        }
        .patch-tag {
            padding: 0.25rem 0.65rem;
            font-size: 0.72rem;
            font-weight: 600;
            border-radius: var(--radius-pill);
            background: rgba(247, 73, 2, 0.07);
            color: var(--brand-orange-deep);
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials-section {
            padding: 2.5rem 0;
            background: var(--deep-space-2);
            position: relative;
            overflow: hidden;
        }
        .testimonials-section::before {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -15%;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(0, 230, 255, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .testimonials-section .section-header h2 {
            color: #fff;
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-lg);
            padding: 1.3rem;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .testimonial-card:hover {
            border-color: rgba(247, 73, 2, 0.3);
            box-shadow: 0 4px 20px rgba(247, 73, 2, 0.08);
        }
        .testimonial-card .t-user {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 0.7rem;
        }
        .testimonial-card .t-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3a2040, #203050);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: #fff;
            flex-shrink: 0;
        }
        .testimonial-card .t-name {
            font-weight: 700;
            font-size: 0.88rem;
            color: #fff;
        }
        .testimonial-card .t-name::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 5px;
            background: var(--brand-orange);
            border-radius: 50%;
            margin-right: 0.4rem;
            vertical-align: middle;
        }
        .testimonial-card .t-tag {
            font-size: 0.68rem;
            color: var(--neon-cyan);
            font-weight: 500;
        }
        .testimonial-card .t-rating {
            color: var(--brand-orange);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }
        .testimonial-card .t-text {
            font-size: 0.85rem;
            color: var(--text-on-dark-muted);
            line-height: 1.55;
            font-style: italic;
        }
        .testimonial-card .t-time {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 0.6rem;
        }

        /* ============ FAQ ============ */
        .faq-section {
            padding: 2.5rem 0;
            background: #fff;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        .faq-item {
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            background: #fafbfc;
        }
        .faq-item.active {
            box-shadow: 0 4px 20px rgba(247, 73, 2, 0.1);
            border-left: 4px solid var(--brand-orange);
            background: #fff;
        }
        .faq-question {
            width: 100%;
            padding: 1rem 1.2rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--brand-orange);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        .faq-item.active .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--brand-orange);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 1.2rem 1.1rem;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ CTA ============ */
        .cta-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, #0A0E1C 0%, #1a1030 50%, #0D1B3E 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(247, 73, 2, 0.1) 0%, transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section h2 {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 0.8rem;
            position: relative;
            z-index: 2;
            letter-spacing: -0.02em;
        }
        .cta-section h2 span {
            color: var(--brand-orange);
        }
        .cta-section .cta-desc {
            color: var(--text-on-dark-muted);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
        .cta-section .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .btn-cta-primary {
            padding: 0.8rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            border-radius: var(--radius-pill);
            background: var(--brand-orange);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            box-shadow: 0 4px 20px rgba(247, 73, 2, 0.35);
        }
        .btn-cta-primary:hover {
            background: var(--brand-orange-glow);
            box-shadow: 0 6px 28px rgba(247, 73, 2, 0.5);
            transform: translateY(-2px);
        }
        .btn-cta-secondary {
            padding: 0.8rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            border-radius: var(--radius-pill);
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
        }
        .btn-cta-secondary:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }
        @media (max-width: 600px) {
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .btn-cta-primary,
            .btn-cta-secondary {
                padding: 0.65rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #080B16;
            color: var(--text-on-dark-muted);
            padding: 3rem 0 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .footer-desc {
            font-size: 0.82rem;
            line-height: 1.55;
            color: var(--text-on-dark-muted);
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 0.8rem;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .footer-col ul li a {
            font-size: 0.82rem;
            color: var(--text-on-dark-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.5rem 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-on-dark-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            align-items: center;
        }
        .footer-bottom a {
            color: var(--text-on-dark-muted);
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom span {
            color: rgba(255, 255, 255, 0.2);
        }

        /* Utility */
        .text-orange {
            color: var(--brand-orange);
        }
        .text-cyan {
            color: var(--neon-cyan);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }

        /* Grid background effect for dark sections */
        .grid-bg {
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* ============ RESPONSIVE FINE-TUNING ============ */
        @media (max-width: 1024px) {
            :root {
                --section-gap: 3rem;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            :root {
                --section-gap: 2.2rem;
            }
            .section-header h2 {
                font-size: 1.15rem;
            }
            .match-card .score-display {
                font-size: 1.4rem;
            }
            .match-card .team-icon {
                width: 36px;
                height: 36px;
                font-size: 0.7rem;
            }
        }
        @media (max-width: 520px) {
            .match-card {
                padding: 1rem;
            }
            .match-card .score-display {
                font-size: 1.2rem;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .ranking-item {
                gap: 0.5rem;
                padding: 0.55rem 0;
            }
            .player-card .kda-badge {
                font-size: 1.2rem;
            }
        }

/* roulang page: category3 */
/* ============ 设计变量 ============ */
        :root {
            --brand-orange: #F74902;
            --brand-orange-hover: #D93E00;
            --brand-orange-light: rgba(247, 73, 2, 0.12);
            --deep-space: #0A0E1C;
            --deep-space-2: #0D1225;
            --deep-space-3: #111827;
            --mist-white: #F2F4F8;
            --neon-cyan: #00E6FF;
            --neon-cyan-dim: rgba(0, 230, 255, 0.15);
            --text-primary: #E8ECF2;
            --text-secondary: #9BA3B5;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-card: rgba(255, 255, 255, 0.10);
            --shadow-card: 0 0 20px rgba(247, 73, 2, 0.05);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(0, 230, 255, 0.35);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --font-heading: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-mono: 'Red Hat Display', 'DIN', 'Inter', monospace;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --grid-pattern: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.015) 39px, rgba(255, 255, 255, 0.015) 40px),
                repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.015) 39px, rgba(255, 255, 255, 0.015) 40px);
            --noise-overlay: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23n)' opacity='0.025'/%3E%3C/svg%3E");
        }

        /* ============ 基础重置 ============ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.65;
            color: var(--text-primary);
            background-color: var(--deep-space);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input,
        select {
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.25;
            margin-top: 0;
            color: #fff;
        }
        h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
        }
        h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
        }
        h3 {
            font-size: clamp(1.15rem, 2vw, 1.5rem);
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 700;
        }

        /* ============ 容器 ============ */
        .custom-container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .custom-container {
                padding: 0 16px;
            }
        }

        /* ============ 导航 ============ */
        .nav-shell {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 14, 28, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-smooth);
        }
        .nav-inner {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            color: #fff;
            opacity: 0.9;
        }
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-orange);
            box-shadow: 0 0 10px var(--brand-orange), 0 0 24px rgba(247, 73, 2, 0.5);
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }
        .nav-links-desktop li {
            display: flex;
            align-items: center;
        }
        .nav-links-desktop a {
            display: inline-block;
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav-links-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links-desktop a.nav-active {
            color: #fff;
            background: var(--brand-orange-light);
            border-bottom: 3px solid var(--brand-orange);
            border-radius: 6px 6px 0 0;
            padding-bottom: 5px;
        }
        .nav-separator {
            display: inline-block;
            width: 1px;
            height: 18px;
            background: rgba(255, 255, 255, 0.15);
            margin: 0 4px;
            border-radius: 1px;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 8px 10px;
            border-radius: 6px;
            transition: background var(--transition-fast);
            line-height: 1;
        }
        .hamburger-btn:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* 移动端导航 */
        @media (max-width: 1024px) {
            .nav-links-desktop {
                display: none;
            }
            .hamburger-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .nav-inner {
                height: 56px;
                padding: 0 16px;
            }
            .nav-logo {
                font-size: 1.15rem;
            }
        }

        /* Off-canvas 移动菜单 */
        .off-canvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.65);
            z-index: 1100;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-smooth);
        }
        .off-canvas-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        .off-canvas-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            max-width: 85vw;
            height: 100%;
            background: var(--deep-space-3);
            z-index: 1200;
            transform: translateX(100%);
            transition: transform var(--transition-smooth);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-left: 1px solid var(--border-subtle);
            overflow-y: auto;
        }
        .off-canvas-panel.active {
            transform: translateX(0);
        }
        .off-canvas-panel .close-btn {
            align-self: flex-end;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.4rem;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition-fast);
        }
        .off-canvas-panel .close-btn:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        .off-canvas-panel a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all var(--transition-fast);
        }
        .off-canvas-panel a:hover,
        .off-canvas-panel a.nav-active-mobile {
            color: #fff;
            background: var(--brand-orange-light);
            border-left: 3px solid var(--brand-orange);
        }
        @media (min-width: 1025px) {
            .off-canvas-panel,
            .off-canvas-overlay {
                display: none;
            }
        }

        /* ============ 板块通用间距 ============ */
        .section-padding {
            padding: 72px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 48px 0;
            }
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            margin-bottom: 8px;
        }
        .section-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 3px;
            margin: 16px auto 0;
        }

        /* ============ 横幅区 (分类页Hero) ============ */
        .category-banner {
            position: relative;
            padding: 110px 0 60px;
            background: var(--deep-space-2);
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }
        .category-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--grid-pattern), var(--noise-overlay);
            pointer-events: none;
            z-index: 0;
        }
        .category-banner::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 70%;
            height: 220%;
            background: radial-gradient(ellipse at center, rgba(247, 73, 2, 0.07) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .category-banner .banner-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .category-banner .banner-text {
            flex: 1 1 400px;
        }
        .category-banner .banner-text h1 {
            color: #fff;
            margin-bottom: 12px;
            font-size: clamp(2rem, 4.5vw, 3rem);
        }
        .category-banner .banner-text .banner-desc {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 550px;
            line-height: 1.7;
        }
        .category-banner .banner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 18px;
        }
        .category-banner .banner-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-pill);
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .category-banner .banner-tag:hover {
            border-color: var(--brand-orange);
            color: #fff;
            background: var(--brand-orange-light);
        }
        .category-banner .banner-visual {
            flex: 0 0 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .category-banner .banner-visual img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            max-width: 280px;
            border: 2px solid var(--border-card);
            transition: all var(--transition-smooth);
        }
        .category-banner .banner-visual img:hover {
            border-color: rgba(0, 230, 255, 0.5);
            box-shadow: var(--shadow-card-hover);
        }
        @media (max-width: 768px) {
            .category-banner {
                padding: 90px 0 40px;
            }
            .category-banner .banner-content {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }
            .category-banner .banner-visual {
                flex: 0 0 auto;
            }
            .category-banner .banner-visual img {
                max-width: 200px;
            }
            .category-banner .banner-tags {
                justify-content: center;
            }
            .category-banner .banner-text .banner-desc {
                margin: 0 auto;
            }
        }

        /* ============ 数据徽章行 ============ */
        .stat-badges-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .stat-badges-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .stat-badges-row {
                grid-template-columns: 1fr;
            }
        }
        .stat-badge-card {
            background: var(--deep-space-3);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-badge-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--neon-cyan-dim) 0%, transparent 70%);
            pointer-events: none;
        }
        .stat-badge-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 230, 255, 0.4);
            box-shadow: var(--shadow-card-hover);
        }
        .stat-badge-card .stat-icon {
            font-size: 1.6rem;
            color: var(--neon-cyan);
            margin-bottom: 8px;
        }
        .stat-badge-card .stat-number {
            font-family: var(--font-mono);
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -1px;
        }
        .stat-badge-card .stat-number .unit {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-left: 2px;
        }
        .stat-badge-card .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .stat-badge-card .stat-trend {
            display: inline-block;
            font-size: 0.78rem;
            color: var(--neon-cyan);
            margin-top: 6px;
            font-weight: 600;
        }

        /* ============ 主内容区两栏布局 ============ */
        .content-two-col {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 32px;
            align-items: start;
        }
        @media (max-width: 1024px) {
            .content-two-col {
                grid-template-columns: 1fr;
            }
        }

        /* ============ 赛事数据卡片网格 ============ */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .match-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        .match-card {
            background: var(--deep-space-3);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 18px 16px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 230, 255, 0.4);
            box-shadow: var(--shadow-card-hover);
        }
        .match-card .match-league {
            font-size: 0.75rem;
            color: var(--brand-orange);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
        }
        .match-card .team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            flex: 1;
            text-align: center;
        }
        .match-card .team-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.8rem;
            color: var(--text-secondary);
            border: 2px solid var(--border-card);
            letter-spacing: 1px;
        }
        .match-card .team-name {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .match-card .match-vs {
            font-family: var(--font-mono);
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--neon-cyan);
            flex-shrink: 0;
        }
        .match-card .match-score-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: 10px 0;
            font-family: var(--font-mono);
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
        }
        .match-card .match-score-row .score-sep {
            color: var(--text-muted);
            font-size: 1rem;
        }
        .match-card .match-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .match-card .match-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            font-weight: 700;
        }
        .match-card .match-status.live {
            background: rgba(247, 73, 2, 0.2);
            color: var(--brand-orange);
            animation: pulse-live 1.5s ease-in-out infinite;
        }
        .match-card .match-status.upcoming {
            background: rgba(0, 230, 255, 0.1);
            color: var(--neon-cyan);
        }
        .match-card .match-status.finished {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .match-card .btn-detail {
            display: inline-block;
            margin-top: 10px;
            padding: 6px 16px;
            background: var(--brand-orange);
            color: #fff;
            border-radius: var(--radius-pill);
            font-size: 0.8rem;
            font-weight: 700;
            text-align: center;
            transition: all var(--transition-fast);
            width: 100%;
            letter-spacing: 0.3px;
        }
        .match-card .btn-detail:hover {
            background: var(--brand-orange-hover);
            color: #fff;
            box-shadow: 0 4px 16px rgba(247, 73, 2, 0.4);
        }

        /* ============ 右侧悬浮栏 ============ */
        .sidebar-panel {
            position: sticky;
            top: 90px;
            background: var(--deep-space-3);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .sidebar-panel {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }
        @media (max-width: 600px) {
            .sidebar-panel {
                grid-template-columns: 1fr;
            }
        }
        .sidebar-panel h4 {
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .sidebar-filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .sidebar-filter-group .filter-chip {
            display: block;
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            text-align: center;
        }
        .sidebar-filter-group .filter-chip:hover,
        .sidebar-filter-group .filter-chip.active-filter {
            border-color: var(--brand-orange);
            color: #fff;
            background: var(--brand-orange-light);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .tag-cloud .cloud-tag {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-pill);
            font-size: 0.78rem;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .tag-cloud .cloud-tag:hover {
            border-color: var(--neon-cyan);
            color: #fff;
            background: var(--neon-cyan-dim);
        }

        /* ============ 战队排行榜 ============ */
        .ranking-table-wrap {
            background: var(--deep-space-3);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
        }
        .ranking-table th {
            background: rgba(255, 255, 255, 0.03);
            padding: 14px 16px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }
        .ranking-table td {
            padding: 13px 16px;
            font-size: 0.9rem;
            color: var(--text-primary);
            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(255, 255, 255, 0.02);
        }
        .ranking-table .rank-num {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--brand-orange);
            width: 40px;
        }
        .ranking-table .rank-num.top3 {
            color: var(--neon-cyan);
        }
        .ranking-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .ranking-table .team-cell .team-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .ranking-table .trend-up {
            color: #22c55e;
            font-weight: 700;
        }
        .ranking-table .trend-down {
            color: #ef4444;
            font-weight: 700;
        }
        .ranking-table .trend-stable {
            color: var(--text-muted);
        }

        /* ============ 选手亮点卡片 ============ */
        .player-highlight-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 768px) {
            .player-highlight-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .player-highlight-grid {
                grid-template-columns: 1fr;
            }
        }
        .player-card {
            background: var(--deep-space-3);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .player-card:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 230, 255, 0.35);
            box-shadow: var(--shadow-card-hover);
        }
        .player-card .player-avatar-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(247, 73, 2, 0.15);
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--brand-orange);
            border: 2px solid rgba(247, 73, 2, 0.3);
        }
        .player-card .player-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
        }
        .player-card .player-team {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .player-card .player-stat {
            font-family: var(--font-mono);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--neon-cyan);
        }
        .player-card .player-stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ============ 用户评论区 ============ */
        .testimonial-section {
            background: var(--deep-space-2);
            position: relative;
            overflow: hidden;
        }
        .testimonial-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--grid-pattern);
            pointer-events: none;
            z-index: 0;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            position: relative;
            z-index: 2;
        }
        @media (max-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            position: relative;
            transition: all var(--transition-smooth);
        }
        .testimonial-card:hover {
            border-color: rgba(247, 73, 2, 0.3);
            background: rgba(255, 255, 255, 0.04);
        }
        .testimonial-card .testimonial-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .testimonial-card .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(247, 73, 2, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--brand-orange);
            flex-shrink: 0;
            border: 2px solid rgba(247, 73, 2, 0.25);
        }
        .testimonial-card .testimonial-user {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
        }
        .testimonial-card .testimonial-tag {
            font-size: 0.72rem;
            color: var(--neon-cyan);
            background: var(--neon-cyan-dim);
            padding: 2px 8px;
            border-radius: var(--radius-pill);
        }
        .testimonial-card .testimonial-stars {
            color: var(--brand-orange);
            font-size: 0.8rem;
            margin-bottom: 6px;
        }
        .testimonial-card .testimonial-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .testimonial-card .testimonial-time {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ============ FAQ手风琴 ============ */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--deep-space-3);
            transition: all var(--transition-fast);
        }
        .faq-item.active-faq {
            border-left: 4px solid var(--brand-orange);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 20px;
            text-align: left;
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: background var(--transition-fast);
            font-family: var(--font-body);
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-question .faq-icon {
            transition: transform var(--transition-smooth);
            color: var(--brand-orange);
            flex-shrink: 0;
        }
        .faq-item.active-faq .faq-question .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.active-faq .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        /* ============ CTA区域 ============ */
        .cta-strip {
            background: linear-gradient(135deg, var(--deep-space-2) 0%, #141a2e 50%, var(--deep-space-2) 100%);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(247, 73, 2, 0.08) 0%, transparent 65%);
            pointer-events: none;
        }
        .cta-strip .cta-content {
            position: relative;
            z-index: 2;
        }
        .cta-strip h2 {
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-strip p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 1rem;
        }
        .btn-cta-primary {
            display: inline-block;
            padding: 14px 36px;
            background: var(--brand-orange);
            color: #fff;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn-cta-primary:hover {
            background: var(--brand-orange-hover);
            color: #fff;
            box-shadow: 0 8px 28px rgba(247, 73, 2, 0.45);
            transform: translateY(-2px);
        }
        .btn-cta-outline {
            display: inline-block;
            padding: 14px 36px;
            background: transparent;
            color: #fff;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            border: 2px solid var(--border-card);
            cursor: pointer;
            text-align: center;
            margin-left: 12px;
        }
        .btn-cta-outline:hover {
            border-color: var(--brand-orange);
            color: #fff;
            background: var(--brand-orange-light);
        }
        @media (max-width: 520px) {
            .btn-cta-outline {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        /* ============ 页脚 ============ */
        .site-footer {
            background: var(--deep-space-2);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            position: relative;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-col .footer-brand {
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 6px;
        }
        .footer-col .footer-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 0.4px;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom {
            max-width: 1260px;
            margin: 32px auto 0;
            padding: 20px 24px 0;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom span {
            margin: 0 8px;
            color: var(--border-subtle);
        }

        /* ============ 背景修饰 ============ */
        .bg-grid-overlay {
            position: relative;
        }
        .bg-grid-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--grid-pattern);
            pointer-events: none;
            z-index: 0;
        }
        .bg-grid-overlay>* {
            position: relative;
            z-index: 2;
        }

        /* ============ 通用辅助 ============ */
        .text-brand {
            color: var(--brand-orange);
        }
        .text-cyan {
            color: var(--neon-cyan);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }

        /* ============ 移动端微调 ============ */
        @media (max-width: 768px) {
            .ranking-table {
                font-size: 0.78rem;
            }
            .ranking-table th,
            .ranking-table td {
                padding: 10px 8px;
            }
            .match-card .match-score-row {
                font-size: 1.4rem;
            }
            .stat-badge-card .stat-number {
                font-size: 1.7rem;
            }
        }

        /* ============ 全局过渡与可访问性 ============ */
        :focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }
        ::selection {
            background: rgba(247, 73, 2, 0.3);
            color: #fff;
        }

/* roulang page: category4 */
:root {
            --color-primary: #F74902;
            --color-primary-dark: #D43D00;
            --color-primary-light: #FF6B2E;
            --color-secondary: #0A0E1C;
            --color-secondary-light: #141A2E;
            --color-surface: #F2F4F8;
            --color-surface-alt: #E8EAF0;
            --color-accent-cyan: #00E6FF;
            --color-dota-purple: #3D1D6E;
            --color-dota-purple-deep: #1E0A3C;
            --color-dota-purple-light: #5B2D9E;
            --color-text: #1A1D28;
            --color-text-soft: #5A5F6E;
            --color-text-light: #8B8F9A;
            --color-white: #FFFFFF;
            --color-border: #E2E5EC;
            --color-border-light: #EEF0F5;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-pill: 50px;
            --shadow-card: 0 0 20px rgba(247, 73, 2, 0.05), 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 8px 32px rgba(247, 73, 2, 0.12), 0 0 0 2px rgba(0, 230, 255, 0.35), 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
            --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-display: 'Red Hat Display', 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --font-heading: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --font-body: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            --section-gap: 64px;
            --section-gap-sm: 40px;
            --container-max: 1240px;
            --nav-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.65;
            color: var(--color-text);
            background-color: var(--color-surface);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }
        input,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.25;
            color: var(--color-secondary);
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
        }

        /* ===== 导航 ===== */
        .nav-shell {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 28, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: background var(--transition-base);
        }
        .nav-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            width: 100%;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--color-white);
            letter-spacing: -0.01em;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--color-primary);
        }
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--color-primary);
            box-shadow: 0 0 10px rgba(247, 73, 2, 0.7);
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links-desktop li {
            display: flex;
            align-items: center;
        }
        .nav-links-desktop a {
            display: inline-block;
            padding: 8px 15px;
            font-size: 0.92rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.78);
            border-radius: var(--radius-pill);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links-desktop a:hover {
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-links-desktop a.nav-active {
            color: var(--color-primary);
            background: rgba(247, 73, 2, 0.1);
            font-weight: 700;
        }
        .nav-links-desktop a.nav-active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 15px;
            right: 15px;
            height: 2.5px;
            background: var(--color-primary);
            border-radius: 2px;
        }
        .nav-separator {
            width: 1px;
            height: 18px;
            background: rgba(255, 255, 255, 0.18);
            display: inline-block;
            margin: 0 4px;
            border-radius: 1px;
        }
        .hamburger-btn {
            display: none;
            color: var(--color-white);
            font-size: 1.4rem;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .hamburger-btn:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        @media (max-width: 900px) {
            .nav-links-desktop {
                display: none;
            }
            .hamburger-btn {
                display: block;
            }
        }

        /* ===== Off-canvas 移动菜单 ===== */
        .off-canvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-base);
        }
        .off-canvas-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .off-canvas-panel {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: var(--color-secondary);
            z-index: 2100;
            padding: 28px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: right var(--transition-base);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .off-canvas-panel.active {
            right: 0;
        }
        .off-canvas-panel a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .off-canvas-panel a:hover,
        .off-canvas-panel a.nav-active {
            background: rgba(247, 73, 2, 0.15);
            color: var(--color-primary);
        }
        .off-canvas-close {
            align-self: flex-end;
            font-size: 1.5rem;
            color: var(--color-white);
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .off-canvas-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* ===== 顶部横幅 ===== */
        .category-banner {
            position: relative;
            background: linear-gradient(160deg, var(--color-dota-purple-deep) 0%, var(--color-dota-purple) 40%, var(--color-secondary) 75%);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 70px 0 56px;
            text-align: center;
            overflow: hidden;
        }
        .category-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 60% 30%, rgba(247, 73, 2, 0.18) 0%, transparent 65%),
                radial-gradient(ellipse at 30% 70%, rgba(61, 29, 110, 0.5) 0%, transparent 60%);
            pointer-events: none;
        }
        .category-banner .banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .category-banner .banner-badge {
            display: inline-block;
            background: rgba(247, 73, 2, 0.2);
            color: var(--color-primary-light);
            font-weight: 700;
            font-size: 0.82rem;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(247, 73, 2, 0.35);
            letter-spacing: 0.04em;
            margin-bottom: 16px;
        }
        .category-banner h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--color-white);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            font-family: var(--font-display);
        }
        .category-banner h1 .highlight {
            color: var(--color-primary);
        }
        .category-banner .banner-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            max-width: 560px;
            margin: 0 auto 24px;
        }
        .category-banner .banner-stats-row {
            display: flex;
            justify-content: center;
            gap: 36px;
            flex-wrap: wrap;
        }
        .category-banner .banner-stat {
            text-align: center;
        }
        .category-banner .banner-stat .stat-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--color-accent-cyan);
            display: block;
            line-height: 1;
        }
        .category-banner .banner-stat .stat-label {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 4px;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .category-banner {
                padding: 48px 0 36px;
            }
            .category-banner h1 {
                font-size: 1.9rem;
            }
            .category-banner .banner-sub {
                font-size: 0.95rem;
            }
            .category-banner .banner-stats-row {
                gap: 18px;
            }
            .category-banner .banner-stat .stat-num {
                font-size: 1.4rem;
            }
        }

        /* ===== 板块通用 ===== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section-sm {
            padding: var(--section-gap-sm) 0;
        }
        .section-dark {
            background: var(--color-secondary);
            color: var(--color-white);
        }
        .section-dark h2,
        .section-dark h3 {
            color: var(--color-white);
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .section-header .section-sub {
            font-size: 0.95rem;
            color: var(--color-text-soft);
        }
        .section-dark .section-sub {
            color: rgba(255, 255, 255, 0.55);
        }
        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .section-header {
                margin-bottom: 28px;
            }
        }

        /* ===== 数据指标卡片行 ===== */
        .stat-cards-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .stat-card-mini {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            border: 1px solid var(--color-border-light);
            position: relative;
            overflow: hidden;
        }
        .stat-card-mini:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
            border-color: transparent;
        }
        .stat-card-mini .stat-icon {
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: 8px;
        }
        .stat-card-mini .stat-value {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--color-secondary);
            line-height: 1;
        }
        .stat-card-mini .stat-label-sm {
            font-size: 0.75rem;
            color: var(--color-text-soft);
            margin-top: 4px;
            font-weight: 500;
        }
        .stat-card-mini .stat-trend {
            font-size: 0.7rem;
            font-weight: 700;
            margin-top: 4px;
            display: inline-block;
            padding: 2px 8px;
            border-radius: var(--radius-pill);
        }
        .stat-trend.up {
            color: #10B981;
            background: rgba(16, 185, 129, 0.1);
        }
        .stat-trend.down {
            color: #EF4444;
            background: rgba(239, 68, 68, 0.1);
        }
        @media (max-width: 1024px) {
            .stat-cards-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 520px) {
            .stat-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card-mini {
                padding: 14px 10px;
            }
            .stat-card-mini .stat-value {
                font-size: 1.4rem;
            }
        }

        /* ===== 主内容区布局 ===== */
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 28px;
            align-items: start;
        }
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 数据卡片网格 ===== */
        .data-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .data-match-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .data-match-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: transparent;
        }
        .data-match-card .card-league-tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            background: rgba(247, 73, 2, 0.08);
            color: var(--color-primary);
            margin-bottom: 10px;
        }
        .data-match-card .card-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
        }
        .data-match-card .team-block {
            text-align: center;
            flex: 1;
        }
        .data-match-card .team-logo {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-surface);
            margin: 0 auto 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--color-secondary);
            font-family: var(--font-display);
            border: 2px solid var(--color-border);
        }
        .data-match-card .team-name {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--color-text);
            line-height: 1.2;
        }
        .data-match-card .card-vs {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--color-primary);
            flex-shrink: 0;
        }
        .data-match-card .card-score-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .data-match-card .score-num {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            color: var(--color-secondary);
            line-height: 1;
        }
        .data-match-card .score-divider {
            color: var(--color-text-light);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .data-match-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.72rem;
            color: var(--color-text-soft);
        }
        .data-match-card .card-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.7rem;
        }
        .card-status.live {
            background: rgba(239, 68, 68, 0.12);
            color: #EF4444;
            animation: pulse-dot 2s infinite;
        }
        .card-status.upcoming {
            background: rgba(247, 147, 26, 0.1);
            color: #F7931A;
        }
        .card-status.finished {
            background: rgba(139, 143, 154, 0.1);
            color: var(--color-text-light);
        }
        .data-match-card .card-action-btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 9px 0;
            margin-top: 12px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.82rem;
            background: var(--color-primary);
            color: var(--color-white);
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
        }
        .data-match-card .card-action-btn:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 4px 16px rgba(247, 73, 2, 0.35);
            color: var(--color-white);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        @media (max-width: 900px) {
            .data-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .data-match-card {
                padding: 14px;
            }
            .data-match-card .score-num {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 520px) {
            .data-cards-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        /* ===== 右侧筛选器 ===== */
        .filter-sidebar {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            position: sticky;
            top: calc(var(--nav-height) + 20px);
        }
        .filter-sidebar h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--color-secondary);
        }
        .filter-sidebar .filter-group {
            margin-bottom: 16px;
        }
        .filter-sidebar .filter-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-text-light);
            margin-bottom: 6px;
            display: block;
        }
        .filter-sidebar select {
            width: 100%;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
            font-size: 0.85rem;
            background: var(--color-surface);
            color: var(--color-text);
            font-weight: 500;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235A5F6E'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            cursor: pointer;
            transition: border-color var(--transition-fast);
        }
        .filter-sidebar select:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(247, 73, 2, 0.08);
        }
        .filter-sidebar .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .filter-sidebar .filter-tag {
            display: inline-block;
            padding: 5px 12px;
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            font-weight: 600;
            background: var(--color-surface);
            color: var(--color-text-soft);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .filter-sidebar .filter-tag:hover,
        .filter-sidebar .filter-tag.active {
            background: rgba(247, 73, 2, 0.08);
            color: var(--color-primary);
            border-color: rgba(247, 73, 2, 0.25);
        }
        @media (max-width: 1024px) {
            .filter-sidebar {
                display: none;
            }
        }

        /* ===== 战队排行 ===== */
        .team-rank-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .team-rank-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
        }
        .team-rank-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card-hover);
            border-color: transparent;
        }
        .team-rank-item .rank-num {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--color-primary);
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }
        .team-rank-item .rank-logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-surface);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.9rem;
            color: var(--color-secondary);
            border: 2px solid var(--color-border);
        }
        .team-rank-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .team-rank-item .rank-team-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text);
        }
        .team-rank-item .rank-region {
            font-size: 0.7rem;
            color: var(--color-text-light);
        }
        .team-rank-item .rank-winrate {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-secondary);
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .team-rank-list {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 选手数据模块 ===== */
        .player-table-wrap {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
        }
        .player-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }
        .player-table-wrap thead th {
            background: var(--color-secondary);
            color: var(--color-white);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 14px 16px;
            text-align: left;
        }
        .player-table-wrap tbody td {
            padding: 12px 16px;
            font-size: 0.88rem;
            border-bottom: 1px solid var(--color-border-light);
            font-weight: 500;
        }
        .player-table-wrap tbody tr {
            transition: background var(--transition-fast);
        }
        .player-table-wrap tbody tr:hover {
            background: rgba(247, 73, 2, 0.03);
        }
        .player-table-wrap .player-name-cell {
            font-weight: 700;
            color: var(--color-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .player-table-wrap .player-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-surface);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.65rem;
        }
        .player-table-wrap .kda-highlight {
            font-family: var(--font-display);
            font-weight: 800;
            color: var(--color-primary);
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .player-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .player-table-wrap table {
                min-width: 600px;
            }
        }

        /* ===== 版本资讯卡片 ===== */
        .patch-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .patch-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        .patch-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
            border-color: transparent;
        }
        .patch-card .patch-version {
            display: inline-block;
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.3rem;
            color: var(--color-dota-purple-light);
            margin-bottom: 6px;
        }
        .patch-card .patch-date {
            font-size: 0.7rem;
            color: var(--color-text-light);
            margin-bottom: 8px;
        }
        .patch-card h4 {
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .patch-card p {
            font-size: 0.78rem;
            color: var(--color-text-soft);
            line-height: 1.5;
            margin: 0;
        }
        @media (max-width: 768px) {
            .patch-cards {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 用户评论 ===== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all var(--transition-base);
            position: relative;
        }
        .testimonial-card:hover {
            border-color: rgba(247, 73, 2, 0.4);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-2px);
        }
        .testimonial-card .test-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .testimonial-card .test-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--color-dota-purple-light);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.75rem;
            color: var(--color-white);
        }
        .testimonial-card .test-name {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--color-white);
        }
        .testimonial-card .test-name::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-primary);
            margin-right: 6px;
            vertical-align: middle;
            box-shadow: 0 0 6px rgba(247, 73, 2, 0.6);
        }
        .testimonial-card .test-tag {
            font-size: 0.65rem;
            color: var(--color-accent-cyan);
            font-weight: 600;
        }
        .testimonial-card .test-stars {
            color: #F59E0B;
            font-size: 0.7rem;
            margin-bottom: 6px;
        }
        .testimonial-card .test-text {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.55;
        }
        @media (max-width: 900px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== CTA 区块 ===== */
        .cta-block {
            background: linear-gradient(135deg, var(--color-dota-purple-deep) 0%, var(--color-secondary) 50%, var(--color-dota-purple) 100%);
            border-radius: var(--radius-xl);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(247, 73, 2, 0.2) 0%, transparent 55%);
            pointer-events: none;
        }
        .cta-block h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-white);
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
        }
        .cta-block p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
            margin-bottom: 22px;
        }
        .cta-block .cta-btn {
            display: inline-block;
            padding: 13px 32px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.95rem;
            background: var(--color-primary);
            color: var(--color-white);
            letter-spacing: 0.02em;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
            box-shadow: 0 6px 24px rgba(247, 73, 2, 0.4);
        }
        .cta-block .cta-btn:hover {
            background: var(--color-primary-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(247, 73, 2, 0.5);
            color: var(--color-white);
        }
        @media (max-width: 768px) {
            .cta-block {
                padding: 32px 20px;
            }
            .cta-block h3 {
                font-size: 1.4rem;
            }
        }

        /* ===== FAQ 手风琴 ===== */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--color-white);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-base);
        }
        .faq-item.active {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--color-primary);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--color-secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: color var(--transition-fast);
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-question .faq-icon {
            font-size: 0.8rem;
            transition: transform var(--transition-base);
            flex-shrink: 0;
            color: var(--color-text-light);
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: var(--color-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-base), padding var(--transition-base);
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 20px 16px;
            font-size: 0.85rem;
            color: var(--color-text-soft);
            line-height: 1.6;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--color-secondary);
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 0;
        }
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
        }
        .footer-brand {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--color-white);
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.82rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--color-primary);
        }
        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 20px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.4);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px;
            align-items: center;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom a:hover {
            color: var(--color-primary);
        }
        .footer-bottom span {
            color: rgba(255, 255, 255, 0.25);
        }
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 4px;
            }
        }

        /* ===== 加载更多 ===== */
        .load-more-wrap {
            text-align: center;
            margin-top: 24px;
        }
        .load-more-btn {
            display: inline-block;
            padding: 11px 28px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.88rem;
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
            cursor: pointer;
            transition: all var(--transition-base);
            letter-spacing: 0.02em;
        }
        .load-more-btn:hover {
            background: var(--color-primary);
            color: var(--color-white);
            box-shadow: 0 4px 16px rgba(247, 73, 2, 0.3);
        }

        /* ===== Foundation 覆盖 ===== */
        .grid-x>.cell {
            padding: 0;
        }
        @media (max-width: 640px) {
            .hide-on-mobile {
                display: none !important;
            }
        }

/* roulang page: category5 */
:root {
            --brand-orange: #F74902;
            --brand-orange-light: #FF6B35;
            --brand-gold: #E8A817;
            --deep-black: #0A0E1C;
            --dark-surface: #111827;
            --dark-card: #1A1F2E;
            --mist-white: #F2F4F8;
            --pure-white: #FFFFFF;
            --neon-cyan: #00E6FF;
            --text-primary: #E8EAEF;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-card: rgba(255, 255, 255, 0.1);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 50px;
            --shadow-card: 0 0 20px rgba(247, 73, 2, 0.05);
            --shadow-hover: 0 0 0 2px rgba(0, 230, 255, 0.4);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
            --spacing-xs: 0.5rem;
            --spacing-sm: 0.75rem;
            --spacing-md: 1.25rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4.5rem;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-title: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-body: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-data: 'Red Hat Display', 'DIN', 'Inter', system-ui, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--deep-black);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input,
        select {
            font-family: inherit;
        }
        ul {
            list-style: none;
        }

        /* ========== 导航 ========== */
        .nav-shell {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 14, 28, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-smooth);
            height: 64px;
            display: flex;
            align-items: center;
        }
        .nav-inner {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--pure-white);
            letter-spacing: -0.3px;
            white-space: nowrap;
            text-decoration: none;
        }
        .nav-logo:hover {
            color: var(--brand-orange);
        }
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--brand-orange);
            display: inline-block;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(247, 73, 2, 0.7);
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 0;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .nav-links-desktop li {
            display: flex;
            align-items: center;
        }
        .nav-links-desktop a {
            display: inline-block;
            padding: 0.45rem 1rem;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color var(--transition-fast), border-bottom var(--transition-fast);
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            letter-spacing: 0.2px;
            text-decoration: none;
        }
        .nav-links-desktop a:hover {
            color: var(--pure-white);
            border-bottom-color: rgba(247, 73, 2, 0.4);
        }
        .nav-links-desktop a.nav-active {
            color: var(--pure-white);
            border-bottom-color: var(--brand-orange);
            font-weight: 600;
        }
        .nav-separator {
            width: 1px;
            height: 18px;
            background: rgba(255, 255, 255, 0.15);
            margin: 0 0.35rem;
            display: inline-block;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 1.5rem;
            padding: 0.4rem;
            line-height: 1;
            cursor: pointer;
        }
        .hamburger-btn:focus {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
        }

        /* ========== Off-Canvas ========== */
        .off-canvas {
            background: var(--dark-surface) !important;
            color: var(--text-primary);
            padding: var(--spacing-lg);
        }
        .off-canvas .close-button {
            color: var(--pure-white);
            font-size: 1.6rem;
            cursor: pointer;
        }
        .off-canvas-menu {
            margin-top: var(--spacing-xl);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .off-canvas-menu a {
            display: block;
            padding: 0.75rem 1rem;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .off-canvas-menu a:hover,
        .off-canvas-menu a.nav-active {
            color: var(--pure-white);
            background: rgba(247, 73, 2, 0.12);
            border-left: 3px solid var(--brand-orange);
        }
        .off-canvas-menu a.nav-active {
            font-weight: 600;
        }

        /* ========== 容器 ========== */
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: var(--spacing-2xl) var(--spacing-lg);
        }
        .section-container-sm {
            max-width: 1080px;
            margin: 0 auto;
            padding: var(--spacing-xl) var(--spacing-lg);
        }

        /* ========== 分类横幅 Hero ========== */
        .category-hero {
            position: relative;
            padding-top: 100px;
            padding-bottom: var(--spacing-2xl);
            background: radial-gradient(ellipse at 30% 40%, rgba(232, 168, 23, 0.1) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 20%, rgba(247, 73, 2, 0.12) 0%, transparent 50%),
                var(--deep-black);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            overflow: hidden;
            border-bottom: 1px solid var(--border-subtle);
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 14, 28, 0.65) 0%, rgba(10, 14, 28, 0.92) 85%, var(--deep-black) 100%);
            z-index: 1;
            pointer-events: none;
        }
        .category-hero .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--spacing-xl);
        }
        .category-hero .hero-text {
            flex: 1 1 420px;
        }
        .category-hero .hero-badge {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(247, 73, 2, 0.2);
            border: 1px solid rgba(247, 73, 2, 0.4);
            border-radius: var(--radius-pill);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--brand-orange-light);
            letter-spacing: 0.5px;
            margin-bottom: var(--spacing-md);
        }
        .category-hero h1 {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: var(--pure-white);
            letter-spacing: -0.6px;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
        }
        .category-hero h1 span {
            color: var(--brand-orange);
        }
        .category-hero .hero-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: var(--spacing-lg);
        }
        .category-hero .hero-stats-mini {
            display: flex;
            gap: var(--spacing-lg);
            flex-wrap: wrap;
            margin-bottom: var(--spacing-md);
        }
        .category-hero .hero-stat-mini {
            text-align: center;
        }
        .category-hero .hero-stat-mini .stat-num {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 2rem;
            color: var(--neon-cyan);
            line-height: 1;
        }
        .category-hero .hero-stat-mini .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }
        .category-hero .hero-visual {
            flex: 0 0 340px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-match-card {
            background: var(--dark-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            box-shadow: var(--shadow-lg);
            min-width: 280px;
            text-align: center;
        }
        .hero-match-card .match-league {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand-gold);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: var(--spacing-sm);
        }
        .hero-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-sm);
        }
        .hero-match-card .team-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--pure-white);
        }
        .hero-match-card .match-vs {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--brand-orange);
        }
        .hero-match-card .match-score {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 2.6rem;
            color: var(--neon-cyan);
            letter-spacing: 1px;
        }
        .hero-match-card .match-status {
            display: inline-block;
            padding: 0.2rem 0.8rem;
            background: rgba(0, 230, 255, 0.1);
            border: 1px solid rgba(0, 230, 255, 0.3);
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            color: var(--neon-cyan);
            font-weight: 600;
            margin-top: var(--spacing-sm);
        }

        /* ========== 板块标题 ========== */
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }
        .section-header h2 {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--pure-white);
            letter-spacing: -0.3px;
            margin-bottom: var(--spacing-xs);
        }
        .section-header h2 span {
            color: var(--brand-orange);
        }
        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto;
        }
        .section-divider {
            width: 50px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 2px;
            margin: var(--spacing-sm) auto var(--spacing-md);
        }

        /* ========== 数据指标卡片行 ========== */
        .stat-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
        }
        .stat-card {
            background: var(--dark-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg) var(--spacing-md);
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover), var(--shadow-card);
            border-color: rgba(0, 230, 255, 0.3);
        }
        .stat-card:hover::after {
            opacity: 1;
        }
        .stat-card .stat-icon {
            font-size: 1.8rem;
            color: var(--brand-orange);
            margin-bottom: var(--spacing-sm);
        }
        .stat-card .stat-value {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 2.4rem;
            color: var(--pure-white);
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .stat-card .stat-value.accent {
            color: var(--neon-cyan);
        }
        .stat-card .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .stat-card .stat-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 0.2rem;
            opacity: 0.7;
        }

        /* ========== 双栏布局（主内容+侧栏） ========== */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: var(--spacing-xl);
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
        }
        .sidebar-col {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--dark-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
        }
        .sidebar-card h4 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--pure-white);
            margin-bottom: var(--spacing-md);
            letter-spacing: 0.2px;
        }
        .sidebar-card .filter-group {
            margin-bottom: var(--spacing-sm);
        }
        .sidebar-card .filter-group label {
            display: block;
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
            letter-spacing: 0.3px;
        }
        .sidebar-card .filter-group select {
            width: 100%;
            padding: 0.55rem 0.75rem;
            background: var(--deep-black);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 0.85rem;
            appearance: none;
            cursor: pointer;
            transition: border-color var(--transition-fast);
        }
        .sidebar-card .filter-group select:focus {
            border-color: var(--brand-orange);
            outline: none;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .tag-cloud .tag {
            display: inline-block;
            padding: 0.3rem 0.7rem;
            background: rgba(247, 73, 2, 0.08);
            border: 1px solid rgba(247, 73, 2, 0.2);
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .tag-cloud .tag:hover {
            background: rgba(247, 73, 2, 0.2);
            border-color: var(--brand-orange);
            color: var(--pure-white);
        }
        .tag-cloud .tag.hot {
            background: rgba(247, 73, 2, 0.25);
            border-color: var(--brand-orange);
            color: var(--brand-orange-light);
            font-weight: 600;
        }

        /* ========== 赛事数据卡片网格 ========== */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
        }
        .match-card-detailed {
            background: var(--dark-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }
        .match-card-detailed:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover), var(--shadow-card);
            border-color: rgba(0, 230, 255, 0.3);
        }
        .match-card-detailed .card-img-wrap {
            height: 140px;
            overflow: hidden;
            position: relative;
        }
        .match-card-detailed .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .match-card-detailed:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .match-card-detailed .card-img-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(10, 14, 28, 0.8);
            padding: 0.25rem 0.6rem;
            border-radius: var(--radius-pill);
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--brand-gold);
            letter-spacing: 0.5px;
        }
        .match-card-detailed .card-body {
            padding: var(--spacing-md);
        }
        .match-card-detailed .match-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .match-card-detailed .match-league-tag {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--brand-orange-light);
            letter-spacing: 0.4px;
        }
        .match-card-detailed .match-teams-row {
            font-weight: 700;
            font-size: 1rem;
            color: var(--pure-white);
            margin-bottom: 0.4rem;
        }
        .match-card-detailed .match-info-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .match-card-detailed .match-score-big {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--neon-cyan);
            margin: 0.4rem 0;
        }
        .match-card-detailed .btn-detail-sm {
            display: inline-block;
            padding: 0.35rem 1rem;
            background: transparent;
            border: 1px solid var(--brand-orange);
            color: var(--brand-orange);
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        .match-card-detailed .btn-detail-sm:hover {
            background: var(--brand-orange);
            color: var(--pure-white);
        }

        /* ========== 战队排行表 ========== */
        .ranking-table-wrap {
            background: var(--dark-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: var(--spacing-xl);
        }
        .ranking-table-wrap h3 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--pure-white);
            padding: var(--spacing-md) var(--spacing-lg);
            border-bottom: 1px solid var(--border-subtle);
            margin: 0;
            letter-spacing: 0.2px;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
        }
        .ranking-table th {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 0.7rem var(--spacing-md);
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.02);
        }
        .ranking-table td {
            padding: 0.7rem var(--spacing-md);
            font-size: 0.88rem;
            color: var(--text-primary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            vertical-align: middle;
        }
        .ranking-table tbody tr {
            transition: background var(--transition-fast);
        }
        .ranking-table tbody tr:hover {
            background: rgba(247, 73, 2, 0.05);
        }
        .rank-num {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--brand-orange);
            width: 40px;
        }
        .rank-num.top3 {
            color: var(--brand-gold);
        }
        .team-name-cell {
            font-weight: 600;
            color: var(--pure-white);
        }
        .change-up {
            color: #22c55e;
            font-weight: 700;
            font-size: 0.8rem;
        }
        .change-down {
            color: #ef4444;
            font-weight: 700;
            font-size: 0.8rem;
        }
        .change-stable {
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .win-rate-bar {
            display: inline-block;
            height: 6px;
            background: var(--brand-orange);
            border-radius: 3px;
            vertical-align: middle;
            margin-right: 6px;
        }

        /* ========== 选手亮点卡片 ========== */
        .player-highlights {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
        }
        .player-card {
            background: var(--dark-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .player-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 230, 255, 0.3);
        }
        .player-card .player-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
            margin: 0 auto var(--spacing-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--pure-white);
            font-weight: 800;
            font-family: var(--font-data);
        }
        .player-card .player-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--pure-white);
        }
        .player-card .player-role {
            font-size: 0.7rem;
            color: var(--brand-orange-light);
            letter-spacing: 0.3px;
            margin-bottom: 0.3rem;
        }
        .player-card .player-stat {
            font-family: var(--font-data);
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--neon-cyan);
            line-height: 1;
        }
        .player-card .player-stat-label {
            font-size: 0.68rem;
            color: var(--text-muted);
        }

        /* ========== 用户评论 ========== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
        }
        .testimonial-card {
            background: rgba(26, 31, 46, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            position: relative;
            transition: all var(--transition-smooth);
        }
        .testimonial-card:hover {
            border-color: rgba(247, 73, 2, 0.3);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }
        .testimonial-card .t-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: var(--spacing-sm);
        }
        .testimonial-card .t-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #F74902, #E8A817);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #fff;
            font-weight: 700;
        }
        .testimonial-card .t-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--pure-white);
        }
        .testimonial-card .t-name::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--brand-orange);
            border-radius: 50%;
            margin-right: 6px;
            vertical-align: middle;
        }
        .testimonial-card .t-tag {
            font-size: 0.68rem;
            color: var(--text-muted);
        }
        .testimonial-card .t-rating {
            color: var(--brand-gold);
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
        }
        .testimonial-card .t-text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            font-style: italic;
        }

        /* ========== FAQ 手风琴 ========== */
        .faq-accordion {
            max-width: 900px;
            margin: 0 auto var(--spacing-xl);
        }
        .faq-item {
            background: var(--dark-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 0.6rem;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item.active {
            border-left: 4px solid var(--brand-orange);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--pure-white);
            font-weight: 600;
            font-size: 0.95rem;
            padding: var(--spacing-md) var(--spacing-lg);
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: 0.2px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--brand-orange-light);
        }
        .faq-question .faq-icon {
            font-size: 0.75rem;
            transition: transform var(--transition-fast);
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .faq-item.active .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--brand-orange);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 var(--spacing-lg);
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 var(--spacing-lg) var(--spacing-md);
        }

        /* ========== CTA 区块 ========== */
        .cta-block {
            background: linear-gradient(135deg, rgba(247, 73, 2, 0.15) 0%, rgba(10, 14, 28, 0.9) 60%, rgba(0, 230, 255, 0.06) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-2xl) var(--spacing-xl);
            text-align: center;
            max-width: 900px;
            margin: 0 auto var(--spacing-2xl);
        }
        .cta-block h3 {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--pure-white);
            margin-bottom: var(--spacing-sm);
            letter-spacing: -0.3px;
        }
        .cta-block p {
            color: var(--text-secondary);
            margin-bottom: var(--spacing-lg);
            font-size: 0.95rem;
        }
        .btn-cta-primary {
            display: inline-block;
            padding: 0.75rem 2.2rem;
            background: var(--brand-orange);
            color: var(--pure-white);
            border: none;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(247, 73, 2, 0.3);
        }
        .btn-cta-primary:hover {
            background: #e04300;
            box-shadow: 0 6px 24px rgba(247, 73, 2, 0.5);
            transform: translateY(-2px);
            color: var(--pure-white);
        }
        .btn-cta-outline {
            display: inline-block;
            padding: 0.7rem 2rem;
            background: transparent;
            border: 2px solid var(--brand-orange);
            color: var(--brand-orange);
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            text-decoration: none;
            margin-left: var(--spacing-md);
        }
        .btn-cta-outline:hover {
            background: var(--brand-orange);
            color: var(--pure-white);
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--dark-surface);
            border-top: 1px solid var(--border-subtle);
            padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-lg);
            color: var(--text-secondary);
        }
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-xl);
            margin-bottom: var(--spacing-xl);
        }
        .footer-col h4 {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--pure-white);
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.4rem;
        }
        .footer-col ul li a {
            font-size: 0.82rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
            text-decoration: none;
        }
        .footer-col ul li a:hover {
            color: var(--brand-orange);
        }
        .footer-brand {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--pure-white);
            margin-bottom: 0.5rem;
        }
        .footer-desc {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            border-top: 1px solid var(--border-subtle);
            padding-top: var(--spacing-md);
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .footer-bottom p {
            margin-bottom: 0.3rem;
        }
        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
        }
        .footer-bottom span {
            margin: 0 0.5rem;
            opacity: 0.4;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .content-with-sidebar {
                grid-template-columns: 1fr;
            }
            .sidebar-col {
                position: static;
                order: -1;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
            .sidebar-col .sidebar-card {
                margin-bottom: 0;
            }
            .stat-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .match-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .player-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-hero .hero-visual {
                flex: 0 0 260px;
            }
        }
        @media (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .hamburger-btn {
                display: inline-block;
            }
            .stat-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .match-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .player-highlights {
                grid-template-columns: 1fr 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .category-hero .hero-inner {
                flex-direction: column;
                text-align: center;
            }
            .category-hero .hero-visual {
                flex: 0 0 auto;
                width: 100%;
                max-width: 320px;
            }
            .category-hero .hero-desc {
                max-width: 100%;
            }
            .category-hero .hero-stats-mini {
                justify-content: center;
            }
            .sidebar-col {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .cta-block .btn-cta-outline {
                margin-left: 0;
                margin-top: var(--spacing-sm);
            }
            .ranking-table {
                font-size: 0.75rem;
            }
            .ranking-table th,
            .ranking-table td {
                padding: 0.5rem 0.5rem;
            }
        }
        @media (max-width: 520px) {
            .stat-cards-row {
                grid-template-columns: 1fr;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .player-highlights {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .category-hero h1 {
                font-size: 1.6rem;
            }
            .category-hero .hero-stats-mini {
                gap: var(--spacing-md);
            }
            .category-hero .hero-stat-mini .stat-num {
                font-size: 1.5rem;
            }
            .hero-match-card .match-score {
                font-size: 2rem;
            }
            .btn-cta-primary,
            .btn-cta-outline {
                display: block;
                width: 100%;
                text-align: center;
                margin-left: 0;
                margin-bottom: 0.5rem;
            }
        }
