/* roulang page: index */
:root {
            --bg-primary: #141418;
            --bg-card: #1A1A1F;
            --bg-card-hover: #1E1E24;
            --bg-nav-channel: rgba(26, 26, 31, 0.95);
            --text-primary: #EAECEF;
            --text-secondary: #9DA3AE;
            --text-muted: #5E646E;
            --steel-gray: #8A8F98;
            --steel-light: #B0B5BE;
            --accent-orange: #FF5F1F;
            --accent-orange-hover: #E54E0F;
            --accent-cyan: #00E5FF;
            --accent-cyan-dim: rgba(0, 229, 255, 0.08);
            --accent-cyan-hover: rgba(0, 229, 255, 0.18);
            --accent-red: #C0392B;
            --accent-green: #27AE60;
            --border-color: rgba(138, 143, 152, 0.15);
            --border-color-strong: rgba(138, 143, 152, 0.25);
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 8px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-card-hover: 0 4px 16px rgba(0, 229, 255, 0.08);
            --shadow-btn-orange: 0 0 12px rgba(255, 95, 31, 0.4);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            --container-max: 1320px;
            --section-gap-lg: 80px;
            --section-gap-md: 48px;
            --section-gap-sm: 32px;
            --grid-gap: 20px;
            --nav-brand-height: 56px;
            --nav-channel-height: 44px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                linear-gradient(rgba(138, 143, 152, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(138, 143, 152, 0.015) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: center center;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all 0.2s ease;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }
        input {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER / NAV ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-primary);
        }
        .nav-brand-row {
            height: var(--nav-brand-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-primary);
        }
        .nav-logo {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .nav-logo .logo-accent {
            color: var(--accent-orange);
        }
        .nav-logo .logo-cyan-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            margin-left: 2px;
            box-shadow: 0 0 8px var(--accent-cyan);
        }
        .nav-brand-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-search-btn {
            background: none;
            color: var(--steel-gray);
            font-size: 18px;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-search-btn:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }
        .nav-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--steel-gray);
            font-size: 14px;
        }
        .nav-hamburger {
            display: none;
            background: none;
            color: var(--steel-gray);
            font-size: 22px;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
        }
        .nav-hamburger:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }

        .nav-channel-row {
            height: var(--nav-channel-height);
            background: var(--bg-nav-channel);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            padding: 0 24px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-channel-row::-webkit-scrollbar {
            display: none;
        }
        .nav-channel-list {
            display: flex;
            gap: 4px;
            list-style: none;
            white-space: nowrap;
            margin: 0 auto;
        }
        .nav-channel-list li a {
            display: block;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--steel-gray);
            border-radius: var(--radius-sm);
            position: relative;
            transition: color 0.2s ease;
        }
        .nav-channel-list li a:hover {
            color: var(--accent-cyan);
        }
        .nav-channel-list li a.active {
            color: var(--text-primary);
        }
        .nav-channel-list li a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 1px;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: var(--bg-primary);
            overflow: hidden;
            min-height: 480px;
            display: flex;
            align-items: center;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
            filter: saturate(0.6) brightness(0.7);
        }
        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image:
                linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .hero-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 60px 24px;
        }
        .hero-left h1 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .hero-left .hero-subtitle {
            font-size: 16px;
            font-weight: 400;
            color: var(--steel-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }
        .hero-tags span {
            display: inline-block;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 600;
            background: var(--accent-cyan-dim);
            color: var(--accent-cyan);
            border-radius: var(--radius-sm);
            letter-spacing: 0.3px;
        }
        .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-orange);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            letter-spacing: 0.3px;
            transition: all 0.2s ease;
        }
        .btn-primary:hover {
            background: var(--accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
            color: #fff;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--steel-gray);
            transition: all 0.2s ease;
        }
        .btn-secondary:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }
        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
        }
        .hero-right .hero-focus-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: 0 0 24px rgba(0, 229, 255, 0.06);
            transition: box-shadow 0.3s ease;
        }
        .hero-focus-card .focus-teams {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 16px;
            margin-bottom: 16px;
        }
        .focus-team {
            text-align: center;
        }
        .focus-team .team-emblem {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--border-color-strong);
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 800;
            color: var(--steel-gray);
            overflow: hidden;
        }
        .focus-team .team-emblem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .focus-team .team-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .focus-vs {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-cyan);
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
            min-width: 60px;
            text-align: center;
        }
        .focus-meta {
            text-align: center;
            margin-bottom: 14px;
        }
        .focus-meta .focus-map {
            font-size: 13px;
            color: var(--steel-light);
            font-weight: 500;
        }
        .focus-meta .focus-stage {
            display: inline-block;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(255, 95, 31, 0.15);
            color: var(--accent-orange);
            border-radius: var(--radius-sm);
            margin-top: 6px;
        }
        .focus-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-orange);
            margin-bottom: 14px;
        }
        .focus-status .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 95, 31, 0);
            }
        }
        .focus-link {
            display: block;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-cyan);
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }
        .focus-link:hover {
            background: var(--accent-cyan-dim);
            color: var(--accent-cyan);
        }

        /* ========== SECTION TITLES ========== */
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title .title-bar {
            width: 3px;
            height: 20px;
            background: var(--accent-orange);
            border-radius: 2px;
        }
        .section-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .section-header {
            margin-bottom: 32px;
        }

        /* ========== LIVE TICKER ========== */
        .live-ticker-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .live-ticker-wrap {
            display: flex;
            align-items: center;
            gap: 0;
            overflow-x: auto;
            padding: 14px 0;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .live-ticker-wrap::-webkit-scrollbar {
            display: none;
        }
        .live-ticker-label {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-orange);
            padding-right: 16px;
            border-right: 1px solid var(--border-color);
            margin-right: 16px;
            white-space: nowrap;
        }
        .live-ticker-label .pulse-dot-sm {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        .live-ticker-items {
            display: flex;
            gap: 24px;
            flex-shrink: 0;
        }
        .ticker-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            white-space: nowrap;
            padding: 6px 12px;
            background: rgba(26, 26, 31, 0.6);
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            transition: border-color 0.2s ease;
            cursor: default;
        }
        .ticker-item:hover {
            border-color: var(--border-color-strong);
        }
        .ticker-item .ticker-teams {
            font-weight: 600;
            color: var(--text-primary);
        }
        .ticker-item .ticker-score {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-cyan);
        }
        .ticker-item .ticker-map {
            font-size: 11px;
            color: var(--text-muted);
        }
        .ticker-status-live {
            font-size: 10px;
            font-weight: 700;
            color: var(--accent-orange);
            background: rgba(255, 95, 31, 0.15);
            padding: 2px 7px;
            border-radius: 3px;
        }

        /* ========== STATS GRID ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 20px;
            text-align: center;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        .stat-card:hover {
            border-color: var(--border-color-strong);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .stat-card .stat-icon {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--accent-cyan);
        }
        .stat-card .stat-icon.orange {
            color: var(--accent-orange);
        }
        .stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 40px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -1px;
        }
        .stat-card .stat-value.orange {
            color: var(--accent-orange);
        }
        .stat-card .stat-unit {
            font-size: 14px;
            font-weight: 500;
            color: var(--steel-gray);
            margin-bottom: 4px;
        }
        .stat-card .stat-desc {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ========== FOCUS MATCH CARD ========== */
        .focus-match-full {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            display: grid;
            grid-template-columns: 280px 1fr;
            overflow: hidden;
            transition: all 0.25s ease;
        }
        .focus-match-full:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-color-strong);
        }
        .focus-match-cover {
            background: url('/assets/images/coverpic/cover-1.webp') center/cover no-repeat;
            min-height: 200px;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 16px;
        }
        .focus-match-cover .cover-tag {
            background: var(--accent-orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            letter-spacing: 0.5px;
        }
        .focus-match-info {
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
        }
        .focus-match-teams-row {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .focus-match-team {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .focus-match-team .team-icon-sm {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid var(--border-color-strong);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 14px;
            color: var(--steel-gray);
            overflow: hidden;
        }
        .focus-match-team .team-icon-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .focus-match-team .team-name-sm {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .focus-match-score-big {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-cyan);
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
        }
        .focus-match-details {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--steel-light);
        }
        .focus-match-details span {
            background: rgba(138, 143, 152, 0.1);
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            font-weight: 500;
        }
        .focus-match-progress {
            height: 4px;
            background: rgba(138, 143, 152, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }
        .focus-match-progress .progress-fill {
            height: 100%;
            background: var(--accent-orange);
            border-radius: 2px;
            width: 65%;
            transition: width 0.5s ease;
        }

        /* ========== TEAM RANKING SCROLL ========== */
        .scroll-row-wrap {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: var(--border-color-strong) transparent;
            -webkit-overflow-scrolling: touch;
        }
        .scroll-row-wrap::-webkit-scrollbar {
            height: 4px;
        }
        .scroll-row-wrap::-webkit-scrollbar-thumb {
            background: var(--border-color-strong);
            border-radius: 4px;
        }
        .team-rank-card {
            flex-shrink: 0;
            width: 200px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 18px;
            text-align: center;
            transition: all 0.25s ease;
        }
        .team-rank-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(0, 229, 255, 0.3);
        }
        .team-rank-card .rank-num {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-cyan);
            margin-bottom: 8px;
        }
        .team-rank-card .rank-emblem {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid var(--border-color-strong);
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .team-rank-card .rank-emblem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .team-rank-card .rank-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .team-rank-card .rank-record {
            font-size: 11px;
            font-weight: 600;
            color: var(--accent-green);
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .team-rank-card .rank-winrate {
            font-size: 12px;
            color: var(--steel-light);
            margin-bottom: 10px;
        }
        .btn-tag {
            display: inline-block;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            background: var(--accent-cyan-dim);
            color: var(--accent-cyan);
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }
        .btn-tag:hover {
            background: var(--accent-cyan-hover);
            color: var(--accent-cyan);
        }

        /* ========== TIMELINE ========== */
        .timeline {
            position: relative;
            padding-left: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--border-color-strong), transparent);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 24px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -31px;
            top: 6px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--steel-gray);
            border: 2px solid var(--bg-primary);
            z-index: 2;
        }
        .timeline-item.live::before {
            background: var(--accent-orange);
            box-shadow: 0 0 10px rgba(255, 95, 31, 0.5);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        .timeline-item .tl-time {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 6px;
        }
        .timeline-item .tl-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            transition: all 0.2s ease;
        }
        .timeline-item .tl-card:hover {
            border-color: var(--border-color-strong);
            box-shadow: var(--shadow-card-hover);
        }
        .tl-card .tl-teams {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .tl-card .tl-meta {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .tl-card .tl-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 3px;
            background: rgba(138, 143, 152, 0.1);
            color: var(--steel-gray);
        }

        /* ========== NEWS WATERFALL ========== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }
        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: all 0.25s ease;
        }
        .news-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-color-strong);
            transform: translateY(-3px);
        }
        .news-card .news-cover {
            aspect-ratio: 16/9;
            background: var(--bg-primary);
            overflow: hidden;
            position: relative;
        }
        .news-card .news-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .news-card:hover .news-cover img {
            transform: scale(1.03);
        }
        .news-card .news-body {
            padding: 16px;
        }
        .news-card .news-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }
        .news-card:hover .news-title {
            color: var(--accent-cyan);
        }
        .news-card .news-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 12px;
        }
        .news-card .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 11px;
            color: var(--text-muted);
        }
        .news-card .news-tag {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 3px;
            background: rgba(255, 95, 31, 0.12);
            color: var(--accent-orange);
        }
        .news-card .news-heat {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ========== PLAYER CARDS SCROLL ========== */
        .player-card {
            flex-shrink: 0;
            width: 220px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 18px;
            text-align: center;
            transition: all 0.25s ease;
        }
        .player-card:hover {
            border-color: rgba(0, 229, 255, 0.35);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .player-card .player-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 2px solid var(--border-color-strong);
            margin: 0 auto 10px;
            overflow: hidden;
        }
        .player-card .player-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .player-card .player-id {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .player-card .player-team {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .player-card .player-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-size: 11px;
            color: var(--steel-light);
        }
        .player-card .player-stats .ps-val {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-orange);
        }

        /* ========== LIVE ENTRY CARDS ========== */
        .live-entry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }
        .live-entry-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: all 0.25s ease;
            position: relative;
        }
        .live-entry-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-color-strong);
            transform: translateY(-3px);
        }
        .live-entry-card .live-cover {
            aspect-ratio: 16/10;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }
        .live-entry-card .live-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .live-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #e74c3c;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        .live-entry-card .live-body {
            padding: 16px;
        }
        .live-entry-card .live-event-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .live-entry-card .live-matchup {
            font-size: 13px;
            color: var(--steel-light);
            margin-bottom: 8px;
        }
        .live-entry-card .live-countdown {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 10px;
        }
        .live-entry-card .btn-primary.btn-sm {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
        .platform-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 3px;
            font-weight: 500;
        }

        /* ========== VERSION LIST ========== */
        .version-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--grid-gap);
        }
        .version-item {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 16px;
            transition: all 0.25s ease;
            align-items: flex-start;
        }
        .version-item:hover {
            border-color: var(--border-color-strong);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .version-item .version-thumb {
            width: 80px;
            height: 60px;
            border-radius: var(--radius-sm);
            background: var(--bg-primary);
            flex-shrink: 0;
            overflow: hidden;
        }
        .version-item .version-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .version-item .version-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .version-item .version-info .ver-tag {
            font-size: 10px;
            font-weight: 600;
            background: var(--accent-cyan-dim);
            color: var(--accent-cyan);
            padding: 2px 8px;
            border-radius: 3px;
            display: inline-block;
            margin-bottom: 4px;
        }
        .version-item .version-info p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========== REVIEW CARDS ========== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 18px;
            transition: all 0.2s ease;
        }
        .review-card:hover {
            border-color: var(--border-color-strong);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-primary);
            border: 1px solid var(--border-color-strong);
            flex-shrink: 0;
            overflow: hidden;
        }
        .review-card .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .review-card .review-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .review-card .review-tag {
            font-size: 10px;
            font-weight: 600;
            background: rgba(138, 143, 152, 0.12);
            color: var(--steel-gray);
            padding: 2px 7px;
            border-radius: 3px;
        }
        .review-card .review-stars {
            color: var(--accent-orange);
            font-size: 12px;
            margin-bottom: 8px;
        }
        .review-card .review-text {
            font-size: 14px;
            color: var(--steel-light);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .review-card .review-time {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--grid-gap);
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: all 0.2s ease;
        }
        .faq-item:hover {
            border-color: var(--border-color-strong);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            background: none;
            text-align: left;
            gap: 12px;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            font-size: 18px;
            color: var(--accent-cyan);
            transition: transform 0.3s ease;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-answer-inner {
            padding: 0 20px 16px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 48px 40px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .cta-section p {
            font-size: 15px;
            color: var(--steel-light);
            margin-bottom: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 48px 24px 32px;
            margin-top: var(--section-gap-lg);
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            max-width: var(--container-max);
            margin: 0 auto 32px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 6px;
            transition: color 0.2s ease;
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .live-entry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq-grid {
                grid-template-columns: 1fr 1fr;
            }
            .focus-match-full {
                grid-template-columns: 220px 1fr;
            }
            .hero-container {
                gap: 28px;
                padding: 40px 20px;
            }
            .hero-left h1 {
                font-size: 24px;
            }
            .focus-vs {
                font-size: 28px;
            }
        }
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 32px 16px;
            }
            .hero-left h1 {
                font-size: 22px;
            }
            .hero-right .hero-focus-card {
                padding: 16px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-card .stat-value {
                font-size: 30px;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .live-entry-grid {
                grid-template-columns: 1fr;
            }
            .review-grid {
                grid-template-columns: 1fr;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .focus-match-full {
                grid-template-columns: 1fr;
            }
            .focus-match-cover {
                min-height: 160px;
            }
            .version-list {
                grid-template-columns: 1fr;
            }
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-channel-row {
                padding: 0 12px;
            }
            .nav-channel-list li a {
                padding: 8px 12px;
                font-size: 13px;
            }
            .timeline {
                padding-left: 28px;
            }
            .timeline::before {
                left: 10px;
            }
            .timeline-item::before {
                left: -24px;
                width: 8px;
                height: 8px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .live-ticker-label {
                font-size: 11px;
                padding-right: 10px;
                margin-right: 10px;
            }
            .ticker-item {
                font-size: 11px;
                gap: 6px;
                padding: 5px 8px;
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-card {
                padding: 14px;
            }
            .stat-card .stat-value {
                font-size: 26px;
            }
            .hero-container {
                padding: 24px 12px;
            }
            .hero-left h1 {
                font-size: 20px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 10px 18px;
                font-size: 13px;
            }
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .focus-match-score-big {
                font-size: 24px;
            }
            .focus-vs {
                font-size: 22px;
            }
            .section-title {
                font-size: 18px;
            }
            .team-rank-card {
                width: 160px;
                padding: 12px;
            }
            .player-card {
                width: 180px;
                padding: 14px;
            }
            .nav-logo {
                font-size: 17px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-deep: #141418;
            --bg-card: #1A1A1F;
            --bg-card-alt: #1E1E24;
            --text-primary: #EAECEF;
            --text-secondary: #9DA3AE;
            --text-muted: #5E646E;
            --border-subtle: rgba(138, 143, 152, 0.15);
            --border-medium: rgba(138, 143, 152, 0.25);
            --accent-orange: #FF5F1F;
            --accent-orange-hover: #E54E0F;
            --accent-cyan: #00E5FF;
            --accent-green: #27AE60;
            --accent-red: #C0392B;
            --steel-gray: #8A8F98;
            --steel-light: #B0B5BE;
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 8px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-card-hover: 0 4px 20px rgba(0, 229, 255, 0.08);
            --shadow-btn-orange: 0 0 12px rgba(255, 95, 31, 0.4);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            --container-max: 1320px;
            --section-gap-lg: 80px;
            --section-gap-md: 48px;
            --section-gap-sm: 32px;
            --grid-gap: 20px;
            --nav-brand-height: 56px;
            --nav-channel-height: 44px;
            --transition-fast: 0.15s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::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-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-deep);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }
        input,
        select {
            font-family: inherit;
            font-size: 14px;
            outline: none;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        input:focus,
        select:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
        }
        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER: 品牌行 ===== */
        .header-brand {
            background: var(--bg-deep);
            height: var(--nav-brand-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-brand .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .brand-logo {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .brand-logo .logo-highlight {
            color: var(--accent-orange);
        }
        .brand-logo .logo-divider {
            color: var(--steel-gray);
            font-weight: 400;
            font-size: 16px;
            margin: 0 2px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .brand-actions .icon-btn {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--steel-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all var(--transition-fast);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .brand-actions .icon-btn:hover {
            color: var(--accent-cyan);
            border-color: var(--border-medium);
            background: rgba(0, 229, 255, 0.05);
        }
        .user-avatar-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-card-alt);
            border: 2px solid var(--border-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--steel-gray);
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .user-avatar-placeholder:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        /* ===== HEADER: 频道标签行 ===== */
        .nav-channel-row {
            background: rgba(26, 26, 31, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            height: var(--nav-channel-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: var(--nav-brand-height);
            z-index: 999;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .nav-channel-row::-webkit-scrollbar {
            height: 2px;
        }
        .nav-channel-row::-webkit-scrollbar-thumb {
            background: var(--border-medium);
            border-radius: 2px;
        }
        .nav-channel-list {
            display: flex;
            align-items: center;
            gap: 0;
            white-space: nowrap;
            padding: 0 24px;
            margin: 0 auto;
            max-width: var(--container-max);
            width: 100%;
        }
        .nav-channel-list li {
            flex-shrink: 0;
        }
        .nav-channel-list a {
            display: block;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--steel-gray);
            position: relative;
            transition: color var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .nav-channel-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px 2px 0 0;
            transition: width var(--transition-smooth);
        }
        .nav-channel-list a:hover {
            color: var(--accent-cyan);
        }
        .nav-channel-list a:hover::after {
            width: 60%;
        }
        .nav-channel-list a.active {
            color: #fff;
        }
        .nav-channel-list a.active::after {
            width: 70%;
            background: var(--accent-orange);
        }

        /* 移动端汉堡菜单按钮 */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--steel-gray);
            font-size: 22px;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
        }

        /* ===== MAIN ===== */
        main {
            flex: 1;
        }

        /* ===== HERO 区域 ===== */
        .hero-section {
            background: var(--bg-deep);
            position: relative;
            overflow: hidden;
            padding: 60px 0 40px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(255, 95, 31, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(138, 143, 152, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(138, 143, 152, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            opacity: 0.5;
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1;
            min-width: 280px;
        }
        .hero-text .hero-badge {
            display: inline-block;
            background: rgba(0, 229, 255, 0.08);
            color: var(--accent-cyan);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 3px;
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .hero-text h1 {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .hero-text h1 .highlight {
            color: var(--accent-orange);
        }
        .hero-text .hero-subtitle {
            font-size: 15px;
            color: var(--steel-light);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 480px;
        }
        .hero-search-wrap {
            display: flex;
            gap: 8px;
            max-width: 500px;
        }
        .hero-search-wrap input {
            flex: 1;
            padding: 12px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-medium);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-size: 14px;
            min-width: 0;
        }
        .hero-search-wrap input::placeholder {
            color: var(--text-muted);
        }
        .hero-search-wrap .btn-search {
            padding: 12px 22px;
            background: var(--accent-orange);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .hero-search-wrap .btn-search:hover {
            background: var(--accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
        }
        .hero-stats-mini {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }
        .hero-stat-item {
            text-align: center;
            padding: 16px 20px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            min-width: 100px;
        }
        .hero-stat-item .stat-num {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
            letter-spacing: -0.5px;
        }
        .hero-stat-item .stat-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 6px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* ===== 数据指标卡片行 ===== */
        .metrics-row {
            padding: 32px 0;
            border-bottom: 1px solid var(--border-subtle);
            background: var(--bg-card-alt);
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--grid-gap);
        }
        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            transition: all var(--transition-smooth);
        }
        .metric-card:hover {
            border-color: rgba(0, 229, 255, 0.25);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .metric-card .metric-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .metric-card .metric-icon.icon-cyan {
            background: rgba(0, 229, 255, 0.1);
            color: var(--accent-cyan);
        }
        .metric-card .metric-icon.icon-orange {
            background: rgba(255, 95, 31, 0.1);
            color: var(--accent-orange);
        }
        .metric-card .metric-info .metric-value {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            letter-spacing: -0.5px;
        }
        .metric-card .metric-info .metric-unit {
            font-size: 13px;
            color: var(--steel-gray);
            font-weight: 500;
        }
        .metric-card .metric-info .metric-desc {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ===== 主内容区 ===== */
        .content-section {
            padding: var(--section-gap-md) 0;
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 28px;
            align-items: start;
        }

        /* 工具栏 */
        .toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .toolbar-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.3px;
        }
        .toolbar-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .sort-btn {
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--steel-gray);
            border: 1px solid var(--border-subtle);
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .sort-btn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.04);
        }
        .sort-btn.active {
            background: rgba(255, 95, 31, 0.12);
            color: var(--accent-orange);
            border-color: var(--accent-orange);
        }
        .filter-select {
            padding: 8px 32px 8px 12px;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            color: var(--steel-gray);
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238A8F98'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            letter-spacing: 0.3px;
        }
        .filter-select:hover {
            border-color: var(--border-medium);
        }

        /* 战队卡片网格 */
        .teams-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--grid-gap);
        }
        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .team-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--border-subtle);
            border-radius: 0 2px 2px 0;
            transition: all var(--transition-smooth);
        }
        .team-card:hover {
            border-color: rgba(0, 229, 255, 0.25);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .team-card:hover::before {
            background: var(--accent-cyan);
            width: 3px;
        }
        .team-card .team-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .team-card .team-logo-placeholder {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: var(--bg-card-alt);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: var(--steel-gray);
            letter-spacing: 0;
        }
        .team-card .team-logo-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-card .team-name-block .team-name {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.3px;
            line-height: 1.2;
        }
        .team-card .team-name-block .team-region {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 2px;
        }
        .team-card .team-rank-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-orange);
            line-height: 1;
            letter-spacing: -1px;
        }
        .team-card .team-rank-badge .rank-hash {
            font-size: 14px;
            color: var(--text-muted);
        }
        .team-card .team-stats-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .team-card .team-stat-mini {
            text-align: left;
        }
        .team-card .team-stat-mini .tsm-value {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
        }
        .team-card .team-stat-mini .tsm-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .team-card .team-form-row {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .team-card .form-dot {
            width: 22px;
            height: 22px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0;
            color: #fff;
        }
        .form-dot.win {
            background: var(--accent-green);
        }
        .form-dot.loss {
            background: var(--accent-red);
        }
        .team-card .team-players-preview {
            font-size: 12px;
            color: var(--steel-light);
            line-height: 1.5;
            margin-bottom: 14px;
        }
        .team-card .btn-detail {
            display: inline-block;
            width: 100%;
            text-align: center;
            padding: 9px 0;
            font-size: 13px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.3);
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .team-card .btn-detail:hover {
            background: rgba(0, 229, 255, 0.08);
            border-color: var(--accent-cyan);
            color: #fff;
        }

        /* ===== 右侧边栏 ===== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: calc(var(--nav-brand-height) + var(--nav-channel-height) + 20px);
        }
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 20px;
        }
        .sidebar-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3 .sidebar-icon {
            color: var(--accent-orange);
            font-size: 14px;
        }
        .hot-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hot-list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .hot-list-item:last-child {
            border-bottom: none;
        }
        .hot-list-item:hover {
            color: var(--accent-cyan);
        }
        .hot-list-item .hot-rank {
            font-family: var(--font-mono);
            font-size: 15px;
            font-weight: 800;
            color: var(--accent-orange);
            width: 22px;
            flex-shrink: 0;
            text-align: center;
            letter-spacing: -0.5px;
        }
        .hot-list-item .hot-rank.top3 {
            color: var(--accent-cyan);
        }
        .hot-list-item .hot-team-name {
            flex: 1;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }
        .hot-list-item .hot-winrate {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-green);
            letter-spacing: -0.3px;
        }
        .sidebar-metric-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        .sidebar-metric-mini:last-child {
            border-bottom: none;
        }
        .sidebar-metric-mini .smm-value {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-cyan);
            letter-spacing: -0.5px;
            flex-shrink: 0;
            width: 50px;
            text-align: right;
        }
        .sidebar-metric-mini .smm-label {
            font-size: 13px;
            color: var(--steel-light);
            letter-spacing: 0.3px;
        }

        /* ===== CTA 区域 ===== */
        .cta-section {
            padding: var(--section-gap-md) 0;
            background: var(--bg-card-alt);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .cta-inner {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .cta-inner h2 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .cta-inner p {
            font-size: 14px;
            color: var(--steel-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .cta-inner .btn-cta-primary {
            display: inline-block;
            padding: 13px 32px;
            background: var(--accent-orange);
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            border-radius: var(--radius-sm);
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
        }
        .cta-inner .btn-cta-primary:hover {
            background: var(--accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
            transform: translateY(-1px);
        }

        /* ===== FAQ 简版 ===== */
        .faq-mini-section {
            padding: var(--section-gap-md) 0;
        }
        .faq-mini-section .section-title {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 32px;
            letter-spacing: 0.5px;
        }
        .faq-grid-mini {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--grid-gap);
        }
        .faq-item-mini {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .faq-item-mini:hover {
            border-color: rgba(0, 229, 255, 0.2);
            box-shadow: var(--shadow-card-hover);
        }
        .faq-item-mini .faq-q {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .faq-item-mini .faq-q .faq-icon {
            color: var(--accent-orange);
            flex-shrink: 0;
            font-size: 13px;
            margin-top: 2px;
        }
        .faq-item-mini .faq-a {
            font-size: 13px;
            color: var(--steel-light);
            line-height: 1.6;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #111115;
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 28px;
            margin-top: auto;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--steel-gray);
            padding: 3px 0;
            transition: color var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .footer-col a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom p {
            margin: 2px 0;
        }
        .footer-bottom a {
            color: var(--steel-gray);
            font-size: 12px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1199px) {
            .teams-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .content-layout {
                grid-template-columns: 1fr 280px;
                gap: 20px;
            }
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-inner {
                gap: 32px;
            }
            .hero-stats-mini {
                gap: 16px;
            }
            .hero-stat-item {
                padding: 12px 14px;
                min-width: 80px;
            }
            .hero-stat-item .stat-num {
                font-size: 26px;
            }
            .faq-grid-mini {
                grid-template-columns: 1fr;
            }
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .teams-grid {
                grid-template-columns: 1fr;
            }
            .content-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
                flex-direction: column;
            }
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            .hero-inner {
                flex-direction: column;
                gap: 24px;
            }
            .hero-text h1 {
                font-size: 24px;
            }
            .hero-stats-mini {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }
            .hero-stat-item {
                min-width: 70px;
                padding: 10px 12px;
            }
            .hero-stat-item .stat-num {
                font-size: 22px;
            }
            .hero-search-wrap {
                flex-direction: column;
            }
            .hero-search-wrap .btn-search {
                width: 100%;
                text-align: center;
            }
            .toolbar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .toolbar-actions {
                width: 100%;
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            .sort-btn {
                font-size: 12px;
                padding: 7px 12px;
            }
            .team-card .team-rank-badge {
                font-size: 18px;
                top: 12px;
                right: 12px;
            }
            .faq-grid-mini {
                grid-template-columns: 1fr;
            }
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .nav-channel-row {
                overflow-x: auto;
            }
            .nav-channel-list {
                padding: 0 12px;
                gap: 0;
            }
            .nav-channel-list a {
                padding: 10px 12px;
                font-size: 13px;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .brand-actions .icon-btn {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .hero-section {
                padding: 40px 0 28px;
            }
            .hero-text h1 {
                font-size: 21px;
            }
            .hero-subtitle {
                font-size: 13px;
            }
            .hero-stat-item .stat-num {
                font-size: 20px;
            }
            .metrics-grid {
                grid-template-columns: 1fr;
            }
            .team-card {
                padding: 14px;
            }
            .team-card .team-name {
                font-size: 14px;
            }
            .team-card .team-rank-badge {
                font-size: 16px;
                top: 10px;
                right: 10px;
            }
            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-col h4 {
                font-size: 12px;
            }
            .footer-col a {
                font-size: 11px;
            }
            .sidebar-card {
                padding: 14px;
            }
            .btn-cta-primary {
                padding: 11px 24px;
                font-size: 13px;
            }
        }

        /* 脉冲动画（进行中状态） */
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.6);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 95, 31, 0);
            }
        }
        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.8s infinite;
            margin-right: 4px;
            vertical-align: middle;
        }

        /* 无结果状态 */
        .no-results {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted);
            font-size: 14px;
            grid-column: 1 / -1;
        }
        .no-results i {
            font-size: 36px;
            display: block;
            margin-bottom: 10px;
            color: var(--steel-gray);
        }

/* roulang page: category1 */
:root {
            --bg-primary: #141418;
            --bg-card: #1A1A1F;
            --bg-card-hover: #1E1E24;
            --bg-nav: #141418;
            --bg-channel: rgba(26, 26, 31, 0.95);
            --text-primary: #EAECEF;
            --text-secondary: #9DA3AE;
            --text-muted: #5E646E;
            --accent-orange: #FF5F1F;
            --accent-orange-hover: #E54E0F;
            --accent-cyan: #00E5FF;
            --accent-cyan-bg: rgba(0, 229, 255, 0.08);
            --accent-orange-bg: rgba(255, 95, 31, 0.12);
            --accent-green: #27AE60;
            --accent-red: #C0392B;
            --border-color: rgba(138, 143, 152, 0.15);
            --border-light: rgba(138, 143, 152, 0.08);
            --steel-gray: #8A8F98;
            --steel-light: #B0B5BE;
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 8px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-card-hover: 0 4px 20px rgba(0, 229, 255, 0.08);
            --shadow-btn-orange: 0 0 12px rgba(255, 95, 31, 0.35);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
            --container-max: 1320px;
            --section-gap-lg: 72px;
            --section-gap-md: 48px;
            --section-gap-sm: 32px;
            --nav-brand-height: 56px;
            --nav-channel-height: 44px;
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
        }

        *,
        *::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-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        button,
        input,
        select {
            font-family: inherit;
            font-size: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        input:focus,
        select:focus,
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-nav);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-brand-height);
            padding: 0 24px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-logo .logo-highlight {
            color: var(--accent-orange);
        }

        .nav-logo .logo-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-cyan);
            margin-left: 2px;
            animation: logoPulse 2s infinite;
        }

        @keyframes logoPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .nav-brand-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-search-btn {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--steel-gray);
            transition: all var(--transition-fast);
            font-size: 16px;
        }

        .nav-search-btn:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-bg);
        }

        .nav-user-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--steel-gray);
            font-size: 15px;
            transition: border-color var(--transition-fast);
        }

        .nav-user-avatar:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .nav-channel-row {
            background: var(--bg-channel);
            border-top: 1px solid var(--border-light);
            height: var(--nav-channel-height);
            display: flex;
            align-items: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            position: relative;
        }

        .nav-channel-row::-webkit-scrollbar {
            display: none;
        }

        .nav-channel-list {
            display: flex;
            list-style: none;
            gap: 0;
            padding: 0 24px;
            max-width: var(--container-max);
            margin: 0 auto;
            width: 100%;
            height: 100%;
            align-items: center;
            flex-shrink: 0;
        }

        .nav-channel-list li {
            flex-shrink: 0;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-channel-list a {
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--steel-gray);
            position: relative;
            transition: color var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-channel-list a:hover {
            color: var(--accent-cyan);
        }

        .nav-channel-list a.active {
            color: var(--text-primary);
        }

        .nav-channel-list a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 1px 1px 0 0;
        }

        .mobile-menu-toggle {
            display: none;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            color: var(--steel-gray);
            font-size: 20px;
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-bg);
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            background: var(--bg-primary);
            background-image:
                radial-gradient(ellipse at 70% 30%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(255, 95, 31, 0.03) 0%, transparent 55%);
            padding: 48px 0 40px;
            border-bottom: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(138, 143, 152, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(138, 143, 152, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            opacity: 0.5;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .page-hero-content {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            flex-wrap: wrap;
        }

        .page-hero-text {
            flex: 1;
            min-width: 280px;
        }

        .page-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent-orange-bg);
            color: var(--accent-orange);
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 3px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .page-hero-badge .pulse-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulseDot 1.4s infinite;
        }

        @keyframes pulseDot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 95, 31, 0);
            }
        }

        .page-hero h1 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .page-hero h1 .highlight {
            color: var(--accent-cyan);
        }

        .page-hero-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 560px;
            margin-bottom: 0;
        }

        .page-hero-stats {
            display: flex;
            gap: 28px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }

        .hero-stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            text-align: center;
            min-width: 110px;
            transition: all var(--transition-base);
        }

        .hero-stat-card:hover {
            border-color: rgba(0, 229, 255, 0.3);
            box-shadow: var(--shadow-card-hover);
        }

        .hero-stat-value {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
            margin-bottom: 6px;
        }

        .hero-stat-value.orange {
            color: var(--accent-orange);
        }

        .hero-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.4px;
        }

        /* ========== FILTER BAR ========== */
        .filter-section {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
            padding: 16px 0;
            position: sticky;
            top: calc(var(--nav-brand-height) + var(--nav-channel-height));
            z-index: 99;
        }

        .filter-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 7px 10px;
            transition: border-color var(--transition-fast);
        }

        .filter-group:focus-within {
            border-color: var(--accent-cyan);
        }

        .filter-group i {
            color: var(--steel-gray);
            font-size: 13px;
        }

        .filter-group select,
        .filter-group input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 13px;
            font-weight: 500;
            outline: none;
            min-width: 100px;
            cursor: pointer;
        }

        .filter-group select option {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .filter-group input {
            min-width: 140px;
        }

        .filter-group input::placeholder {
            color: var(--text-muted);
        }

        .filter-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-left: auto;
        }

        .filter-tag {
            font-size: 12px;
            font-weight: 600;
            padding: 7px 14px;
            border-radius: var(--radius-sm);
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            color: var(--steel-gray);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .filter-tag:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .filter-tag.active {
            background: var(--accent-orange-bg);
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .filter-btn-reset {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            cursor: pointer;
            padding: 7px 12px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .filter-btn-reset:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-bg);
        }

        /* ========== MAIN CONTENT LAYOUT ========== */
        .main-content-area {
            padding: var(--section-gap-md) 0 var(--section-gap-lg);
        }

        .content-layout {
            display: flex;
            gap: 28px;
            align-items: flex-start;
        }

        .content-primary {
            flex: 1;
            min-width: 0;
        }

        .content-sidebar {
            width: 340px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: calc(var(--nav-brand-height) + var(--nav-channel-height) + 60px);
        }

        /* ========== MATCH REPORT CARDS ========== */
        .match-reports-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .match-report-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-left: 3px solid transparent;
        }

        .match-report-card:hover {
            background: var(--bg-card-hover);
            border-color: rgba(0, 229, 255, 0.2);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-1px);
        }

        .match-report-card.status-live {
            border-left-color: var(--accent-orange);
        }

        .match-report-card.status-finished {
            border-left-color: var(--border-color);
        }

        .match-report-card.status-upcoming {
            border-left-color: var(--accent-cyan);
        }

        .match-report-card.status-live:hover {
            border-left-color: var(--accent-orange);
            box-shadow: 0 4px 20px rgba(255, 95, 31, 0.08);
        }

        .match-card-thumb {
            width: 72px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: var(--bg-primary);
            flex-shrink: 0;
            overflow: hidden;
            border: 1px solid var(--border-light);
            position: relative;
        }

        .match-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.75;
        }

        .match-card-thumb .thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(20, 20, 24, 0.55);
        }

        .match-card-info {
            flex: 1;
            min-width: 0;
        }

        .match-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }

        .match-card-tournament {
            font-size: 11px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: 0.6px;
            text-transform: uppercase;
        }

        .match-card-time {
            font-size: 11px;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        .match-card-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }

        .match-card-teams .vs-text {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            flex-shrink: 0;
        }

        .match-card-score {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-cyan);
            flex-shrink: 0;
            letter-spacing: 2px;
        }

        .match-card-score.finished {
            color: var(--steel-gray);
        }

        .match-card-score.live {
            color: var(--accent-orange);
            animation: scoreGlow 1.6s infinite;
        }

        @keyframes scoreGlow {
            0%,
            100% {
                text-shadow: 0 0 8px rgba(255, 95, 31, 0.4);
            }
            50% {
                text-shadow: 0 0 18px rgba(255, 95, 31, 0.7);
            }
        }

        .match-card-map {
            font-size: 12px;
            color: var(--steel-gray);
            font-weight: 500;
        }

        .match-card-details {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 4px;
            flex-wrap: wrap;
        }

        .match-card-rounds {
            font-size: 11px;
            color: var(--text-muted);
            font-family: var(--font-mono);
            background: var(--bg-primary);
            padding: 3px 8px;
            border-radius: 3px;
        }

        .match-card-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .status-badge {
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-transform: uppercase;
        }

        .status-badge.live {
            background: var(--accent-orange-bg);
            color: var(--accent-orange);
        }

        .status-badge.finished {
            background: rgba(138, 143, 152, 0.1);
            color: var(--steel-gray);
        }

        .status-badge.upcoming {
            background: var(--accent-cyan-bg);
            color: var(--accent-cyan);
        }

        .btn-report-detail {
            font-size: 12px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .btn-report-detail:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: var(--accent-cyan-bg);
        }

        .btn-report-detail.primary {
            background: var(--accent-orange);
            border-color: var(--accent-orange);
            color: #fff;
        }

        .btn-report-detail.primary:hover {
            background: var(--accent-orange-hover);
            border-color: var(--accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
            color: #fff;
        }

        .match-heat-badge {
            font-size: 10px;
            font-weight: 700;
            color: var(--accent-orange);
            background: var(--accent-orange-bg);
            padding: 3px 8px;
            border-radius: 3px;
            letter-spacing: 0.4px;
        }

        /* ========== SIDEBAR ========== */
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px;
        }

        .sidebar-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h3 i {
            color: var(--accent-orange);
            font-size: 14px;
        }

        .sidebar-hot-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .sidebar-hot-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            background: var(--bg-primary);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .sidebar-hot-item:hover {
            border-color: var(--border-color);
            background: var(--bg-card-hover);
        }

        .sidebar-hot-rank {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 800;
            color: var(--accent-orange);
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-hot-rank.top3 {
            color: var(--accent-cyan);
        }

        .sidebar-hot-info {
            flex: 1;
            min-width: 0;
        }

        .sidebar-hot-teams {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sidebar-hot-meta {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .sidebar-hot-heat {
            font-size: 11px;
            font-weight: 600;
            color: var(--accent-orange);
            flex-shrink: 0;
        }

        .sidebar-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .sidebar-stat-item {
            background: var(--bg-primary);
            border-radius: var(--radius-sm);
            padding: 14px 12px;
            text-align: center;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }

        .sidebar-stat-item:hover {
            border-color: var(--border-color);
        }

        .sidebar-stat-value {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
            margin-bottom: 4px;
        }

        .sidebar-stat-label {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ========== FEATURED MATCH SECTION ========== */
        .featured-match-section {
            padding: var(--section-gap-md) 0;
            border-top: 1px solid var(--border-light);
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            letter-spacing: 0.4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            color: var(--accent-orange);
        }

        .featured-match-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 28px;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .featured-match-card:hover {
            border-color: rgba(0, 229, 255, 0.25);
            box-shadow: var(--shadow-card-hover);
        }

        .featured-match-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 95, 31, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .featured-match-cover {
            width: 160px;
            height: 100px;
            border-radius: var(--radius-md);
            background: var(--bg-primary);
            flex-shrink: 0;
            overflow: hidden;
            border: 1px solid var(--border-light);
            position: relative;
        }

        .featured-match-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .featured-match-cover .live-corner {
            position: absolute;
            top: 8px;
            left: 8px;
            background: var(--accent-red);
            color: #fff;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 2px;
            letter-spacing: 0.8px;
            animation: pulseDot 1.4s infinite;
        }

        .featured-match-info {
            flex: 1;
            min-width: 0;
        }

        .featured-match-tournament {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: 0.6px;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .featured-match-teams {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.4px;
            margin-bottom: 4px;
        }

        .featured-match-score-big {
            font-family: var(--font-mono);
            font-size: 40px;
            font-weight: 800;
            color: var(--accent-orange);
            letter-spacing: 3px;
            line-height: 1;
            animation: scoreGlow 1.6s infinite;
        }

        .featured-match-meta-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 6px;
        }

        .featured-match-meta-item {
            font-size: 12px;
            color: var(--steel-gray);
            font-family: var(--font-mono);
        }

        .featured-match-cta {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .btn-featured-cta {
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            background: var(--accent-orange);
            color: #fff;
            letter-spacing: 0.4px;
            transition: all var(--transition-base);
            white-space: nowrap;
        }

        .btn-featured-cta:hover {
            background: var(--accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
            transform: translateY(-1px);
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            padding: var(--section-gap-lg) 0;
            border-top: 1px solid var(--border-light);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: rgba(0, 229, 255, 0.18);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: color var(--transition-fast);
            text-align: left;
            gap: 12px;
        }

        .faq-question:hover {
            color: var(--accent-cyan);
        }

        .faq-icon {
            font-size: 16px;
            color: var(--steel-gray);
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.open .faq-icon {
            color: var(--accent-cyan);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: var(--section-gap-md) 0;
            text-align: center;
            border-top: 1px solid var(--border-light);
        }

        .cta-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-card h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .cta-card p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-cta-primary {
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            background: var(--accent-orange);
            color: #fff;
            letter-spacing: 0.4px;
            transition: all var(--transition-base);
        }

        .btn-cta-primary:hover {
            background: var(--accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
            transform: translateY(-1px);
        }

        .btn-cta-secondary {
            font-size: 14px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: 1px solid var(--steel-gray);
            color: var(--text-primary);
            letter-spacing: 0.4px;
            transition: all var(--transition-base);
        }

        .btn-cta-secondary:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: var(--accent-cyan-bg);
        }

        /* ========== PAGINATION ========== */
        .pagination-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 28px 0 0;
        }

        .pagination-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--steel-gray);
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .pagination-btn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        .pagination-btn.active {
            background: var(--accent-orange);
            border-color: var(--accent-orange);
            color: #fff;
            font-weight: 700;
        }

        .pagination-btn.disabled {
            opacity: 0.35;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            padding: 48px 0 28px;
            margin-top: auto;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px 32px;
            border-bottom: 1px solid var(--border-light);
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--accent-cyan);
        }

        .footer-bottom {
            text-align: center;
            padding: 24px 24px 0;
            max-width: var(--container-max);
            margin: 0 auto;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .footer-bottom p {
            margin-bottom: 4px;
        }

        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199px) {
            .content-sidebar {
                width: 280px;
            }
            .featured-match-card {
                flex-wrap: wrap;
                gap: 20px;
            }
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .faq-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 1023px) {
            .content-layout {
                flex-direction: column;
            }
            .content-sidebar {
                width: 100%;
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 16px;
            }
            .content-sidebar>* {
                flex: 1;
                min-width: 240px;
            }
            .page-hero-content {
                flex-direction: column;
                gap: 20px;
            }
            .page-hero-stats {
                flex-wrap: wrap;
                gap: 12px;
            }
            .hero-stat-card {
                min-width: 90px;
                padding: 14px 16px;
            }
            .hero-stat-value {
                font-size: 26px;
            }
            .match-report-card {
                flex-wrap: wrap;
                gap: 12px;
                padding: 14px 16px;
            }
            .match-card-score {
                font-size: 18px;
            }
            .match-card-teams {
                font-size: 14px;
            }
            .match-card-actions {
                width: 100%;
                justify-content: flex-end;
            }
            .filter-bar {
                gap: 8px;
            }
            .filter-tags {
                margin-left: 0;
                width: 100%;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            .featured-match-card {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
            .featured-match-cover {
                width: 100%;
                height: 140px;
            }
            .featured-match-score-big {
                font-size: 32px;
            }
        }

        @media (max-width: 767px) {
            .nav-brand-row {
                padding: 0 16px;
            }
            .nav-logo {
                font-size: 17px;
            }
            .nav-channel-list {
                padding: 0 12px;
                gap: 0;
            }
            .nav-channel-list a {
                padding: 0 12px;
                font-size: 12px;
            }
            .page-hero {
                padding: 32px 0 28px;
            }
            .page-hero h1 {
                font-size: 22px;
            }
            .page-hero-desc {
                font-size: 14px;
            }
            .page-hero-stats {
                gap: 8px;
            }
            .hero-stat-card {
                min-width: 75px;
                padding: 12px 10px;
            }
            .hero-stat-value {
                font-size: 22px;
            }
            .hero-stat-label {
                font-size: 10px;
            }
            .filter-section {
                padding: 10px 0;
            }
            .filter-bar {
                gap: 6px;
            }
            .filter-group {
                padding: 6px 8px;
            }
            .filter-group select,
            .filter-group input {
                font-size: 11px;
                min-width: 70px;
            }
            .filter-tag {
                font-size: 10px;
                padding: 5px 10px;
            }
            .match-report-card {
                padding: 12px 14px;
                gap: 8px;
            }
            .match-card-thumb {
                width: 50px;
                height: 34px;
            }
            .match-card-teams {
                font-size: 13px;
                gap: 6px;
            }
            .match-card-score {
                font-size: 16px;
                letter-spacing: 1px;
            }
            .btn-report-detail {
                font-size: 10px;
                padding: 6px 10px;
            }
            .status-badge {
                font-size: 10px;
                padding: 4px 8px;
            }
            .content-sidebar {
                flex-direction: column;
            }
            .content-sidebar>* {
                min-width: 100%;
            }
            .featured-match-card {
                padding: 16px;
            }
            .featured-match-teams {
                font-size: 16px;
            }
            .featured-match-score-big {
                font-size: 28px;
            }
            .btn-featured-cta {
                font-size: 12px;
                padding: 10px 20px;
            }
            .section-title {
                font-size: 17px;
            }
            .cta-card {
                padding: 28px 16px;
            }
            .cta-card h2 {
                font-size: 20px;
            }
            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                padding: 0 16px 24px;
            }
            .footer-col h4 {
                font-size: 13px;
            }
            .footer-col a {
                font-size: 11px;
            }
            .footer-bottom {
                font-size: 10px;
                padding: 18px 12px 0;
            }
            .pagination-btn {
                width: 32px;
                height: 32px;
                font-size: 11px;
            }
            .container {
                padding: 0 16px;
            }
            .nav-channel-list a {
                padding: 0 10px;
                font-size: 11px;
            }
            .nav-channel-list a.active::after {
                left: 10px;
                right: 10px;
            }
        }

        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 19px;
            }
            .match-card-teams {
                font-size: 12px;
            }
            .match-card-score {
                font-size: 15px;
            }
            .btn-report-detail {
                font-size: 10px;
                padding: 5px 8px;
            }
            .filter-tags {
                gap: 4px;
            }
            .filter-tag {
                font-size: 10px;
                padding: 4px 8px;
            }
            .footer-links-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .featured-match-cover {
                height: 100px;
            }
            .featured-match-score-big {
                font-size: 24px;
            }
            .hero-stat-value {
                font-size: 20px;
            }
            .hero-stat-card {
                min-width: 65px;
                padding: 10px 8px;
            }
        }

/* roulang page: category4 */
:root {
            --carbon: #141418;
            --deep-grey: #1A1A1F;
            --steel: #8A8F98;
            --light-steel: #B0B5BE;
            --tactical-orange: #FF5F1F;
            --data-cyan: #00E5FF;
            --dark-red: #C0392B;
            --dark-green: #27AE60;
            --text-primary: #EAECEF;
            --text-secondary: #9DA3AE;
            --text-weak: #5E646E;
            --border-subtle: rgba(138, 143, 152, 0.15);
            --border-medium: rgba(138, 143, 152, 0.3);
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-hover: 0 4px 16px rgba(0, 229, 255, 0.08);
            --shadow-orange-glow: 0 0 12px rgba(255, 95, 31, 0.4);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            background-color: var(--carbon);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all 0.2s ease;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--data-cyan);
            outline-offset: 2px;
            border-radius: 2px;
        }

        input {
            font-family: inherit;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航 - 品牌行 */
        .nav-brand-row {
            background: var(--carbon);
            height: 56px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-brand-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-logo {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-logo .logo-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--tactical-orange);
            border-radius: 2px;
            transform: rotate(45deg);
            flex-shrink: 0;
        }
        .nav-logo .logo-accent {
            color: var(--tactical-orange);
        }
        .nav-brand-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-search-icon {
            width: 20px;
            height: 20px;
            color: var(--steel);
            cursor: pointer;
            transition: color 0.2s;
        }
        .nav-search-icon:hover {
            color: var(--data-cyan);
        }
        .nav-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--deep-grey);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--steel);
            font-size: 14px;
            cursor: pointer;
            transition: border-color 0.2s;
        }
        .nav-user-avatar:hover {
            border-color: var(--data-cyan);
        }

        /* 频道标签行 */
        .nav-channel-row {
            background: rgba(26, 26, 31, 0.95);
            height: 44px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
            position: sticky;
            top: 56px;
            z-index: 99;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .nav-channel-row::-webkit-scrollbar {
            height: 0;
        }
        .nav-channel-list {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0 20px;
            gap: 0;
            max-width: 1320px;
            width: 100%;
            margin: 0 auto;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-channel-list li {
            flex-shrink: 0;
        }
        .nav-channel-list li a {
            display: block;
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
            letter-spacing: 0.3px;
        }
        .nav-channel-list li a:hover {
            color: var(--data-cyan);
        }
        .nav-channel-list li a.active {
            color: var(--text-primary);
            border-bottom-color: var(--tactical-orange);
        }

        /* 移动端汉堡菜单 */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 22px;
            cursor: pointer;
            padding: 4px;
        }

        /* Hero Banner */
        .page-hero {
            background:
                linear-gradient(180deg, rgba(20, 20, 24, 0.7) 0%, rgba(20, 20, 24, 0.92) 70%, var(--carbon) 100%),
                url('/assets/images/backpic/back-2.webp') center center / cover no-repeat;
            padding: 64px 0 48px;
            position: relative;
            border-bottom: 1px solid var(--border-subtle);
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(138, 143, 152, 0.015) 40px, rgba(138, 143, 152, 0.015) 41px),
                repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(138, 143, 152, 0.015) 40px, rgba(138, 143, 152, 0.015) 41px);
            pointer-events: none;
            z-index: 0;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .page-hero-badge {
            display: inline-block;
            background: rgba(0, 229, 255, 0.1);
            color: var(--data-cyan);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        .page-hero h1 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: 0.5px;
            line-height: 1.25;
        }
        .page-hero .hero-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin: 0 0 20px;
            max-width: 600px;
        }
        .page-hero .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .page-hero .hero-tags span {
            background: rgba(138, 143, 152, 0.1);
            color: var(--light-steel);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 4px;
            border: 1px solid var(--border-subtle);
            font-weight: 500;
        }
        .hero-cta-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* 按钮体系 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: var(--tactical-orange);
            color: #FFFFFF;
            border-radius: 4px;
            padding: 12px 28px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: #E54E0F;
            box-shadow: var(--shadow-orange-glow);
            transform: translateY(-1px);
            color: #FFFFFF;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--steel);
            border-radius: 4px;
            padding: 11px 26px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.25s ease;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-secondary:hover {
            border-color: var(--data-cyan);
            color: var(--data-cyan);
        }
        .btn-sm {
            padding: 7px 16px;
            font-size: 12px;
            font-weight: 600;
        }
        .btn-outline-cyan {
            background: rgba(0, 229, 255, 0.06);
            color: var(--data-cyan);
            border: 1px solid rgba(0, 229, 255, 0.25);
            border-radius: 4px;
            padding: 7px 16px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .btn-outline-cyan:hover {
            background: rgba(0, 229, 255, 0.15);
            border-color: var(--data-cyan);
        }

        /* 板块间距 */
        .section {
            padding: 56px 0;
        }
        .section-sm {
            padding: 36px 0;
        }
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 8px;
            letter-spacing: 0.4px;
        }
        .section-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0 0 28px;
        }

        /* 卡片 */
        .card {
            background: var(--deep-grey);
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 229, 255, 0.2);
        }
        .card-padded {
            padding: 20px;
        }

        /* 状态标签 */
        .tag-live {
            background: rgba(255, 95, 31, 0.15);
            color: var(--tactical-orange);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 3px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.4px;
        }
        .tag-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--tactical-orange);
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 95, 31, 0);
            }
        }
        .tag-upcoming {
            background: rgba(0, 229, 255, 0.08);
            color: var(--data-cyan);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 3px;
            letter-spacing: 0.4px;
        }
        .tag-ended {
            background: rgba(138, 143, 152, 0.1);
            color: var(--steel);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 3px;
            letter-spacing: 0.4px;
        }
        .tag-tournament {
            background: rgba(138, 143, 152, 0.08);
            color: var(--light-steel);
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 3px;
            border: 1px solid var(--border-subtle);
            letter-spacing: 0.3px;
        }

        /* 视图切换 */
        .view-toggle {
            display: inline-flex;
            background: var(--deep-grey);
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            overflow: hidden;
        }
        .view-toggle button {
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 600;
            background: transparent;
            color: var(--text-secondary);
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }
        .view-toggle button.active-view {
            background: var(--tactical-orange);
            color: #FFFFFF;
        }
        .view-toggle button:hover:not(.active-view) {
            color: var(--data-cyan);
            background: rgba(0, 229, 255, 0.05);
        }

        /* 赛程表格 */
        .schedule-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
            font-size: 13px;
        }
        .schedule-table thead th {
            background: rgba(26, 26, 31, 0.95);
            color: var(--text-secondary);
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 2px solid var(--border-medium);
            white-space: nowrap;
        }
        .schedule-table tbody td {
            padding: 14px 12px;
            border-bottom: 1px solid var(--border-subtle);
            vertical-align: middle;
            white-space: nowrap;
        }
        .schedule-table tbody tr {
            transition: background 0.2s;
        }
        .schedule-table tbody tr:hover {
            background: rgba(0, 229, 255, 0.03);
        }
        .schedule-table .team-cell {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 13px;
        }
        .schedule-table .vs-cell {
            color: var(--text-weak);
            font-weight: 600;
            text-align: center;
            font-size: 12px;
        }
        .schedule-table .time-cell {
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            color: var(--data-cyan);
            font-weight: 600;
            font-size: 13px;
        }
        .schedule-table .map-cell {
            color: var(--light-steel);
            font-size: 12px;
            max-width: 140px;
            white-space: normal;
            line-height: 1.5;
        }

        /* 日历视图 */
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            background: var(--border-subtle);
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            overflow: hidden;
        }
        .calendar-grid .cal-header {
            background: var(--deep-grey);
            text-align: center;
            padding: 10px 4px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .calendar-grid .cal-day {
            background: var(--carbon);
            min-height: 70px;
            padding: 6px;
            text-align: center;
            cursor: pointer;
            transition: background 0.2s;
            position: relative;
        }
        .calendar-grid .cal-day:hover {
            background: rgba(0, 229, 255, 0.05);
        }
        .calendar-grid .cal-day .day-num {
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .calendar-grid .cal-day.has-event {
            border: 1px solid rgba(255, 95, 31, 0.4);
        }
        .calendar-grid .cal-day.has-event .day-num {
            color: var(--tactical-orange);
        }
        .calendar-grid .cal-day .event-dot {
            display: block;
            width: 6px;
            height: 6px;
            background: var(--tactical-orange);
            border-radius: 50%;
            margin: 4px auto 0;
        }
        .calendar-grid .cal-day.empty {
            background: rgba(26, 26, 31, 0.4);
            cursor: default;
        }
        .calendar-grid .cal-day.today {
            border: 2px solid var(--data-cyan);
        }

        /* 侧边栏 */
        .sidebar-card {
            background: var(--deep-grey);
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-card);
        }
        .sidebar-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-subtle);
            letter-spacing: 0.4px;
        }
        .countdown-number {
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            font-size: 36px;
            font-weight: 800;
            color: var(--data-cyan);
            letter-spacing: 2px;
        }
        .countdown-unit {
            font-size: 11px;
            color: var(--text-weak);
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .filter-check-label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            cursor: pointer;
            font-size: 13px;
            color: var(--text-secondary);
            transition: color 0.2s;
        }
        .filter-check-label:hover {
            color: var(--text-primary);
        }
        .filter-check-label input[type="checkbox"] {
            accent-color: var(--tactical-orange);
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        /* FAQ 手风琴 */
        .faq-item {
            background: var(--deep-grey);
            border: 1px solid var(--border-subtle);
            border-radius: 4px;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all 0.2s;
        }
        .faq-question {
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            letter-spacing: 0.3px;
            transition: color 0.2s;
        }
        .faq-question:hover {
            color: var(--data-cyan);
        }
        .faq-icon {
            font-size: 18px;
            font-weight: 700;
            color: var(--data-cyan);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 12px;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 16px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }

        /* 页脚 */
        .site-footer {
            background: var(--deep-grey);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 32px;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px 32px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--data-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 20px 0;
            font-size: 12px;
            color: var(--text-weak);
            max-width: 1320px;
            margin: 0 auto;
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: var(--data-cyan);
        }

        /* 响应式 */
        @media (max-width: 1199px) {
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .page-hero h1 {
                font-size: 26px;
            }
            .calendar-grid .cal-day {
                min-height: 50px;
                padding: 4px;
            }
            .calendar-grid .cal-day .day-num {
                font-size: 12px;
            }
            .schedule-table {
                min-width: 750px;
                font-size: 12px;
            }
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 10px 8px;
            }
        }
        @media (max-width: 767px) {
            .nav-channel-row {
                top: 56px;
            }
            .nav-channel-list li a {
                padding: 10px 12px;
                font-size: 12px;
            }
            .nav-brand-actions {
                gap: 8px;
            }
            .mobile-menu-toggle {
                display: block;
                font-size: 20px;
            }
            .page-hero {
                padding: 40px 0 32px;
            }
            .page-hero h1 {
                font-size: 22px;
            }
            .page-hero .hero-subtitle {
                font-size: 14px;
            }
            .section {
                padding: 36px 0;
            }
            .section-title {
                font-size: 18px;
            }
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .calendar-grid .cal-day {
                min-height: 38px;
                padding: 2px;
            }
            .calendar-grid .cal-day .day-num {
                font-size: 11px;
            }
            .calendar-grid .cal-header {
                font-size: 10px;
                padding: 6px 2px;
            }
            .schedule-table {
                min-width: 600px;
                font-size: 11px;
            }
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 8px 6px;
            }
            .view-toggle button {
                padding: 8px 14px;
                font-size: 12px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 10px 18px;
                font-size: 13px;
            }
            .countdown-number {
                font-size: 26px;
            }
        }
        @media (max-width: 520px) {
            .nav-logo {
                font-size: 16px;
            }
            .nav-channel-list li a {
                padding: 8px 10px;
                font-size: 11px;
            }
            .footer-links-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .hero-cta-row {
                flex-direction: column;
            }
            .hero-cta-row .btn-primary,
            .hero-cta-row .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .calendar-grid .cal-day {
                min-height: 30px;
            }
            .calendar-grid .cal-day .day-num {
                font-size: 10px;
            }
            .calendar-grid .cal-day .event-dot {
                width: 4px;
                height: 4px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #141418;
            --bg-card: #1A1A1F;
            --bg-card-hover: #1E1E24;
            --bg-surface: #1C1C21;
            --bg-nav-row: rgba(26, 26, 31, 0.95);
            --text-primary: #EAECEF;
            --text-secondary: #9DA3AE;
            --text-muted: #5E646E;
            --text-weak: #6B7280;
            --accent-orange: #FF5F1F;
            --accent-orange-hover: #E54E0F;
            --accent-cyan: #00E5FF;
            --accent-cyan-dim: rgba(0, 229, 255, 0.08);
            --accent-cyan-glow: rgba(0, 229, 255, 0.15);
            --steel-gray: #8A8F98;
            --steel-border: rgba(138, 143, 152, 0.15);
            --steel-border-light: rgba(138, 143, 152, 0.22);
            --green-win: #27AE60;
            --red-loss: #C0392B;
            --green-bg: rgba(39, 174, 96, 0.1);
            --red-bg: rgba(192, 57, 43, 0.1);
            --orange-bg: rgba(255, 95, 31, 0.12);
            --orange-pulse: rgba(255, 95, 31, 0.25);
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 8px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-card-hover: 0 4px 16px rgba(0, 229, 255, 0.07);
            --shadow-orange-glow: 0 0 12px rgba(255, 95, 31, 0.35);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Menlo', monospace;
            --container-max: 1320px;
            --section-gap-lg: 80px;
            --section-gap-md: 48px;
            --section-gap-sm: 32px;
            --transition-fast: 0.18s ease;
            --transition-med: 0.25s ease;
            --nav-brand-height: 56px;
            --nav-channel-height: 44px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        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;
            transition: all var(--transition-fast);
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
            border-radius: 2px;
        }

        input,
        select {
            font-family: inherit;
            font-size: 14px;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER & NAVIGATION ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--steel-border);
        }
        .nav-brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-brand-height);
            padding: 0 24px;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        .nav-logo {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .nav-logo .logo-accent {
            color: var(--accent-orange);
            font-weight: 900;
        }
        .nav-logo .logo-divider {
            color: var(--steel-gray);
            font-weight: 400;
            margin: 0 2px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-icon-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: color var(--transition-fast), background var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
        }
        .nav-icon-btn:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }
        .nav-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--steel-border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
            transition: border-color var(--transition-fast);
        }
        .nav-user-avatar:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .nav-channel-row {
            background: var(--bg-nav-row);
            border-top: 1px solid var(--steel-border);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-channel-row::-webkit-scrollbar {
            display: none;
        }
        .nav-channel-list {
            display: flex;
            list-style: none;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            height: var(--nav-channel-height);
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            min-width: max-content;
        }
        .nav-channel-list li a {
            display: inline-flex;
            align-items: center;
            height: 36px;
            padding: 0 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition-fast), background var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .nav-channel-list li a:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }
        .nav-channel-list li a.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.03);
        }
        .nav-channel-list li a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 1px;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 22px;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
        }
        .mobile-menu-toggle:hover {
            color: var(--accent-cyan);
        }

        /* ===== HERO BANNER ===== */
        .page-hero {
            position: relative;
            background: var(--bg-primary);
            background-image:
                radial-gradient(ellipse at 30% 20%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 95, 31, 0.05) 0%, transparent 55%),
                url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 64px 0 56px;
            border-bottom: 1px solid var(--steel-border);
            min-height: 300px;
            display: flex;
            align-items: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(138, 143, 152, 0.015) 3px, rgba(138, 143, 152, 0.015) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(138, 143, 152, 0.012) 3px, rgba(138, 143, 152, 0.012) 4px);
            pointer-events: none;
            z-index: 0;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .hero-inner {
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1 1 400px;
            min-width: 0;
        }
        .hero-badge {
            display: inline-block;
            background: var(--orange-bg);
            color: var(--accent-orange);
            font-size: 12px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 3px;
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .hero-text h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }
        .hero-text .hero-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 520px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .hero-tag {
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
            padding: 4px 10px;
            border-radius: 3px;
            letter-spacing: 0.3px;
        }
        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-orange);
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: var(--accent-orange-hover);
            box-shadow: var(--shadow-orange-glow);
            transform: translateY(-1px);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            padding: 11px 23px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--steel-gray);
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .btn-secondary:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .hero-stats-mini {
            flex: 0 0 280px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 240px;
        }
        .hero-stat-card {
            background: rgba(26, 26, 31, 0.85);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            backdrop-filter: blur(4px);
        }
        .hero-stat-card .stat-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .stat-icon.cyan {
            background: var(--accent-cyan-dim);
            color: var(--accent-cyan);
        }
        .stat-icon.orange {
            background: var(--orange-bg);
            color: var(--accent-orange);
        }
        .hero-stat-card .stat-value {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
        }
        .hero-stat-card .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ===== SECTION ===== */
        .section {
            padding: var(--section-gap-lg) 0;
        }
        .section-sm {
            padding: var(--section-gap-md) 0;
        }
        .section-header {
            margin-bottom: 32px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .section-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.4px;
            position: relative;
            padding-left: 14px;
        }
        .section-header h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--accent-orange);
            border-radius: 2px;
        }
        .section-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-cyan);
            transition: color var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .section-link:hover {
            color: var(--text-primary);
        }
        .divider-fade {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(138, 143, 152, 0.18), transparent);
            margin: var(--section-gap-lg) 0;
            border: none;
        }

        /* ===== DATA INDICATOR CARDS ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: all var(--transition-med);
            position: relative;
            overflow: hidden;
        }
        .stat-card:hover {
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--steel-border-light);
            transform: translateY(-2px);
        }
        .stat-card .stat-icon-sm {
            font-size: 20px;
            margin-bottom: 10px;
            display: block;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        .stat-card .stat-number {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1.1;
            margin-bottom: 2px;
        }
        .stat-card .stat-number.orange {
            color: var(--accent-orange);
        }
        .stat-card .stat-unit {
            font-size: 13px;
            color: var(--steel-gray);
            font-weight: 500;
            margin-bottom: 4px;
        }
        .stat-card .stat-desc {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.2px;
        }
        .stat-card .stat-stripe {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            border-radius: 1px 0 0 1px;
        }
        .stat-stripe.cyan {
            background: var(--accent-cyan);
        }
        .stat-stripe.orange {
            background: var(--accent-orange);
        }
        .stat-stripe.green {
            background: var(--green-win);
        }

        /* ===== FILTER TOOLBAR ===== */
        .filter-toolbar {
            background: var(--bg-card);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .filter-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0.4px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .filter-label i {
            color: var(--accent-cyan);
            font-size: 14px;
        }
        .filter-select {
            background: var(--bg-surface);
            border: 1px solid var(--steel-border-light);
            color: var(--text-primary);
            font-size: 13px;
            font-weight: 500;
            padding: 8px 32px 8px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238A8F98'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            min-width: 140px;
            transition: border-color var(--transition-fast);
        }
        .filter-select:hover,
        .filter-select:focus {
            border-color: var(--accent-cyan);
            outline: none;
        }
        .filter-btn-group {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .filter-chip {
            font-size: 12px;
            font-weight: 600;
            padding: 7px 14px;
            border-radius: 3px;
            background: transparent;
            border: 1px solid var(--steel-border-light);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .filter-chip:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }
        .filter-chip.active {
            background: var(--accent-cyan-dim);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }
        .filter-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-surface);
            border: 1px solid var(--steel-border-light);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            flex: 1 1 180px;
            min-width: 160px;
            transition: border-color var(--transition-fast);
        }
        .filter-search:focus-within {
            border-color: var(--accent-cyan);
        }
        .filter-search input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 13px;
            width: 100%;
            outline: none;
        }
        .filter-search input::placeholder {
            color: var(--text-muted);
        }
        .filter-search i {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* ===== PLAYER TABLE ===== */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            background: var(--bg-card);
        }
        .player-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
            font-size: 14px;
        }
        .player-table thead th {
            background: var(--bg-surface);
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--steel-border);
            cursor: pointer;
            user-select: none;
            white-space: nowrap;
            transition: color var(--transition-fast);
            position: relative;
        }
        .player-table thead th:hover {
            color: var(--accent-cyan);
        }
        .player-table thead th .sort-icon {
            margin-left: 4px;
            font-size: 10px;
            opacity: 0.5;
            display: inline-block;
            transition: opacity var(--transition-fast);
        }
        .player-table thead th.sorted .sort-icon {
            opacity: 1;
            color: var(--accent-cyan);
        }
        .player-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(138, 143, 152, 0.08);
            vertical-align: middle;
            white-space: nowrap;
        }
        .player-table tbody tr {
            transition: background var(--transition-fast);
            cursor: pointer;
        }
        .player-table tbody tr:hover {
            background: rgba(0, 229, 255, 0.03);
        }
        .player-table tbody tr.expanded {
            background: rgba(0, 229, 255, 0.04);
            border-left: 2px solid var(--accent-cyan);
        }
        .player-table .player-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .player-avatar-sm {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 1px solid var(--steel-border-light);
            flex-shrink: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .player-avatar-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .player-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 14px;
        }
        .player-id {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
            font-family: var(--font-mono);
            letter-spacing: 0.3px;
        }
        .team-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            background: var(--bg-surface);
            padding: 3px 10px;
            border-radius: 3px;
            letter-spacing: 0.3px;
        }
        .data-val {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 14px;
        }
        .data-val.high {
            color: var(--accent-orange);
        }
        .data-val.mid {
            color: var(--accent-cyan);
        }
        .data-val.good {
            color: var(--green-win);
        }
        .expand-toggle {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 14px;
            padding: 6px 8px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            font-size: 12px;
        }
        .expand-toggle:hover {
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
        }
        .expand-toggle i {
            transition: transform var(--transition-med);
            font-size: 10px;
        }
        .expand-toggle.expanded i {
            transform: rotate(180deg);
        }
        /* Expanded row detail */
        .detail-row {
            display: none;
        }
        .detail-row.show {
            display: table-row;
        }
        .detail-row td {
            padding: 0 16px 16px;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid var(--steel-border);
        }
        .detail-inner {
            background: var(--bg-surface);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            padding: 16px;
            overflow-x: auto;
        }
        .detail-inner h5 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 10px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .mini-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 12px;
            min-width: 600px;
        }
        .mini-table th {
            background: rgba(0, 0, 0, 0.25);
            color: var(--text-muted);
            font-size: 11px;
            font-weight: 600;
            padding: 8px 10px;
            text-align: left;
            letter-spacing: 0.3px;
            border-bottom: 1px solid var(--steel-border);
        }
        .mini-table td {
            padding: 8px 10px;
            border-bottom: 1px solid rgba(138, 143, 152, 0.06);
            color: var(--text-secondary);
            font-family: var(--font-mono);
            font-size: 12px;
        }

        /* ===== HOT PLAYERS CARDS ===== */
        .scroll-row {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--steel-border-light) transparent;
            padding-bottom: 8px;
        }
        .scroll-row::-webkit-scrollbar {
            height: 4px;
        }
        .scroll-row::-webkit-scrollbar-track {
            background: transparent;
        }
        .scroll-row::-webkit-scrollbar-thumb {
            background: var(--steel-border-light);
            border-radius: 2px;
        }
        .player-card-hot {
            flex: 0 0 200px;
            background: var(--bg-card);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            padding: 18px;
            text-align: center;
            transition: all var(--transition-med);
            position: relative;
            overflow: hidden;
        }
        .player-card-hot:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--steel-border-light);
            transform: translateY(-3px);
        }
        .player-card-hot .rank-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-orange);
            opacity: 0.5;
        }
        .player-card-hot .avatar-lg {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 10px;
            border: 2px solid var(--steel-border-light);
            overflow: hidden;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .player-card-hot .avatar-lg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .player-card-hot .hot-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 3px;
            font-family: var(--font-mono);
        }
        .player-card-hot .hot-team {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .player-card-hot .hot-rating {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-cyan);
        }
        .player-card-hot .hot-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ===== COMMENTS ===== */
        .comments-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .comment-card {
            background: var(--bg-card);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            padding: 18px;
            transition: all var(--transition-fast);
        }
        .comment-card:hover {
            border-color: var(--steel-border-light);
            box-shadow: var(--shadow-card-hover);
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .comment-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 1px solid var(--steel-border-light);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
        }
        .comment-user {
            font-weight: 700;
            font-size: 13px;
            color: var(--text-primary);
        }
        .comment-badge {
            font-size: 10px;
            font-weight: 600;
            color: var(--accent-cyan);
            background: var(--accent-cyan-dim);
            padding: 2px 8px;
            border-radius: 3px;
            letter-spacing: 0.3px;
        }
        .comment-rating {
            margin-left: auto;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-orange);
            display: flex;
            align-items: center;
            gap: 3px;
            white-space: nowrap;
        }
        .comment-rating i {
            font-size: 10px;
        }
        .comment-body {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .comment-time {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--steel-border-light);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            padding: 16px 18px;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-icon {
            font-size: 14px;
            color: var(--accent-cyan);
            flex-shrink: 0;
            transition: transform var(--transition-med);
            font-weight: 700;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 18px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.65;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--bg-card);
            border: 1px solid var(--steel-border);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            position: relative;
        }
        .cta-section p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            position: relative;
        }
        .cta-section .btn-primary {
            position: relative;
            font-size: 15px;
            padding: 14px 30px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--steel-border);
            padding: 48px 0 24px;
            margin-top: auto;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 24px 0;
            border-top: 1px solid var(--steel-border);
            max-width: var(--container-max);
            margin: 0 auto;
            font-size: 12px;
            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(--accent-cyan);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1199px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .comments-grid {
                grid-template-columns: 1fr 1fr;
            }
            .faq-list {
                grid-template-columns: 1fr 1fr;
            }
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-inner {
                gap: 32px;
            }
            .hero-stats-mini {
                flex: 0 0 220px;
                min-width: 200px;
            }
            .page-hero {
                padding: 48px 0 40px;
            }
            .hero-text h1 {
                font-size: 24px;
            }
        }
        @media (max-width: 767px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .comments-grid {
                grid-template-columns: 1fr;
            }
            .faq-list {
                grid-template-columns: 1fr;
            }
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .hero-inner {
                flex-direction: column;
                gap: 24px;
            }
            .hero-stats-mini {
                flex: 1 1 auto;
                width: 100%;
                min-width: auto;
                flex-direction: row;
                flex-wrap: wrap;
            }
            .hero-stat-card {
                flex: 1 1 120px;
                min-width: 130px;
            }
            .page-hero {
                padding: 36px 0 32px;
            }
            .hero-text h1 {
                font-size: 22px;
            }
            .section {
                padding: var(--section-gap-md) 0;
            }
            .section-sm {
                padding: var(--section-gap-sm) 0;
            }
            .filter-toolbar {
                gap: 10px;
                padding: 12px 14px;
            }
            .filter-select {
                min-width: 120px;
                font-size: 12px;
                padding: 7px 28px 7px 10px;
            }
            .player-table {
                min-width: 750px;
                font-size: 12px;
            }
            .player-table thead th,
            .player-table tbody td {
                padding: 10px 10px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h3 {
                font-size: 18px;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-channel-row {
                display: none;
            }
            .nav-channel-row.mobile-open {
                display: block;
                position: absolute;
                top: var(--nav-brand-height);
                left: 0;
                right: 0;
                background: var(--bg-nav-row);
                border-bottom: 1px solid var(--steel-border);
                z-index: 999;
            }
            .nav-channel-row.mobile-open .nav-channel-list {
                flex-wrap: wrap;
                height: auto;
                padding: 10px 16px;
                gap: 4px;
            }
            .nav-channel-row.mobile-open .nav-channel-list li a {
                font-size: 13px;
                padding: 8px 12px;
                height: auto;
            }
            .scroll-row {
                gap: 10px;
            }
            .player-card-hot {
                flex: 0 0 155px;
                padding: 14px;
            }
            .player-card-hot .hot-rating {
                font-size: 18px;
            }
            .hero-stats-mini {
                flex-direction: column;
                gap: 8px;
            }
            .hero-stat-card {
                min-width: auto;
            }
            .divider-fade {
                margin: var(--section-gap-md) 0;
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .stat-card .stat-number {
                font-size: 28px;
            }
            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .filter-toolbar {
                flex-direction: column;
                align-items: stretch;
            }
            .filter-search {
                width: 100%;
            }
            .filter-chip {
                font-size: 11px;
                padding: 5px 10px;
            }
            .hero-text h1 {
                font-size: 20px;
            }
            .comments-grid {
                gap: 10px;
            }
            .comment-card {
                padding: 14px;
            }
            .container {
                padding: 0 14px;
            }
            .nav-brand-row {
                padding: 0 14px;
            }
            .btn-primary,
            .btn-secondary {
                font-size: 13px;
                padding: 10px 18px;
            }
            .page-hero {
                padding: 28px 0 24px;
            }
            .hero-stat-card .stat-value {
                font-size: 20px;
            }
        }

        /* pulse animation for live indicators */
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.5);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 95, 31, 0);
            }
        }
        .pulse-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 2s infinite;
            margin-right: 4px;
        }

/* roulang page: category6 */
:root {
 /* 主色体系 — 战术炭黑 + 警戒橙 + 电光青 */
 --bg-primary: #141418;
 --bg-card: #1A1A1F;
 --border-card: rgba(138,143,152,0.15);
 --text-primary: #EAECEF;
 --text-secondary: #9DA3AE;
 --text-muted: #5E646E;
 --accent-orange: #FF5F1F;
 --accent-cyan: #00E5FF;
 --success-green: #27AE60;
 --danger-red: #C0392B;
 --steel-gray: #8A8F98;
 --light-gray: #B0B5BE;
 --color-white: #FFFFFF;
 --shadow-card: 0 2px 8px rgba(0,0,0,0.4);
 --shadow-hover: 0 4px 16px rgba(0,229,255,0.08);
 --border-radius: 4px;
 --container-max: 1320px;
 --font-stack: 'PingFang SC','Microsoft YaHei','Helvetica Neue',sans-serif;
 --font-mono: 'SF Mono','JetBrains Mono','Consolas',monospace;
 }

 *,
 *::before,
 *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
 }

 body {
 font-family: var(--font-stack);
 background-color: var(--bg-primary);
 color: var(--text-primary);
 line-height: 1.7;
 font-size: 15px;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 }

 a {
 color: var(--text-secondary);
 text-decoration: none;
 transition: color 0.2s, border-color 0.2s;
 }
 a:hover {
 color: var(--accent-cyan);
 }
 img {
 max-width: 100%;
 height: auto;
 display: block;
 }
 button, input {
 font-family: inherit;
 }

 .container {
 max-width: var(--container-max);
 margin-left: auto;
 margin-right: auto;
 padding-left: 20px;
 padding-right: 20px;
 }

 /* 导航层 — 品牌行 */
 .header-brand {
 background: var(--bg-primary);
 height: 56px;
 display: flex;
 align-items: center;
 border-bottom: 1px solid rgba(138,143,152,0.15);
 }
 .header-brand .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 }
 .logo {
 font-size: 20px;
 font-weight: 800;
 color: var(--text-primary);
 display: flex;
 align-items: center;
 gap: 4px;
 }
 .logo span {
 color: var(--accent-orange);
 }
 .header-actions {
 display: flex;
 align-items: center;
 gap: 18px;
 color: var(--text-secondary);
 }
 .header-actions i {
 font-size: 18px;
 cursor: pointer;
 transition: color 0.2s;
 }
 .header-actions i:hover {
 color: var(--accent-cyan);
 }
 .avatar-placeholder {
 width: 32px;
 height: 32px;
 border-radius: 50%;
 background: rgba(138,143,152,0.25);
 }

 /* 频道标签行 */
 .nav-channel-row {
 background: rgba(26,26,31,0.95);
 border-bottom: 1px solid rgba(138,143,152,0.08);
 }
 .nav-channel-list {
 list-style: none;
 display: flex;
 gap: 32px;
 padding: 0;
 margin: 0 auto;
 max-width: var(--container-max);
 height: 44px;
 align-items: center;
 overflow-x: auto;
 white-space: nowrap;
 padding-left: 20px;
 padding-right: 20px;
 }
 .nav-channel-list li a {
 font-size: 14px;
 font-weight: 600;
 color: var(--text-secondary);
 padding-bottom: 2px;
 border-bottom: 2px solid transparent;
 transition: color 0.2s, border-color 0.2s;
 }
 .nav-channel-list li a:hover {
 color: var(--accent-cyan);
 border-bottom-color: var(--accent-cyan);
 }
 .nav-channel-list li a.active {
 color: var(--text-primary);
 border-bottom-color: var(--accent-orange);
 }

 /* Hero 区域 */
 .hero-version {
 background: linear-gradient(135deg, #141418 0%, #1a1a1f 100%);
 padding: 60px 0;
 display: flex;
 align-items: center;
 min-height: 380px;
 position: relative;
 overflow: hidden;
 }
 .hero-version::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image: radial-gradient(circle at 20% 50%, rgba(0,229,255,0.03) 0%, transparent 50%);
 pointer-events: none;
 }
 .hero-grid {
 display: flex;
 gap: 40px;
 align-items: center;
 flex-wrap: wrap;
 position: relative;
 z-index: 2;
 }
 .hero-left {
 flex: 1 1 60%;
 min-width: 280px;
 }
 .hero-right {
 flex: 1 1 35%;
 min-width: 260px;
 }
 .hero-left h1 {
 font-size: 28px;
 font-weight: 800;
 color: var(--text-primary);
 margin-bottom: 12px;
 line-height: 1.3;
 }
 .hero-left .sub-title {
 font-size: 16px;
 font-weight: 400;
 color: var(--steel-gray);
 margin-bottom: 24px;
 }
 .hero-tags {
 display: flex;
 gap: 12px;
 margin-bottom: 28px;
 flex-wrap: wrap;
 }
 .tag {
 background: rgba(0,229,255,0.08);
 color: var(--accent-cyan);
 font-size: 12px;
 font-weight: 600;
 padding: 4px 12px;
 border-radius: var(--border-radius);
 letter-spacing: 0.5px;
 }
 .btn {
 display: inline-block;
 padding: 12px 28px;
 font-size: 14px;
 font-weight: 700;
 border-radius: var(--border-radius);
 cursor: pointer;
 transition: all 0.2s;
 text-align: center;
 border: none;
 }
 .btn-primary {
 background: var(--accent-orange);
 color: var(--color-white);
 }
 .btn-primary:hover {
 background: #E54E0F;
 box-shadow: 0 0 12px rgba(255,95,31,0.4);
 color: white;
 }
 .btn-secondary {
 background: transparent;
 border: 1px solid var(--steel-gray);
 color: var(--text-primary);
 margin-left: 12px;
 }
 .btn-secondary:hover {
 border-color: var(--accent-cyan);
 color: var(--accent-cyan);
 }
 .hero-card {
 background: var(--bg-card);
 border: 1px solid var(--border-card);
 border-radius: var(--border-radius);
 padding: 20px;
 box-shadow: var(--shadow-card);
 transition: box-shadow 0.3s;
 }
 .hero-card:hover {
 box-shadow: var(--shadow-hover);
 }
 .hero-card .card-label {
 font-size: 12px;
 color: var(--accent-cyan);
 font-weight: 600;
 margin-bottom: 12px;
 text-transform: uppercase;
 }
 .hero-card .version-date {
 font-family: var(--font-mono);
 font-size: 24px;
 font-weight: 800;
 color: var(--accent-orange);
 margin-bottom: 6px;
 }
 .hero-card p {
 color: var(--text-secondary);
 font-size: 14px;
 margin-bottom: 16px;
 }
 .hero-card .card-link {
 color: var(--accent-cyan);
 font-size: 13px;
 font-weight: 600;
 display: inline-flex;
 align-items: center;
 gap: 4px;
 }
 .hero-card .card-link i {
 font-size: 12px;
 }

 /* 板块通用 */
 .section {
 padding: 70px 0;
 }
 .section-title {
 font-size: 22px;
 font-weight: 700;
 color: var(--text-primary);
 margin-bottom: 12px;
 position: relative;
 display: inline-block;
 }
 .section-title::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: -6px;
 width: 40px;
 height: 2px;
 background: var(--accent-orange);
 }
 .section-sub {
 color: var(--text-secondary);
 font-size: 15px;
 margin-bottom: 40px;
 }

 /* 数据指标卡片网格 */
 .stats-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
 }
 .stat-card {
 background: var(--bg-card);
 border: 1px solid var(--border-card);
 border-radius: var(--border-radius);
 padding: 22px 18px;
 text-align: center;
 box-shadow: var(--shadow-card);
 transition: transform 0.2s, box-shadow 0.2s;
 }
 .stat-card:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-hover);
 }
 .stat-icon {
 font-size: 26px;
 color: var(--accent-orange);
 margin-bottom: 10px;
 }
 .stat-number {
 font-family: var(--font-mono);
 font-size: 36px;
 font-weight: 800;
 color: var(--accent-cyan);
 line-height: 1.2;
 margin-bottom: 6px;
 }
 .stat-unit {
 font-size: 14px;
 color: var(--steel-gray);
 display: block;
 margin-bottom: 4px;
 }
 .stat-desc {
 font-size: 12px;
 color: var(--text-muted);
 }

 /* 版本亮点卡片 */
 .highlights-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
 }
 .highlight-card {
 background: var(--bg-card);
 border-radius: var(--border-radius);
 overflow: hidden;
 border-left: 4px solid var(--accent-orange);
 display: flex;
 transition: box-shadow 0.3s;
 }
 .highlight-card:hover {
 box-shadow: var(--shadow-hover);
 }
 .highlight-img {
 width: 180px;
 min-height: 150px;
 background-size: cover;
 background-position: center;
 flex-shrink: 0;
 }
 .highlight-content {
 padding: 20px;
 display: flex;
 flex-direction: column;
 justify-content: center;
 }
 .highlight-content h3 {
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 8px;
 color: var(--text-primary);
 }
 .highlight-content .version-tag {
 font-family: var(--font-mono);
 font-size: 12px;
 color: var(--accent-orange);
 font-weight: 600;
 margin-bottom: 8px;
 }
 .highlight-content p {
 color: var(--text-secondary);
 font-size: 14px;
 margin-bottom: 12px;
 line-height: 1.5;
 }
 .highlight-content .read-more {
 color: var(--accent-cyan);
 font-weight: 600;
 font-size: 13px;
 }

 /* 攻略分类卡片 */
 .guide-category-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
 }
 .guide-cat-card {
 background: var(--bg-card);
 border: 1px solid var(--border-card);
 border-radius: var(--border-radius);
 padding: 24px;
 transition: all 0.25s;
 text-align: center;
 cursor: pointer;
 }
 .guide-cat-card:hover {
 border-color: var(--accent-cyan);
 box-shadow: var(--shadow-hover);
 transform: translateY(-3px);
 }
 .guide-cat-icon {
 font-size: 32px;
 color: var(--accent-cyan);
 margin-bottom: 16px;
 }
 .guide-cat-card h4 {
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 10px;
 }
 .guide-cat-card p {
 color: var(--text-secondary);
 font-size: 14px;
 line-height: 1.5;
 }

 /* 热门攻略排行（横向滚动卡片） */
 .scroll-row {
 display: flex;
 gap: 16px;
 overflow-x: auto;
 padding-bottom: 12px;
 scrollbar-width: thin;
 scrollbar-color: var(--steel-gray) var(--bg-card);
 }
 .scroll-row::-webkit-scrollbar {
 height: 6px;
 }
 .scroll-row::-webkit-scrollbar-track {
 background: var(--bg-card);
 }
 .scroll-row::-webkit-scrollbar-thumb {
 background: var(--steel-gray);
 border-radius: 3px;
 }
 .hot-guide-card {
 min-width: 260px;
 background: var(--bg-card);
 border-radius: var(--border-radius);
 border: 1px solid var(--border-card);
 padding: 16px;
 display: flex;
 flex-direction: column;
 transition: box-shadow 0.3s;
 }
 .hot-guide-card:hover {
 box-shadow: var(--shadow-hover);
 }
 .hot-guide-card .cover {
 height: 140px;
 background-size: cover;
 background-position: center;
 border-radius: 2px;
 margin-bottom: 12px;
 }
 .hot-guide-card h4 {
 font-size: 16px;
 font-weight: 600;
 margin-bottom: 6px;
 }
 .hot-guide-card .meta {
 font-size: 12px;
 color: var(--text-muted);
 display: flex;
 justify-content: space-between;
 }

 /* 版本时间轴 */
 .timeline {
 border-left: 2px solid var(--border-card);
 margin-left: 20px;
 padding-left: 30px;
 }
 .timeline-item {
 position: relative;
 margin-bottom: 30px;
 }
 .timeline-item::before {
 content: '';
 position: absolute;
 left: -36px;
 top: 5px;
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background: var(--accent-cyan);
 box-shadow: 0 0 0 4px rgba(0,229,255,0.15);
 }
 .timeline-date {
 font-family: var(--font-mono);
 font-size: 14px;
 font-weight: 700;
 color: var(--accent-cyan);
 margin-bottom: 4px;
 }
 .timeline-content {
 background: var(--bg-card);
 border: 1px solid var(--border-card);
 border-radius: var(--border-radius);
 padding: 16px;
 }
 .timeline-content h4 {
 font-size: 16px;
 font-weight: 600;
 margin-bottom: 6px;
 }
 .timeline-content p {
 color: var(--text-secondary);
 font-size: 14px;
 }

 /* FAQ 手风琴 */
 .faq-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 16px;
 }
 .faq-item {
 background: var(--bg-card);
 border: 1px solid var(--border-card);
 border-radius: var(--border-radius);
 padding: 16px 18px;
 cursor: pointer;
 transition: background 0.2s;
 }
 .faq-item:hover {
 border-color: var(--accent-cyan);
 }
 .faq-question {
 font-size: 16px;
 font-weight: 600;
 display: flex;
 justify-content: space-between;
 align-items: center;
 }
 .faq-question i {
 transition: transform 0.25s;
 color: var(--accent-cyan);
 }
 .faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease, margin 0.3s;
 font-size: 14px;
 color: var(--text-secondary);
 line-height: 1.6;
 }
 .faq-item.active .faq-answer {
 max-height: 200px;
 margin-top: 12px;
 }
 .faq-item.active .faq-question i {
 transform: rotate(45deg);
 }

 /* 用户评论 */
 .testimonials-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 16px;
 }
 .testimonial-card {
 background: var(--bg-card);
 border: 1px solid var(--border-card);
 border-radius: var(--border-radius);
 padding: 20px;
 display: flex;
 flex-direction: column;
 gap: 10px;
 }
 .testimonial-header {
 display: flex;
 align-items: center;
 gap: 12px;
 }
 .testimonial-avatar {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(138,143,152,0.3);
 flex-shrink: 0;
 }
 .testimonial-name {
 font-size: 14px;
 font-weight: 700;
 color: var(--text-primary);
 }
 .testimonial-tag {
 font-size: 11px;
 color: var(--accent-cyan);
 background: rgba(0,229,255,0.08);
 padding: 2px 8px;
 border-radius: 2px;
 }
 .testimonial-rating {
 color: var(--accent-orange);
 font-size: 14px;
 }
 .testimonial-text {
 color: var(--light-gray);
 font-size: 14px;
 line-height: 1.5;
 }
 .testimonial-time {
 font-size: 12px;
 color: var(--text-muted);
 }

 /* CTA 区 */
 .cta-banner {
 background: linear-gradient(135deg, #1a1a1f 0%, #141418 100%);
 padding: 50px 0;
 text-align: center;
 border-top: 1px solid rgba(138,143,152,0.1);
 border-bottom: 1px solid rgba(138,143,152,0.1);
 }
 .cta-banner h2 {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 12px;
 }
 .cta-banner p {
 color: var(--text-secondary);
 margin-bottom: 24px;
 }

 /* 页脚 */
 .site-footer {
 background: var(--bg-card);
 border-top: 1px solid var(--border-card);
 padding: 50px 0 30px;
 margin-top: 30px;
 }
 .footer-links-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 40px;
 justify-content: space-between;
 max-width: var(--container-max);
 margin: 0 auto 30px;
 padding: 0 20px;
 }
 .footer-col {
 min-width: 140px;
 }
 .footer-col h4 {
 font-size: 16px;
 font-weight: 600;
 margin-bottom: 14px;
 color: var(--text-primary);
 }
 .footer-col a {
 display: block;
 font-size: 14px;
 color: var(--text-secondary);
 margin-bottom: 8px;
 transition: color 0.15s;
 }
 .footer-col a:hover {
 color: var(--accent-cyan);
 }
 .footer-bottom {
 text-align: center;
 font-size: 12px;
 color: var(--text-muted);
 border-top: 1px solid var(--border-card);
 padding-top: 20px;
 max-width: var(--container-max);
 margin: 0 auto;
 padding-left: 20px;
 padding-right: 20px;
 }
 .footer-bottom p {
 margin-bottom: 6px;
 }
 .footer-bottom a {
 color: var(--text-muted);
 margin: 0 6px;
 }
 .footer-bottom a:hover {
 color: var(--accent-cyan);
 }

 /* 响应式 */
 @media (max-width: 1024px) {
 .stats-grid { grid-template-columns: repeat(2, 1fr); }
 .highlights-grid { grid-template-columns: 1fr; }
 .guide-category-grid { grid-template-columns: repeat(2, 1fr); }
 .faq-grid { grid-template-columns: 1fr; }
 .testimonials-grid { grid-template-columns: 1fr; }
 .hero-grid { flex-direction: column; }
 .hero-left, .hero-right { flex: unset; width: 100%; }
 .highlight-img { width: 140px; }
 }
 @media (max-width: 768px) {
 .nav-channel-list { gap: 20px; }
 .btn-secondary { margin-left: 8px; }
 .section { padding: 48px 0; }
 .stats-grid { grid-template-columns: 1fr; }
 .guide-category-grid { grid-template-columns: 1fr; }
 .highlight-card { flex-direction: column; }
 .highlight-img { width: 100%; height: 180px; }
 .footer-links-grid { gap: 24px; }
 .footer-col { min-width: 120px; }
 }

/* roulang page: category5 */
:root {
            --bg-page: #141418;
            --bg-card: #1A1A1F;
            --bg-card-hover: #1E1E24;
            --bg-nav-channel: rgba(26, 26, 31, 0.95);
            --color-accent-orange: #FF5F1F;
            --color-accent-orange-hover: #E54E0F;
            --color-data-cyan: #00E5FF;
            --color-data-cyan-dim: rgba(0, 229, 255, 0.08);
            --color-data-cyan-glow: rgba(0, 229, 255, 0.18);
            --color-steel: #8A8F98;
            --color-steel-light: #B0B5BE;
            --color-text-primary: #EAECEF;
            --color-text-secondary: #9DA3AE;
            --color-text-muted: #5E646E;
            --color-border: rgba(138, 143, 152, 0.15);
            --color-border-hover: rgba(138, 143, 152, 0.3);
            --color-red: #C0392B;
            --color-green: #27AE60;
            --color-live-bg: rgba(255, 95, 31, 0.15);
            --color-upcoming-bg: rgba(0, 229, 255, 0.08);
            --color-ended-bg: rgba(138, 143, 152, 0.1);
            --radius: 4px;
            --radius-sm: 3px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
            --shadow-card-hover: 0 4px 16px rgba(0, 229, 255, 0.08);
            --shadow-btn-orange: 0 0 12px rgba(255, 95, 31, 0.4);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', 'Segoe UI', sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --container-max: 1320px;
            --section-gap-lg: 80px;
            --section-gap-md: 48px;
            --section-gap-sm: 32px;
            --card-padding: 20px;
            --card-padding-lg: 24px;
            --nav-brand-height: 56px;
            --nav-channel-height: 44px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text-primary);
            background-color: var(--bg-page);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all var(--transition-normal);
        }

        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--color-data-cyan);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        input,
        select {
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4 {
            margin: 0;
            line-height: 1.3;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-page);
            border-bottom: 1px solid var(--color-border);
        }

        .nav-brand-row {
            height: var(--nav-brand-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .nav-logo {
            font-size: 20px;
            font-weight: 800;
            color: var(--color-text-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-logo .logo-accent {
            color: var(--color-accent-orange);
        }

        .nav-logo .logo-divider {
            color: var(--color-steel);
            font-weight: 400;
            margin: 0 2px;
            font-size: 16px;
        }

        .nav-logo .logo-sub {
            font-weight: 500;
            font-size: 14px;
            color: var(--color-steel-light);
            letter-spacing: 0.04em;
        }

        .nav-brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .nav-icon-btn {
            width: 36px;
            height: 36px;
            border-radius: var(--radius);
            background: transparent;
            color: var(--color-steel);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }

        .nav-icon-btn:hover {
            color: var(--color-data-cyan);
            border-color: var(--color-border-hover);
            background: var(--color-data-cyan-dim);
        }

        .nav-avatar-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-steel);
            font-size: 13px;
            font-weight: 600;
        }

        .nav-channel-row {
            height: var(--nav-channel-height);
            background: var(--bg-nav-channel);
            border-top: 1px solid var(--color-border);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .nav-channel-row::-webkit-scrollbar {
            display: none;
        }

        .nav-channel-list {
            list-style: none;
            margin: 0;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 0;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            white-space: nowrap;
        }

        .nav-channel-list li {
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-channel-list a {
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--color-steel-light);
            position: relative;
            letter-spacing: 0.02em;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .nav-channel-list a:hover {
            color: var(--color-data-cyan);
        }

        .nav-channel-list a.active {
            color: var(--color-text-primary);
        }
        .nav-channel-list a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--color-accent-orange);
            border-radius: 1px 1px 0 0;
        }

        /* Mobile nav hamburger */
        .nav-mobile-toggle {
            display: none;
            width: 36px;
            height: 36px;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            color: var(--color-steel);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .nav-mobile-toggle:hover {
            border-color: var(--color-data-cyan);
            color: var(--color-data-cyan);
        }

        @media (max-width: 767px) {
            .nav-mobile-toggle {
                display: flex;
            }
            .nav-channel-row {
                display: none;
            }
            .nav-channel-row.mobile-open {
                display: block;
                position: absolute;
                top: var(--nav-brand-height);
                left: 0;
                right: 0;
                height: auto;
                background: var(--bg-nav-channel);
                border-bottom: 1px solid var(--color-border);
                z-index: 999;
            }
            .nav-channel-row.mobile-open .nav-channel-list {
                flex-direction: column;
                align-items: stretch;
                padding: 8px 0;
                height: auto;
            }
            .nav-channel-row.mobile-open .nav-channel-list a {
                padding: 12px 20px;
                height: auto;
            }
            .nav-channel-row.mobile-open .nav-channel-list a.active::after {
                display: none;
            }
            .nav-channel-row.mobile-open .nav-channel-list a.active {
                background: var(--color-data-cyan-dim);
                color: var(--color-data-cyan);
                border-left: 2px solid var(--color-accent-orange);
            }
        }

        /* ========== HERO ========== */
        .page-hero {
            background:
                linear-gradient(180deg, rgba(20, 20, 24, 0.75) 0%, rgba(20, 20, 24, 0.92) 60%, var(--bg-page) 100%),
                url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
            padding: 64px 0 48px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(0deg,
                    transparent,
                    transparent 2px,
                    rgba(138, 143, 152, 0.015) 2px,
                    rgba(138, 143, 152, 0.015) 4px);
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .page-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 16px;
            background: var(--color-live-bg);
            color: var(--color-accent-orange);
            border: 1px solid rgba(255, 95, 31, 0.25);
        }
        .page-hero-badge .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-accent-orange);
            animation: pulse-dot-anim 1.5s ease-in-out infinite;
        }
        @keyframes pulse-dot-anim {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 95, 31, 0);
            }
        }
        .page-hero h1 {
            font-size: 28px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }
        .page-hero h1 .highlight {
            color: var(--color-accent-orange);
        }
        .page-hero .hero-subtitle {
            font-size: 15px;
            color: var(--color-steel-light);
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 20px;
        }
        .page-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }
        .page-hero-tags span {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            background: rgba(138, 143, 152, 0.08);
            color: var(--color-steel-light);
            border: 1px solid rgba(138, 143, 152, 0.12);
        }
        .page-hero-tags span.hot-tag {
            background: var(--color-data-cyan-dim);
            color: var(--color-data-cyan);
            border-color: rgba(0, 229, 255, 0.2);
        }
        .hero-live-count {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 800;
            color: var(--color-data-cyan);
            margin-top: 8px;
        }
        .hero-live-count .count-label {
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
            color: var(--color-steel);
            letter-spacing: 0.03em;
        }

        @media (max-width: 767px) {
            .page-hero {
                padding: 40px 0 32px;
            }
            .page-hero h1 {
                font-size: 22px;
            }
            .hero-live-count {
                font-size: 28px;
            }
        }

        /* ========== FILTER TABS ========== */
        .filter-tabs-section {
            padding: 32px 0 16px;
            position: sticky;
            top: calc(var(--nav-brand-height) + var(--nav-channel-height));
            z-index: 50;
            background: var(--bg-page);
            border-bottom: 1px solid var(--color-border);
            transition: top var(--transition-normal);
        }
        .filter-tabs {
            display: flex;
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 2px;
        }
        .filter-tabs::-webkit-scrollbar {
            display: none;
        }
        .filter-tab-btn {
            padding: 9px 20px;
            border-radius: var(--radius);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.02em;
            background: transparent;
            color: var(--color-steel-light);
            border: 1px solid transparent;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .filter-tab-btn:hover {
            color: var(--color-data-cyan);
            background: var(--color-data-cyan-dim);
            border-color: rgba(0, 229, 255, 0.15);
        }
        .filter-tab-btn.active {
            background: var(--color-accent-orange);
            color: #fff;
            border-color: var(--color-accent-orange);
            box-shadow: var(--shadow-btn-orange);
        }
        .filter-tab-btn .tab-count {
            display: inline-block;
            margin-left: 6px;
            font-family: var(--font-mono);
            font-size: 11px;
            opacity: 0.85;
        }

        @media (max-width: 767px) {
            .filter-tabs-section {
                top: var(--nav-brand-height);
                padding: 16px 0 8px;
            }
            .filter-tab-btn {
                padding: 7px 14px;
                font-size: 12px;
            }
        }

        /* ========== MAIN LAYOUT ========== */
        .main-content-area {
            padding: 32px 0 var(--section-gap-lg);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 28px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr 280px;
                gap: 20px;
            }
        }
        @media (max-width: 767px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ========== LIVE CARD GRID ========== */
        .live-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        @media (min-width: 1200px) {
            .live-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 1199px) and (min-width: 768px) {
            .live-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .live-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 520px) {
            .live-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        .live-card {
            background: var(--bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition-normal);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .live-card:hover {
            border-color: var(--color-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            background: var(--bg-card-hover);
        }
        .live-card-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            background: #1a1a1f;
            overflow: hidden;
        }
        .live-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .live-card:hover .live-card-thumb img {
            transform: scale(1.04);
        }
        .live-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.05em;
            z-index: 2;
            text-transform: uppercase;
        }
        .live-badge.live-now {
            background: #e53935;
            color: #fff;
            animation: live-pulse-badge 1.2s ease-in-out infinite;
        }
        @keyframes live-pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
            }
        }
        .live-badge.upcoming {
            background: var(--color-data-cyan-dim);
            color: var(--color-data-cyan);
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        .live-badge.replay {
            background: var(--color-ended-bg);
            color: var(--color-steel);
            border: 1px solid rgba(138, 143, 152, 0.15);
        }
        .live-card-viewers {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 3px 8px;
            border-radius: var(--radius-sm);
            font-size: 11px;
            font-weight: 600;
            font-family: var(--font-mono);
            background: rgba(0, 0, 0, 0.7);
            color: var(--color-steel-light);
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 2;
        }
        .live-card-viewers .eye-icon {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--color-steel);
            opacity: 0.7;
        }
        .live-card-body {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .live-card-event {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: var(--color-data-cyan);
            text-transform: uppercase;
        }
        .live-card-matchup {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 15px;
            color: var(--color-text-primary);
            letter-spacing: 0.02em;
        }
        .live-card-matchup .vs {
            font-family: var(--font-mono);
            font-size: 13px;
            color: var(--color-steel);
            font-weight: 400;
            flex-shrink: 0;
        }
        .live-card-score {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 800;
            color: var(--color-data-cyan);
            letter-spacing: 0.04em;
        }
        .live-card-meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--color-text-secondary);
        }
        .live-card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .live-card-map-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: var(--radius-sm);
            font-size: 11px;
            font-weight: 500;
            background: rgba(138, 143, 152, 0.08);
            color: var(--color-steel-light);
            letter-spacing: 0.03em;
        }
        .live-card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: var(--radius);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: all var(--transition-normal);
            margin-top: auto;
            width: 100%;
            text-align: center;
        }
        .live-card-btn.btn-live {
            background: var(--color-accent-orange);
            color: #fff;
        }
        .live-card-btn.btn-live:hover {
            background: var(--color-accent-orange-hover);
            box-shadow: var(--shadow-btn-orange);
        }
        .live-card-btn.btn-upcoming {
            background: transparent;
            color: var(--color-data-cyan);
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        .live-card-btn.btn-upcoming:hover {
            background: var(--color-data-cyan-dim);
            border-color: var(--color-data-cyan);
        }
        .live-card-btn.btn-replay {
            background: transparent;
            color: var(--color-steel-light);
            border: 1px solid var(--color-border);
        }
        .live-card-btn.btn-replay:hover {
            background: rgba(138, 143, 152, 0.06);
            border-color: var(--color-border-hover);
            color: var(--color-text-primary);
        }
        .live-card-countdown {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 600;
            color: var(--color-data-cyan);
            letter-spacing: 0.03em;
        }
        .live-card-status-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-right: 4px;
        }
        .live-card-status-dot.live-dot {
            background: #e53935;
            animation: pulse-dot-anim 1.5s ease-in-out infinite;
        }
        .live-card-status-dot.upcoming-dot {
            background: var(--color-data-cyan);
        }
        .live-card-status-dot.ended-dot {
            background: var(--color-steel);
        }

        /* ========== SIDEBAR ========== */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: var(--card-padding-lg);
        }
        .sidebar-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3 .side-icon {
            color: var(--color-accent-orange);
            font-size: 14px;
        }
        .sidebar-rank-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .sidebar-rank-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
            cursor: pointer;
            font-size: 13px;
        }
        .sidebar-rank-item:hover {
            background: var(--color-data-cyan-dim);
        }
        .sidebar-rank-num {
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 800;
            color: var(--color-data-cyan);
            width: 26px;
            text-align: center;
            flex-shrink: 0;
        }
        .sidebar-rank-num.top1 {
            color: var(--color-accent-orange);
            font-size: 18px;
        }
        .sidebar-rank-info {
            flex: 1;
            min-width: 0;
        }
        .sidebar-rank-info .rank-name {
            font-weight: 600;
            color: var(--color-text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .sidebar-rank-info .rank-sub {
            font-size: 11px;
            color: var(--color-text-muted);
        }
        .sidebar-rank-viewers {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 600;
            color: var(--color-steel-light);
            flex-shrink: 0;
        }
        .sidebar-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .sidebar-stat-item {
            text-align: center;
            padding: 12px 8px;
            background: rgba(138, 143, 152, 0.04);
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
        }
        .sidebar-stat-item .stat-val {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 800;
            color: var(--color-data-cyan);
            line-height: 1;
        }
        .sidebar-stat-item .stat-label {
            font-size: 11px;
            color: var(--color-text-muted);
            margin-top: 4px;
            letter-spacing: 0.02em;
        }
        @media (max-width: 767px) {
            .sidebar {
                gap: 16px;
            }
            .sidebar-stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ========== DATA METRICS SECTION ========== */
        .metrics-section {
            padding: var(--section-gap-md) 0;
        }
        .metrics-section .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 28px;
            letter-spacing: 0.02em;
            text-align: center;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .metrics-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 767px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 520px) {
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: 18px 16px;
            text-align: center;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .metric-card:hover {
            border-color: var(--color-border-hover);
            box-shadow: var(--shadow-card-hover);
        }
        .metric-card .metric-icon {
            font-size: 22px;
            margin-bottom: 6px;
            color: var(--color-accent-orange);
        }
        .metric-card .metric-value {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 800;
            color: var(--color-data-cyan);
            line-height: 1.1;
            letter-spacing: 0.02em;
        }
        .metric-card .metric-unit {
            font-size: 13px;
            color: var(--color-steel);
            font-weight: 500;
            margin-left: 2px;
        }
        .metric-card .metric-label {
            font-size: 12px;
            color: var(--color-text-secondary);
            margin-top: 4px;
            letter-spacing: 0.02em;
        }
        .metric-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.25), transparent);
            opacity: 0;
            transition: opacity var(--transition-normal);
        }
        .metric-card:hover::after {
            opacity: 1;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: var(--section-gap-md) 0;
            border-top: 1px solid var(--color-border);
        }
        .faq-section .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 28px;
            letter-spacing: 0.02em;
            text-align: center;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        @media (max-width: 767px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        .faq-item:hover {
            border-color: var(--color-border-hover);
        }
        .faq-question {
            width: 100%;
            background: transparent;
            color: var(--color-text-primary);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 18px;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            border: none;
            letter-spacing: 0.01em;
            transition: color var(--transition-fast);
            line-height: 1.5;
        }
        .faq-question:hover {
            color: var(--color-data-cyan);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 16px;
            font-weight: 700;
            color: var(--color-data-cyan);
            background: var(--color-data-cyan-dim);
            transition: all var(--transition-fast);
        }
        .faq-item.open .faq-icon {
            background: var(--color-accent-orange);
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.7;
            padding: 0 18px;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 18px 16px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-card);
            border-top: 1px solid var(--color-border);
            padding: 40px 0 24px;
            margin-top: auto;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }
        @media (max-width: 1024px) {
            .footer-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 767px) {
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 520px) {
            .footer-links-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color var(--transition-fast);
            letter-spacing: 0.01em;
        }
        .footer-col a:hover {
            color: var(--color-data-cyan);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
            font-size: 12px;
            color: var(--color-text-muted);
            line-height: 2;
            letter-spacing: 0.02em;
        }
        .footer-bottom a {
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
            margin: 0 4px;
        }
        .footer-bottom a:hover {
            color: var(--color-data-cyan);
        }

        /* ========== UTILITY ========== */
        .text-mono {
            font-family: var(--font-mono);
        }
        .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;
        }
        .no-results {
            text-align: center;
            padding: 40px 20px;
            color: var(--color-text-muted);
            font-size: 14px;
            grid-column: 1 / -1;
        }
