/* roulang page: index */
:root {
            --brand-purple: #A020F0;
            --brand-deep-purple: #6C00FF;
            --brand-cyan: #00E5FF;
            --brand-bg: #0D0F16;
            --brand-card: #161822;
            --brand-slot: #1E2030;
            --brand-text: #B0B7C3;
            --brand-muted: #6B7280;
            --brand-white: #FFFFFF;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-3xl: 1.25rem;
            --shadow-glow: 0px 8px 24px rgba(160, 32, 240, 0.15);
            --shadow-card: 0px 4px 12px rgba(0, 0, 0, 0.3);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--brand-bg);
            color: var(--brand-text);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--brand-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        button:focus-visible {
            outline: 2px solid var(--brand-cyan);
            outline-offset: 3px;
            border-radius: 8px;
        }
        input {
            font-family: inherit;
            outline: none;
            border: none;
        }
        input:focus-visible {
            outline: 2px solid var(--brand-cyan);
            outline-offset: 2px;
            border-radius: 6px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* 导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--brand-bg);
            border-bottom: 1px solid rgba(160, 32, 240, 0.3);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--brand-white);
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .brand-logo .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
        }
        .brand-slogan {
            font-size: 0.78rem;
            color: var(--brand-muted);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .brand-actions .search-box {
            display: flex;
            align-items: center;
            background: var(--brand-slot);
            border-radius: 20px;
            padding: 6px 14px;
            gap: 6px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }
        .brand-actions .search-box:focus-within {
            border-color: var(--brand-cyan);
            box-shadow: 0px 0px 10px rgba(0, 229, 255, 0.2);
        }
        .brand-actions .search-box input {
            background: transparent;
            color: var(--brand-white);
            font-size: 0.85rem;
            width: 120px;
            border: none;
            outline: none;
        }
        .brand-actions .search-box input::placeholder {
            color: var(--brand-muted);
        }
        .brand-actions .search-box i {
            color: var(--brand-muted);
            font-size: 0.85rem;
        }
        .time-stamp {
            font-size: 0.75rem;
            color: var(--brand-muted);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
        }
        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.8rem;
            cursor: pointer;
            flex-shrink: 0;
            transition: transform var(--transition-fast);
        }
        .user-avatar:hover {
            transform: scale(1.08);
        }

        /* 频道行 */
        .channel-row {
            background: rgba(13, 15, 22, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(160, 32, 240, 0.2);
            border-bottom: 1px solid rgba(0, 229, 255, 0.08);
            padding: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-row::-webkit-scrollbar {
            display: none;
        }
        .channel-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            padding: 0 8px;
        }
        .channel-nav a {
            display: inline-flex;
            align-items: center;
            padding: 11px 18px;
            font-size: 0.9rem;
            color: var(--brand-text);
            border-radius: 8px;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.3px;
            font-weight: 500;
        }
        .channel-nav a:hover {
            color: var(--brand-cyan);
            background: rgba(0, 229, 255, 0.05);
        }
        .channel-nav a.active {
            color: var(--brand-cyan);
            font-weight: 600;
        }
        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 18px;
            right: 18px;
            height: 2.5px;
            background: var(--brand-cyan);
            border-radius: 2px;
        }

        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--brand-white);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .mobile-menu-btn:hover {
            background: var(--brand-slot);
        }

        @media (max-width: 768px) {
            .brand-slogan {
                display: none;
            }
            .time-stamp {
                display: none;
            }
            .brand-actions .search-box input {
                width: 70px;
                font-size: 0.78rem;
            }
            .channel-nav a {
                padding: 10px 12px;
                font-size: 0.8rem;
            }
            .channel-nav a.active::after {
                left: 12px;
                right: 12px;
                bottom: 3px;
                height: 2px;
            }
        }
        @media (max-width: 520px) {
            .brand-logo {
                font-size: 1.1rem;
            }
            .brand-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
            .brand-actions .search-box {
                padding: 5px 10px;
            }
            .brand-actions .search-box input {
                width: 50px;
                font-size: 0.72rem;
            }
            .user-avatar {
                width: 26px;
                height: 26px;
                font-size: 0.7rem;
            }
            .channel-nav a {
                padding: 8px 10px;
                font-size: 0.75rem;
            }
        }

        /* Hero */
        .hero-section {
            position: relative;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(13, 15, 22, 0.88) 0%, rgba(13, 15, 22, 0.7) 40%, rgba(108, 0, 255, 0.25) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 40px;
            width: 100%;
        }
        .hero-left {
            flex: 1 1 55%;
            padding-top: 20px;
        }
        .hero-left h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--brand-white);
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .hero-left h1 .highlight {
            background: linear-gradient(135deg, var(--brand-cyan), var(--brand-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-left .hero-subtitle {
            font-size: 1.05rem;
            color: var(--brand-text);
            margin-bottom: 20px;
            letter-spacing: 0.3px;
            line-height: 1.5;
        }
        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 11px 22px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep-purple));
            color: #fff;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            box-shadow: 0px 4px 16px rgba(160, 32, 240, 0.35);
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #C060FF, #8A30FF);
            transform: translateY(-2px);
            box-shadow: 0px 8px 28px rgba(160, 32, 240, 0.5);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 11px 22px;
            border: 1.5px solid var(--brand-cyan);
            color: var(--brand-cyan);
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            background: transparent;
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: #66F0FF;
            color: #66F0FF;
            transform: translateY(-2px);
            box-shadow: 0px 6px 20px rgba(0, 229, 255, 0.2);
        }
        .hero-right {
            flex: 0 0 340px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding-top: 10px;
        }
        .hero-data-card {
            background: var(--brand-slot);
            border: 1px solid rgba(160, 32, 240, 0.35);
            border-radius: var(--radius-2xl);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            backdrop-filter: blur(6px);
            transition: all var(--transition-smooth);
        }
        .hero-data-card:hover {
            border-color: rgba(0, 229, 255, 0.5);
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
        }
        .hero-data-card .data-num {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--brand-cyan);
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: 0.5px;
            line-height: 1;
        }
        .hero-data-card .data-label {
            font-size: 0.82rem;
            color: var(--brand-muted);
            letter-spacing: 0.3px;
        }
        .hero-data-card .data-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(160, 32, 240, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--brand-purple);
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column;
                gap: 30px;
            }
            .hero-right {
                flex: 0 0 auto;
                flex-direction: row;
                flex-wrap: wrap;
                width: 100%;
            }
            .hero-data-card {
                flex: 1 1 140px;
                min-width: 130px;
            }
            .hero-left h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 40px 0 32px;
            }
            .hero-left h1 {
                font-size: 1.6rem;
            }
            .hero-left .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-right {
                gap: 10px;
            }
            .hero-data-card {
                padding: 12px 14px;
                gap: 8px;
                min-width: 100px;
            }
            .hero-data-card .data-num {
                font-size: 1.3rem;
            }
            .hero-data-card .data-label {
                font-size: 0.7rem;
            }
            .hero-data-card .data-icon {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 9px 16px;
                font-size: 0.8rem;
            }
        }

        /* 板块通用 */
        .section-block {
            padding: 56px 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 36px 0;
            }
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--brand-white);
            letter-spacing: 0.5px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }
        .section-title::before {
            content: '';
            width: 3px;
            height: 28px;
            background: var(--brand-cyan);
            border-radius: 4px;
            flex-shrink: 0;
        }
        .section-subtitle {
            font-size: 0.9rem;
            color: var(--brand-muted);
            margin-bottom: 28px;
            letter-spacing: 0.3px;
        }

        /* 实时数据徽章带 */
        .metrics-strip {
            display: flex;
            gap: 16px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 0;
        }
        .metrics-strip::-webkit-scrollbar {
            display: none;
        }
        .metric-badge {
            flex: 0 0 auto;
            min-width: 140px;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 16px 18px;
            text-align: center;
            border: 1px solid rgba(160, 32, 240, 0.15);
            transition: all var(--transition-smooth);
        }
        .metric-badge:hover {
            border-color: rgba(0, 229, 255, 0.4);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .metric-badge .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand-cyan);
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
        }
        .metric-badge .metric-label {
            font-size: 0.75rem;
            color: var(--brand-muted);
            margin-top: 2px;
            letter-spacing: 0.3px;
        }

        /* 游戏分类矩阵 */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .game-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        .game-card {
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid rgba(160, 32, 240, 0.12);
            transition: all var(--transition-smooth);
            cursor: pointer;
            text-align: center;
            padding-bottom: 14px;
        }
        .game-card:hover {
            border-color: rgba(0, 229, 255, 0.4);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }
        .game-card .game-thumb {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            background: var(--brand-slot);
        }
        .game-card .game-name {
            font-weight: 600;
            color: var(--brand-white);
            margin-top: 10px;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        .game-card .game-badge {
            display: inline-block;
            background: rgba(0, 229, 255, 0.1);
            color: var(--brand-cyan);
            font-size: 0.72rem;
            padding: 3px 10px;
            border-radius: 20px;
            margin-top: 4px;
        }
        .game-card .game-btn {
            display: inline-block;
            margin-top: 8px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 500;
            background: rgba(160, 32, 240, 0.15);
            color: #C4B5FD;
            transition: all var(--transition-fast);
        }
        .game-card:hover .game-btn {
            background: rgba(160, 32, 240, 0.35);
            color: #fff;
        }

        /* 赛程表 */
        .schedule-layout {
            display: flex;
            gap: 24px;
        }
        @media (max-width: 1024px) {
            .schedule-layout {
                flex-direction: column;
            }
        }
        .schedule-table-wrap {
            flex: 1 1 65%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
            min-width: 600px;
        }
        .schedule-table th {
            text-align: left;
            padding: 10px 12px;
            color: var(--brand-muted);
            font-weight: 500;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(160, 32, 240, 0.2);
        }
        .schedule-table td {
            padding: 11px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--brand-text);
            white-space: nowrap;
        }
        .schedule-table tbody tr {
            background: var(--brand-card);
            transition: background var(--transition-fast);
        }
        .schedule-table tbody tr:nth-child(even) {
            background: var(--brand-slot);
        }
        .schedule-table tbody tr.live-row {
            border-left: 3px solid var(--brand-cyan);
            background: rgba(0, 229, 255, 0.04);
        }
        .schedule-table tbody tr:hover {
            background: rgba(160, 32, 240, 0.08);
        }
        .status-live {
            display: inline-block;
            background: #ef4444;
            color: #fff;
            font-size: 0.68rem;
            padding: 2px 8px;
            border-radius: 10px;
            animation: pulse-live 1.5s infinite;
            font-weight: 600;
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .status-upcoming {
            display: inline-block;
            color: var(--brand-cyan);
            font-size: 0.72rem;
            font-weight: 500;
        }
        .status-done {
            display: inline-block;
            color: var(--brand-muted);
            font-size: 0.72rem;
        }
        .schedule-sidebar {
            flex: 0 0 280px;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 20px;
            border: 1px solid rgba(160, 32, 240, 0.12);
        }
        .schedule-sidebar h4 {
            color: var(--brand-white);
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        .rank-list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.82rem;
            color: var(--brand-text);
            transition: color var(--transition-fast);
        }
        .rank-list-item:hover {
            color: var(--brand-cyan);
        }
        .rank-num {
            font-weight: 700;
            color: var(--brand-purple);
            font-size: 1rem;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }
        @media (max-width: 1024px) {
            .schedule-sidebar {
                flex: 0 0 auto;
            }
        }

        /* 战队实力榜 */
        .team-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 6px 0;
        }
        .team-scroll::-webkit-scrollbar {
            display: none;
        }
        .team-card {
            flex: 0 0 220px;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 16px;
            border: 1px solid rgba(160, 32, 240, 0.1);
            transition: all var(--transition-smooth);
            min-width: 200px;
        }
        .team-card:hover {
            border-color: rgba(0, 229, 255, 0.35);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .team-card .team-logo-area {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--brand-slot);
            margin-bottom: 8px;
        }
        .team-card .team-name {
            font-weight: 600;
            color: var(--brand-white);
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        .team-card .team-winrate {
            font-size: 0.78rem;
            color: var(--brand-cyan);
            font-weight: 500;
        }
        .team-card .team-players {
            font-size: 0.7rem;
            color: var(--brand-muted);
            margin-top: 4px;
        }

        /* 版本更新速递 */
        .version-layout {
            display: flex;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .version-layout {
                flex-direction: column;
            }
        }
        .version-featured {
            flex: 1 1 50%;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid rgba(160, 32, 240, 0.12);
            transition: all var(--transition-smooth);
        }
        .version-featured:hover {
            border-color: rgba(0, 229, 255, 0.35);
            box-shadow: var(--shadow-glow);
        }
        .version-featured img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .version-featured .vf-body {
            padding: 14px 16px;
        }
        .version-featured .vf-title {
            font-weight: 600;
            color: var(--brand-white);
            font-size: 1rem;
        }
        .version-featured .vf-tag {
            display: inline-block;
            background: rgba(160, 32, 240, 0.2);
            color: #C4B5FD;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 10px;
            margin-top: 4px;
        }
        .version-list {
            flex: 1 1 50%;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .version-list-item {
            background: var(--brand-card);
            border-radius: var(--radius-xl);
            padding: 14px 16px;
            border: 1px solid rgba(160, 32, 240, 0.08);
            transition: all var(--transition-fast);
        }
        .version-list-item:hover {
            border-color: rgba(0, 229, 255, 0.3);
            background: var(--brand-slot);
        }
        .version-list-item .vl-game {
            font-size: 0.7rem;
            color: var(--brand-purple);
            font-weight: 600;
        }
        .version-list-item .vl-title {
            font-weight: 500;
            color: var(--brand-white);
            font-size: 0.85rem;
            margin: 2px 0;
        }

        /* 赛事专题海报 */
        .poster-duo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .poster-duo {
                grid-template-columns: 1fr;
            }
        }
        .poster-card {
            border-radius: var(--radius-2xl);
            overflow: hidden;
            position: relative;
            background-size: cover;
            background-position: center;
            min-height: 240px;
            display: flex;
            align-items: flex-end;
            border: 1px solid rgba(160, 32, 240, 0.2);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .poster-card:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
            border-color: rgba(0, 229, 255, 0.45);
        }
        .poster-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 15, 22, 0.9) 0%, rgba(13, 15, 22, 0.3) 50%, rgba(13, 15, 22, 0.1) 100%);
            z-index: 1;
        }
        .poster-card .poster-info {
            position: relative;
            z-index: 2;
            padding: 20px;
            color: #fff;
        }
        .poster-card .poster-title {
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.4px;
        }
        .poster-card .poster-desc {
            font-size: 0.82rem;
            color: #ccc;
            margin-top: 2px;
        }
        .poster-card .poster-btn {
            display: inline-block;
            margin-top: 8px;
            padding: 7px 18px;
            background: var(--brand-purple);
            color: #fff;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 500;
            transition: all var(--transition-fast);
        }
        .poster-card:hover .poster-btn {
            background: #C060FF;
        }
        .countdown-timer {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand-cyan);
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: 1px;
        }

        /* 对局分析快报 */
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .analysis-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .analysis-grid {
                grid-template-columns: 1fr;
            }
        }
        .analysis-card {
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid rgba(160, 32, 240, 0.1);
            transition: all var(--transition-smooth);
        }
        .analysis-card:hover {
            border-color: rgba(0, 229, 255, 0.35);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .analysis-card img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .analysis-card .ac-body {
            padding: 14px 16px;
        }
        .analysis-card .ac-title {
            font-weight: 600;
            color: var(--brand-white);
            font-size: 0.9rem;
        }
        .analysis-card .ac-summary {
            font-size: 0.78rem;
            color: var(--brand-muted);
            margin-top: 4px;
            line-height: 1.5;
        }
        .analysis-card .ac-link {
            display: inline-block;
            margin-top: 8px;
            color: var(--brand-cyan);
            font-size: 0.75rem;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .analysis-card .ac-link:hover {
            color: #66F0FF;
        }

        /* 用户关注热度榜 */
        .hot-lists {
            display: flex;
            gap: 24px;
        }
        @media (max-width: 768px) {
            .hot-lists {
                flex-direction: column;
            }
        }
        .hot-col {
            flex: 1;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 20px;
            border: 1px solid rgba(160, 32, 240, 0.1);
        }
        .hot-col h4 {
            color: var(--brand-white);
            font-weight: 600;
            margin-bottom: 14px;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        .hot-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.83rem;
            color: var(--brand-text);
            transition: color var(--transition-fast);
        }
        .hot-item:hover {
            color: var(--brand-cyan);
        }
        .hot-item .hot-rank {
            font-weight: 700;
            color: var(--brand-purple);
            width: 22px;
            flex-shrink: 0;
            text-align: center;
        }
        .follow-btn {
            margin-left: auto;
            padding: 4px 12px;
            border-radius: 14px;
            font-size: 0.7rem;
            font-weight: 500;
            background: rgba(0, 229, 255, 0.1);
            color: var(--brand-cyan);
            border: 1px solid rgba(0, 229, 255, 0.3);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .follow-btn:hover {
            background: rgba(0, 229, 255, 0.25);
            border-color: var(--brand-cyan);
        }

        /* 用户评论 */
        .reviews-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 0;
        }
        .reviews-scroll::-webkit-scrollbar {
            display: none;
        }
        .review-card {
            flex: 0 0 300px;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 18px;
            border: 1px solid rgba(160, 32, 240, 0.08);
            transition: all var(--transition-smooth);
            min-width: 280px;
        }
        .review-card:hover {
            border-color: rgba(0, 229, 255, 0.3);
            box-shadow: var(--shadow-glow);
        }
        .review-card .rv-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .review-card .rv-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.75rem;
            flex-shrink: 0;
        }
        .review-card .rv-name {
            font-weight: 600;
            color: var(--brand-white);
            font-size: 0.85rem;
        }
        .review-card .rv-tag {
            font-size: 0.68rem;
            color: var(--brand-muted);
        }
        .review-card .rv-stars {
            color: #f59e0b;
            font-size: 0.75rem;
        }
        .review-card .rv-text {
            font-size: 0.8rem;
            color: var(--brand-text);
            line-height: 1.6;
        }
        .review-card .rv-time {
            font-size: 0.68rem;
            color: var(--brand-muted);
            margin-top: 6px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .faq-item {
            background: var(--brand-card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(160, 32, 240, 0.08);
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(0, 229, 255, 0.2);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            background: transparent;
            color: var(--brand-white);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--brand-cyan);
        }
        .faq-question .faq-icon {
            font-size: 1.1rem;
            color: var(--brand-purple);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--brand-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            background: var(--brand-slot);
            font-size: 0.82rem;
            color: var(--brand-text);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 14px 20px 18px;
        }

        /* CTA */
        .cta-banner {
            background: linear-gradient(135deg, rgba(160, 32, 240, 0.2), rgba(0, 229, 255, 0.08));
            border-radius: var(--radius-2xl);
            padding: 48px 24px;
            text-align: center;
            border: 1px solid rgba(160, 32, 240, 0.25);
        }
        .cta-banner h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--brand-white);
            letter-spacing: 0.5px;
        }
        .cta-banner p {
            color: var(--brand-text);
            margin: 8px 0 18px;
            font-size: 0.9rem;
        }
        .cta-form {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-form input {
            padding: 11px 18px;
            border-radius: 25px;
            background: var(--brand-slot);
            color: var(--brand-white);
            border: 1px solid rgba(160, 32, 240, 0.3);
            font-size: 0.9rem;
            min-width: 240px;
            transition: border-color var(--transition-fast);
        }
        .cta-form input:focus {
            border-color: var(--brand-cyan);
        }
        .cta-form button {
            padding: 11px 24px;
            border-radius: 25px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep-purple));
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition-smooth);
            box-shadow: 0px 4px 14px rgba(160, 32, 240, 0.3);
        }
        .cta-form button:hover {
            background: linear-gradient(135deg, #C060FF, #8A30FF);
            box-shadow: 0px 8px 24px rgba(160, 32, 240, 0.45);
            transform: translateY(-1px);
        }

        /* 页脚 */
        .site-footer {
            background: var(--brand-bg);
            border-top: 2px solid;
            border-image: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan), var(--brand-deep-purple)) 1;
            padding: 40px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: var(--brand-white);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            display: block;
            color: var(--brand-muted);
            font-size: 0.78rem;
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--brand-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.72rem;
            color: var(--brand-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--brand-muted);
            transition: color var(--transition-fast);
            margin: 0 6px;
        }
        .footer-bottom a:hover {
            color: var(--brand-cyan);
        }

        /* 滚动条美化 */
        ::-webkit-scrollbar {
            height: 4px;
            width: 4px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(160, 32, 240, 0.35);
            border-radius: 10px;
        }

/* roulang page: category1 */
:root {
            --brand-purple: #A020F0;
            --brand-deep-purple: #6C00FF;
            --brand-cyan: #00E5FF;
            --brand-bg: #0D0F16;
            --brand-card: #161822;
            --brand-slot: #1E2030;
            --brand-text: #B0B7C3;
            --brand-muted: #6B7280;
            --brand-white: #FFFFFF;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-full: 9999px;
            --shadow-card: 0px 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0px 8px 24px rgba(160, 32, 240, 0.15);
            --shadow-cyan-glow: 0px 0px 20px rgba(0, 229, 255, 0.12);
            --transition-base: all 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: 'PingFang SC', 'Microsoft YaHei', 'system-ui', sans-serif;
            background-color: var(--brand-bg);
            color: var(--brand-text);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            outline: none;
            border: none;
            transition: var(--transition-base);
        }

        button {
            cursor: pointer;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-cyan);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAVIGATION ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--brand-bg);
            border-bottom: 1px solid transparent;
        }

        .site-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brand-cyan), var(--brand-purple), var(--brand-cyan), transparent);
            opacity: 0.7;
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 10px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--brand-white);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .brand-logo:hover {
            color: var(--brand-cyan);
            text-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep-purple));
            border-radius: var(--radius-xl);
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 0 14px rgba(160, 32, 240, 0.4);
        }

        .brand-slogan {
            font-size: 0.8rem;
            color: var(--brand-muted);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .time-stamp {
            font-size: 0.72rem;
            color: var(--brand-muted);
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--brand-slot);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-full);
            padding: 7px 14px;
            transition: var(--transition-base);
        }

        .search-box:focus-within {
            border-color: var(--brand-cyan);
            box-shadow: var(--shadow-cyan-glow);
        }

        .search-box i {
            color: var(--brand-muted);
            font-size: 0.85rem;
        }

        .search-box input {
            background: transparent;
            color: var(--brand-white);
            font-size: 0.82rem;
            width: 140px;
            letter-spacing: 0.3px;
        }

        .search-box input::placeholder {
            color: var(--brand-muted);
            font-size: 0.78rem;
        }

        .user-avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background-color: var(--brand-slot);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--brand-muted);
            cursor: pointer;
            transition: var(--transition-base);
        }

        .user-avatar:hover {
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
            box-shadow: var(--shadow-cyan-glow);
        }

        /* Channel Row */
        .channel-row {
            background: rgba(13, 15, 22, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 8px 0;
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .channel-nav::-webkit-scrollbar {
            display: none;
        }

        .channel-nav a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--brand-text);
            white-space: nowrap;
            letter-spacing: 0.3px;
            transition: var(--transition-base);
            position: relative;
        }

        .channel-nav a:hover {
            color: var(--brand-cyan);
            background-color: rgba(0, 229, 255, 0.06);
        }

        .channel-nav a.active {
            color: var(--brand-cyan);
            background-color: rgba(0, 229, 255, 0.1);
            font-weight: 600;
            box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.25);
        }

        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -9px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--brand-cyan);
            border-radius: 3px 3px 0 0;
        }

        /* ============ HERO ============ */
        .hero-schedule {
            position: relative;
            padding: 64px 0 60px;
            background-color: var(--brand-bg);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero-schedule::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 15, 22, 0.72) 0%, rgba(13, 15, 22, 0.88) 60%, rgba(13, 15, 22, 0.96) 100%);
            z-index: 1;
        }

        .hero-schedule .hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .hero-text {
            flex: 1 1 380px;
            max-width: 560px;
        }

        .hero-badge {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(0, 229, 255, 0.12);
            border: 1px solid rgba(0, 229, 255, 0.3);
            border-radius: var(--radius-full);
            font-size: 0.78rem;
            color: var(--brand-cyan);
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--brand-white);
            line-height: 1.25;
            letter-spacing: 0.6px;
            margin-bottom: 12px;
        }

        .hero-text h1 .highlight {
            background: linear-gradient(135deg, var(--brand-cyan), var(--brand-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .hero-subtitle {
            font-size: 1.05rem;
            color: var(--brand-text);
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 460px;
        }

        .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 22px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep-purple));
            color: #fff;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 0.92rem;
            letter-spacing: 0.4px;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: 0 4px 16px rgba(160, 32, 240, 0.3);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #C060FF, #8A30FF);
            box-shadow: 0 8px 28px rgba(160, 32, 240, 0.45);
            transform: translateY(-2px);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 22px;
            background: transparent;
            color: var(--brand-cyan);
            border: 1.5px solid var(--brand-cyan);
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 0.92rem;
            letter-spacing: 0.4px;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: rgba(0, 229, 255, 0.08);
            box-shadow: 0 6px 20px rgba(0, 229, 255, 0.2);
            transform: translateY(-2px);
        }

        .hero-data-cards {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            flex: 0 0 auto;
        }

        .hero-data-mini {
            background: var(--brand-slot);
            border: 1px solid rgba(160, 32, 240, 0.3);
            border-radius: var(--radius-2xl);
            padding: 18px 20px;
            min-width: 100px;
            text-align: center;
            backdrop-filter: blur(6px);
            transition: var(--transition-base);
        }

        .hero-data-mini:hover {
            border-color: var(--brand-cyan);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }

        .hero-data-mini .data-num {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-cyan);
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: 0.5px;
            line-height: 1.1;
        }

        .hero-data-mini .data-label {
            font-size: 0.72rem;
            color: var(--brand-muted);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        /* ============ METRICS STRIP ============ */
        .metrics-strip {
            padding: 28px 0;
            background-color: var(--brand-card);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .metrics-scroll {
            display: flex;
            gap: 28px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 4px 0;
            justify-content: space-between;
            flex-wrap: nowrap;
        }

        .metrics-scroll::-webkit-scrollbar {
            display: none;
        }

        .metric-item {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .metric-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .metric-icon.purple {
            background: rgba(160, 32, 240, 0.18);
            color: #C4B5FD;
        }
        .metric-icon.cyan {
            background: rgba(0, 229, 255, 0.15);
            color: var(--brand-cyan);
        }
        .metric-icon.green {
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
        }
        .metric-icon.amber {
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
        }
        .metric-icon.rose {
            background: rgba(244, 63, 94, 0.15);
            color: #fb7185;
        }

        .metric-info .metric-val {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--brand-white);
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: 0.3px;
        }
        .metric-info .metric-lbl {
            font-size: 0.7rem;
            color: var(--brand-muted);
            letter-spacing: 0.2px;
        }

        /* ============ SECTION TITLES ============ */
        .section-title-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
        }
        .section-title-bar {
            width: 4px;
            height: 28px;
            background: var(--brand-cyan);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .section-title-wrap h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--brand-white);
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        /* ============ SCHEDULE TABLE AREA ============ */
        .schedule-layout {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .schedule-filters {
            flex: 0 0 220px;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 140px;
        }

        .schedule-filters h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--brand-white);
            margin-bottom: 6px;
            letter-spacing: 0.4px;
        }

        .filter-group {
            margin-bottom: 18px;
        }
        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-group .filter-label {
            font-size: 0.72rem;
            color: var(--brand-muted);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
            display: block;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .filter-tag {
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 0.76rem;
            cursor: pointer;
            transition: var(--transition-base);
            background: var(--brand-slot);
            color: var(--brand-text);
            border: 1px solid transparent;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .filter-tag:hover {
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
        }
        .filter-tag.active-filter {
            background: rgba(0, 229, 255, 0.13);
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
            font-weight: 600;
        }

        .schedule-table-wrap {
            flex: 1 1 auto;
            min-width: 0;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }

        .schedule-table thead th {
            background: var(--brand-slot);
            color: var(--brand-muted);
            font-weight: 600;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 13px 14px;
            text-align: left;
            white-space: nowrap;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .schedule-table tbody tr {
            transition: var(--transition-base);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .schedule-table tbody tr:nth-child(even) {
            background: var(--brand-slot);
        }
        .schedule-table tbody tr:hover {
            background: rgba(160, 32, 240, 0.06);
        }
        .schedule-table tbody tr.row-live {
            border-left: 3px solid var(--brand-cyan);
        }
        .schedule-table tbody td {
            padding: 12px 14px;
            color: var(--brand-text);
            vertical-align: middle;
            white-space: nowrap;
        }
        .schedule-table .game-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2px;
            background: rgba(160, 32, 240, 0.15);
            color: #C4B5FD;
        }
        .schedule-table .status-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #4ade80;
            font-weight: 600;
            font-size: 0.78rem;
        }
        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #4ade80;
            animation: pulse-dot 1.4s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
            }
        }
        .schedule-table .status-upcoming {
            color: #fbbf24;
            font-weight: 500;
            font-size: 0.78rem;
        }
        .schedule-table .status-done {
            color: var(--brand-muted);
            font-size: 0.78rem;
        }
        .schedule-table .team-cell {
            font-weight: 600;
            color: var(--brand-white);
            letter-spacing: 0.3px;
        }
        .btn-remind-sm {
            display: inline-block;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2px;
            cursor: pointer;
            transition: var(--transition-base);
            background: transparent;
            border: 1px solid var(--brand-cyan);
            color: var(--brand-cyan);
            white-space: nowrap;
        }
        .btn-remind-sm:hover {
            background: rgba(0, 229, 255, 0.1);
            box-shadow: 0 3px 10px rgba(0, 229, 255, 0.18);
        }

        .load-more-wrap {
            text-align: center;
            padding: 20px;
        }
        .btn-load-more {
            padding: 10px 28px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: var(--transition-base);
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: var(--brand-text);
        }
        .btn-load-more:hover {
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
            background: rgba(0, 229, 255, 0.05);
        }

        /* ============ FEATURES ============ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .feature-card {
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 24px 20px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: var(--transition-base);
            text-align: center;
        }
        .feature-card:hover {
            border-color: rgba(160, 32, 240, 0.35);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }
        .feature-icon-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.3rem;
        }
        .feature-icon-circle.purple-glow {
            background: rgba(160, 32, 240, 0.2);
            color: #C4B5FD;
            box-shadow: 0 0 18px rgba(160, 32, 240, 0.25);
        }
        .feature-icon-circle.cyan-glow {
            background: rgba(0, 229, 255, 0.18);
            color: var(--brand-cyan);
            box-shadow: 0 0 18px rgba(0, 229, 255, 0.2);
        }
        .feature-icon-circle.green-glow {
            background: rgba(34, 197, 94, 0.18);
            color: #4ade80;
            box-shadow: 0 0 18px rgba(34, 197, 94, 0.2);
        }
        .feature-icon-circle.amber-glow {
            background: rgba(251, 191, 36, 0.18);
            color: #fbbf24;
            box-shadow: 0 0 18px rgba(251, 191, 36, 0.2);
        }
        .feature-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--brand-white);
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }
        .feature-card p {
            font-size: 0.82rem;
            color: var(--brand-muted);
            line-height: 1.5;
        }

        /* ============ REVIEWS ============ */
        .reviews-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 8px 2px 16px;
        }
        .reviews-scroll::-webkit-scrollbar {
            display: none;
        }
        .review-card {
            flex: 0 0 320px;
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: var(--transition-base);
        }
        .review-card:hover {
            border-color: rgba(160, 32, 240, 0.3);
            box-shadow: var(--shadow-glow);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--brand-slot);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-cyan);
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            color: var(--brand-white);
            font-size: 0.88rem;
        }
        .review-tag {
            font-size: 0.68rem;
            color: var(--brand-muted);
        }
        .review-stars {
            color: #fbbf24;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }
        .review-body {
            font-size: 0.82rem;
            color: var(--brand-text);
            line-height: 1.55;
            margin-bottom: 8px;
        }
        .review-time {
            font-size: 0.68rem;
            color: var(--brand-muted);
        }

        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--brand-card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: var(--transition-base);
        }
        .faq-item:hover {
            border-color: rgba(160, 32, 240, 0.25);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            background: transparent;
            color: var(--brand-white);
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border: none;
            transition: var(--transition-base);
        }
        .faq-question:hover {
            color: var(--brand-cyan);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--brand-slot);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--brand-cyan);
            transition: var(--transition-base);
        }
        .faq-answer {
            padding: 0 20px 16px;
            font-size: 0.82rem;
            color: var(--brand-text);
            line-height: 1.6;
            display: none;
            letter-spacing: 0.2px;
        }
        .faq-item.open .faq-answer {
            display: block;
            background: var(--brand-slot);
            margin: 0 8px 8px;
            border-radius: var(--radius-xl);
            padding: 14px 18px;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 229, 255, 0.15);
        }

        /* ============ CTA BANNER ============ */
        .cta-banner {
            background: linear-gradient(135deg, var(--brand-card), var(--brand-slot));
            border-radius: var(--radius-2xl);
            padding: 44px 32px;
            text-align: center;
            border: 1px solid rgba(160, 32, 240, 0.25);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(160, 32, 240, 0.1);
            pointer-events: none;
        }
        .cta-banner h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand-white);
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            color: var(--brand-text);
            margin: 10px 0 20px;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }
        .subscribe-row {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .subscribe-row input {
            padding: 11px 18px;
            border-radius: var(--radius-full);
            background: var(--brand-slot);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--brand-white);
            font-size: 0.88rem;
            min-width: 240px;
            letter-spacing: 0.3px;
        }
        .subscribe-row input:focus {
            border-color: var(--brand-cyan);
            box-shadow: var(--shadow-cyan-glow);
        }
        .subscribe-row input::placeholder {
            color: var(--brand-muted);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background-color: var(--brand-bg);
            border-top: 1px solid transparent;
            position: relative;
            padding: 40px 0 24px;
        }
        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brand-purple), var(--brand-cyan), transparent);
            opacity: 0.5;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--brand-white);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            display: block;
            font-size: 0.8rem;
            color: var(--brand-muted);
            padding: 4px 0;
            transition: var(--transition-base);
        }
        .footer-col a:hover {
            color: var(--brand-cyan);
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.72rem;
            color: var(--brand-muted);
            line-height: 1.8;
            letter-spacing: 0.2px;
        }
        .footer-bottom a {
            color: var(--brand-muted);
            transition: var(--transition-base);
        }
        .footer-bottom a:hover {
            color: var(--brand-cyan);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            .schedule-layout {
                flex-direction: column;
            }
            .schedule-filters {
                flex: 0 0 auto;
                position: static;
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                padding: 14px 16px;
            }
            .schedule-filters .filter-group {
                margin-bottom: 0;
                flex: 1 1 auto;
                min-width: 120px;
            }
            .hero-data-cards {
                justify-content: center;
                width: 100%;
            }
            .hero-inner {
                flex-direction: column;
                text-align: center;
            }
            .hero-text {
                max-width: 100%;
            }
            .hero-subtitle {
                max-width: 100%;
                margin: 0 auto 24px;
            }
            .hero-cta-group {
                justify-content: center;
            }
            .brand-slogan {
                display: none;
            }
            .time-stamp {
                font-size: 0.66rem;
            }
            .search-box input {
                width: 100px;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .hero-schedule {
                padding: 40px 0 36px;
            }
            .hero-data-mini {
                min-width: 70px;
                padding: 12px 14px;
            }
            .hero-data-mini .data-num {
                font-size: 1.4rem;
            }
            .schedule-table {
                font-size: 0.72rem;
            }
            .schedule-table thead th,
            .schedule-table tbody td {
                padding: 8px 8px;
            }
            .schedule-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .schedule-table {
                min-width: 700px;
            }
            .review-card {
                flex: 0 0 270px;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .cta-banner {
                padding: 28px 16px;
            }
            .cta-banner h3 {
                font-size: 1.2rem;
            }
            .subscribe-row input {
                min-width: 180px;
            }
            .brand-row {
                gap: 6px;
            }
            .brand-logo {
                font-size: 1.1rem;
            }
            .channel-nav a {
                padding: 6px 10px;
                font-size: 0.76rem;
            }
            .metrics-scroll {
                gap: 16px;
            }
        }

        @media (max-width: 520px) {
            .hero-text h1 {
                font-size: 1.35rem;
            }
            .hero-subtitle {
                font-size: 0.88rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            .hero-data-cards {
                gap: 8px;
            }
            .hero-data-mini {
                min-width: 60px;
                padding: 10px 10px;
            }
            .hero-data-mini .data-num {
                font-size: 1.2rem;
            }
            .hero-data-mini .data-label {
                font-size: 0.64rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .review-card {
                flex: 0 0 240px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .brand-actions {
                gap: 6px;
            }
            .search-box input {
                width: 70px;
                font-size: 0.7rem;
            }
            .time-stamp {
                font-size: 0.6rem;
            }
            .section-title-wrap h2 {
                font-size: 1.25rem;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #A020F0;
            --primary-light: #C060FF;
            --primary-dark: #6C00FF;
            --accent: #00E5FF;
            --dark-bg: #0D0F16;
            --card-bg: #161822;
            --content-bg: #1E2030;
            --text-main: #FFFFFF;
            --text-body: #B0B7C3;
            --text-muted: #6B7280;
            --border-subtle: #2A2D3A;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-full: 9999px;
            --shadow-card: 0px 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0px 8px 24px rgba(160, 32, 240, 0.18);
            --shadow-accent: 0px 6px 20px rgba(0, 229, 255, 0.12);
            --transition-fast: 0.15s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-body);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
            background: none;
        }
        button {
            cursor: pointer;
        }
        input {
            color: var(--text-main);
        }

        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            background-color: var(--dark-bg);
            border-bottom: 1px solid transparent;
            border-image: linear-gradient(90deg, #A020F0 0%, #00E5FF 50%, #A020F0 100%) 1;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .brand-logo:hover {
            color: var(--accent);
        }
        .logo-icon {
            font-size: 1.4rem;
            color: var(--accent);
            animation: bolt-pulse 2s ease-in-out infinite;
        }
        @keyframes bolt-pulse {
            0%,
            100% {
                text-shadow: 0 0 6px rgba(0, 229, 255, 0.5);
            }
            50% {
                text-shadow: 0 0 18px rgba(0, 229, 255, 0.9);
            }
        }
        .brand-slogan {
            font-size: 0.85rem;
            color: var(--text-muted);
            white-space: nowrap;
            letter-spacing: 1px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }
        .time-stamp {
            font-size: 0.78rem;
            color: var(--text-muted);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
        }
        .search-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--content-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-full);
            padding: 0.45rem 0.9rem;
            transition: all var(--transition-smooth);
        }
        .search-box:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
        }
        .search-box i {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .search-box input {
            font-size: 0.85rem;
            color: var(--text-main);
            background: transparent;
            width: 140px;
            transition: width var(--transition-smooth);
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box input:focus {
            width: 180px;
        }
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--content-bg);
            border: 2px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition-smooth);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .user-avatar:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: var(--shadow-accent);
        }

        /* Channel Row */
        .channel-row {
            background: rgba(13, 15, 22, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(42, 45, 58, 0.5);
            padding: 0.5rem 0;
        }
        .channel-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .channel-nav a {
            display: inline-block;
            padding: 0.5rem 1.1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-body);
            border-radius: var(--radius-full);
            transition: all var(--transition-smooth);
            position: relative;
            letter-spacing: 0.3px;
        }
        .channel-nav a:hover {
            color: var(--accent);
            background: rgba(0, 229, 255, 0.06);
        }
        .channel-nav a.active {
            color: var(--accent);
            font-weight: 600;
            background: rgba(0, 229, 255, 0.08);
            box-shadow: inset 0 -2px 0 0 var(--accent);
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            position: relative;
            padding: 4rem 0 3.5rem;
            background:
                linear-gradient(180deg, rgba(13, 15, 22, 0.65) 0%, rgba(13, 15, 22, 0.92) 100%),
                url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            background-blend-mode: overlay;
            min-height: 380px;
            display: flex;
            align-items: center;
        }
        .page-hero .hero-inner {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 720px;
        }
        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(160, 32, 240, 0.2);
            border: 1px solid rgba(160, 32, 240, 0.4);
            color: #C4B5FD;
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-full);
            width: fit-content;
            letter-spacing: 0.5px;
        }
        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.25;
            letter-spacing: 0.5px;
        }
        .page-hero h1 .accent-text {
            color: var(--accent);
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
        }
        .page-hero .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            line-height: 1.6;
            max-width: 560px;
        }
        .page-hero .hero-search-row {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }
        .hero-search-input-wrap {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--content-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 0.7rem 1.1rem;
            flex: 1;
            min-width: 240px;
            transition: all var(--transition-smooth);
        }
        .hero-search-input-wrap:focus-within {
            border-color: var(--primary);
            box-shadow: var(--shadow-glow);
        }
        .hero-search-input-wrap i {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .hero-search-input-wrap input {
            flex: 1;
            font-size: 0.95rem;
            color: var(--text-main);
            background: transparent;
        }
        .hero-search-input-wrap input::placeholder {
            color: var(--text-muted);
        }
        .btn-primary-lg {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #A020F0 0%, #6C00FF 100%);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.7rem 1.5rem;
            border-radius: var(--radius-xl);
            white-space: nowrap;
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
        }
        .btn-primary-lg:hover {
            background: linear-gradient(135deg, #C060FF 0%, #8B30FF 100%);
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
        }

        /* ========== GAME FILTER TAGS ========== */
        .filter-tags-bar {
            padding: 1.5rem 0;
            background: var(--card-bg);
            border-bottom: 1px solid var(--border-subtle);
        }
        .filter-tags-wrap {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .filter-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-right: 0.3rem;
            white-space: nowrap;
        }
        .filter-tag {
            display: inline-block;
            padding: 0.45rem 1rem;
            font-size: 0.84rem;
            font-weight: 500;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-full);
            color: var(--text-body);
            cursor: pointer;
            transition: all var(--transition-smooth);
            background: transparent;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .filter-tag:hover {
            border-color: var(--primary-light);
            color: #C4B5FD;
            background: rgba(160, 32, 240, 0.08);
        }
        .filter-tag.active {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(0, 229, 255, 0.1);
            font-weight: 600;
            box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
        }

        /* ========== STATS BANNER ========== */
        .stats-banner {
            padding: 2.5rem 0;
            background: var(--dark-bg);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
        }
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .stat-card-mini {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 1.1rem 1rem;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card-mini::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--accent);
            border-radius: 0 0 4px 4px;
            opacity: 0.6;
            transition: width var(--transition-smooth);
        }
        .stat-card-mini:hover::before {
            width: 60px;
            opacity: 1;
        }
        .stat-card-mini:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .stat-label-mini {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
            letter-spacing: 0.3px;
        }

        /* ========== TEAM CARDS GRID ========== */
        .team-cards-section {
            padding: 3rem 0 4rem;
            background: var(--dark-bg);
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            letter-spacing: 0.5px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 28px;
            background: var(--accent);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .section-count {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1200px) {
            .team-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .team-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .team-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        .team-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .team-card:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }
        .team-card-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--content-bg);
        }
        .team-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .team-card:hover .team-card-img-wrap img {
            transform: scale(1.06);
        }
        .team-card-rank-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background: rgba(13, 15, 22, 0.85);
            backdrop-filter: blur(6px);
            color: var(--accent);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.3rem 0.65rem;
            border-radius: var(--radius-full);
            letter-spacing: 0.5px;
            z-index: 2;
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        .team-card-game-tag {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: rgba(160, 32, 240, 0.75);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.25rem 0.6rem;
            border-radius: var(--radius-full);
            z-index: 2;
            letter-spacing: 0.3px;
        }
        .team-card-body {
            padding: 1rem 1.1rem 1.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            flex: 1;
        }
        .team-card-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 0.4px;
        }
        .team-card-region {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .team-card-region i {
            font-size: 0.7rem;
            color: var(--accent);
        }
        .team-card-stats-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
        }
        .winrate-ring {
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }
        .winrate-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 3px solid var(--border-subtle);
            position: relative;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--accent);
            background: conic-gradient(var(--accent) var(--winrate-pct, 65%), transparent var(--winrate-pct, 65%));
            -webkit-mask: radial-gradient(transparent 58%, #000 60%);
            mask: radial-gradient(transparent 58%, #000 60%);
        }
        .winrate-circle-inner {
            position: absolute;
            inset: 3px;
            border-radius: 50%;
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--accent);
            z-index: 1;
        }
        .winrate-text {
            font-size: 0.78rem;
            color: var(--text-body);
        }
        .winrate-text strong {
            color: var(--accent);
            font-size: 0.9rem;
        }
        .team-card-players {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
        }
        .player-chip {
            display: inline-block;
            background: rgba(160, 32, 240, 0.12);
            color: #C4B5FD;
            padding: 0.2rem 0.55rem;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            letter-spacing: 0.2px;
        }
        .btn-follow-sm {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            border: 1px solid rgba(0, 229, 255, 0.4);
            padding: 0.4rem 0.9rem;
            border-radius: var(--radius-full);
            transition: all var(--transition-smooth);
            background: transparent;
            letter-spacing: 0.3px;
            cursor: pointer;
        }
        .btn-follow-sm:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: var(--accent);
            box-shadow: var(--shadow-accent);
        }
        .btn-follow-sm.followed {
            background: rgba(0, 229, 255, 0.15);
            border-color: var(--accent);
            color: var(--accent);
        }

        /* ========== INSIGHT BANNER ========== */
        .insight-banner {
            padding: 2.5rem 0;
            background: var(--card-bg);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .insight-inner {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
        }
        .insight-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
        }
        .insight-icon {
            font-size: 1.5rem;
            color: var(--accent);
        }
        .insight-num {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-main);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
        }
        .insight-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 0.4px;
        }

        /* ========== REVIEWS ========== */
        .reviews-section {
            padding: 3.5rem 0;
            background: var(--dark-bg);
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 1.3rem 1.2rem;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }
        .review-card:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-glow);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }
        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--content-bg);
            border: 2px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .review-meta {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }
        .review-name {
            font-weight: 600;
            color: var(--text-main);
            font-size: 0.9rem;
        }
        .review-tag {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .review-stars {
            color: #F5A623;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.55;
        }
        .review-date {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 3.5rem 0;
            background: var(--card-bg);
            border-top: 1px solid var(--border-subtle);
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--content-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item.active {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-glow);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.2rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-main);
            font-size: 0.95rem;
            gap: 1rem;
            letter-spacing: 0.3px;
            user-select: none;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--accent);
        }
        .faq-icon {
            font-size: 1rem;
            color: var(--accent);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.2rem;
            color: var(--text-body);
            font-size: 0.88rem;
            line-height: 1.65;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 1.2rem 1rem;
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: 3.5rem 0;
            background:
                linear-gradient(180deg, rgba(13, 15, 22, 0.7) 0%, rgba(13, 15, 22, 0.95) 100%),
                url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
            background-blend-mode: overlay;
            text-align: center;
        }
        .cta-inner {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 0.5px;
        }
        .cta-subtitle {
            font-size: 1rem;
            color: var(--text-body);
        }
        .cta-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 0.5rem;
        }
        .cta-input {
            padding: 0.7rem 1.1rem;
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-subtle);
            background: var(--content-bg);
            color: var(--text-main);
            font-size: 0.9rem;
            min-width: 240px;
            transition: all var(--transition-smooth);
        }
        .cta-input:focus {
            border-color: var(--accent);
            box-shadow: var(--shadow-accent);
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #A020F0 0%, #6C00FF 100%);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.7rem 1.6rem;
            border-radius: var(--radius-xl);
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
            cursor: pointer;
            border: none;
        }
        .btn-cta:hover {
            background: linear-gradient(135deg, #C060FF 0%, #8B30FF 100%);
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--dark-bg);
            border-top: 2px solid transparent;
            border-image: linear-gradient(90deg, #A020F0 0%, #00E5FF 50%, #A020F0 100%) 1;
            padding: 3rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.8rem;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            font-size: 0.82rem;
            color: var(--text-muted);
            padding: 0.3rem 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-subtle);
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ========== RESPONSIVE OVERRIDES ========== */
        @media (max-width: 1024px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            .brand-slogan {
                display: none;
            }
            .time-stamp {
                font-size: 0.7rem;
            }
            .search-box input {
                width: 100px;
            }
            .search-box input:focus {
                width: 130px;
            }
        }
        @media (max-width: 768px) {
            .brand-row {
                flex-wrap: wrap;
                gap: 0.5rem;
                padding: 0.6rem 0;
            }
            .brand-actions {
                gap: 0.5rem;
                flex-wrap: wrap;
            }
            .time-stamp {
                display: none;
            }
            .search-box input {
                width: 80px;
            }
            .search-box input:focus {
                width: 110px;
            }
            .page-hero {
                padding: 2.5rem 0;
                min-height: 280px;
            }
            .page-hero h1 {
                font-size: 1.6rem;
            }
            .page-hero .hero-subtitle {
                font-size: 0.9rem;
            }
            .channel-nav a {
                padding: 0.4rem 0.75rem;
                font-size: 0.78rem;
            }
            .stat-card-mini {
                padding: 0.8rem 0.6rem;
            }
            .stat-value {
                font-size: 1.3rem;
            }
            .cta-title {
                font-size: 1.4rem;
            }
            .section-title {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 520px) {
            .brand-logo {
                font-size: 1.1rem;
            }
            .logo-icon {
                font-size: 1.1rem;
            }
            .page-hero h1 {
                font-size: 1.35rem;
            }
            .hero-search-input-wrap {
                min-width: 100%;
            }
            .btn-primary-lg {
                width: 100%;
                justify-content: center;
            }
            .filter-tag {
                font-size: 0.75rem;
                padding: 0.35rem 0.7rem;
            }
            .team-card-name {
                font-size: 0.95rem;
            }
        }

/* roulang page: category3 */
:root {
            --color-primary: #A020F0;
            --color-primary-light: #C060FF;
            --color-primary-dark: #6C00FF;
            --color-accent: #00E5FF;
            --color-accent-glow: rgba(0, 229, 255, 0.4);
            --color-bg-deep: #0D0F16;
            --color-bg-card: #161822;
            --color-bg-surface: #1E2030;
            --color-bg-hover: #252840;
            --color-text-primary: #FFFFFF;
            --color-text-body: #B0B7C3;
            --color-text-muted: #6B7280;
            --color-text-accent: #C4B5FD;
            --color-border: rgba(160, 32, 240, 0.25);
            --color-border-accent: rgba(0, 229, 255, 0.35);
            --color-success: #10B981;
            --color-warning: #F59E0B;
            --color-danger: #EF4444;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-2xl: 24px;
            --radius-full: 9999px;
            --shadow-card: 0px 4px 16px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0px 6px 28px rgba(160, 32, 240, 0.2);
            --shadow-accent-glow: 0px 4px 20px rgba(0, 229, 255, 0.18);
            --spacing-xs: 8px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-2xl: 64px;
            --spacing-3xl: 80px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s ease;
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            background-color: var(--color-bg-deep);
            color: var(--color-text-body);
            line-height: 1.65;
            min-height: 100vh;
            letter-spacing: 0.2px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all var(--transition-fast);
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        input:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        @media (min-width: 1440px) {
            .container {
                max-width: 1360px;
            }
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--color-bg-deep);
            border-bottom: 1px solid transparent;
            border-image: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary-dark)) 1;
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            gap: var(--spacing-md);
            flex-wrap: wrap;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-text-primary);
            letter-spacing: 0.6px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .brand-logo:hover {
            color: var(--color-accent);
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            border-radius: var(--radius-md);
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 0 16px rgba(160, 32, 240, 0.35);
        }

        .brand-slogan {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            letter-spacing: 1px;
            white-space: nowrap;
            display: none;
        }

        @media (min-width: 768px) {
            .brand-slogan {
                display: inline;
            }
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            flex-shrink: 0;
        }

        .time-stamp {
            font-size: 0.72rem;
            color: var(--color-text-muted);
            font-family: var(--font-mono);
            letter-spacing: 0.3px;
            display: none;
        }

        @media (min-width: 1024px) {
            .time-stamp {
                display: inline;
            }
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-full);
            padding: 7px 14px;
            transition: all var(--transition-fast);
            min-width: 160px;
        }

        .search-box:hover,
        .search-box:focus-within {
            border-color: var(--color-accent);
            box-shadow: 0 0 12px rgba(0, 229, 255, 0.12);
        }

        .search-box i {
            color: var(--color-text-muted);
            font-size: 0.85rem;
        }

        .search-box input {
            background: transparent;
            color: var(--color-text-primary);
            font-size: 0.82rem;
            width: 100%;
            min-width: 80px;
        }

        .search-box input::placeholder {
            color: var(--color-text-muted);
        }

        .user-avatar {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            color: var(--color-text-muted);
            cursor: pointer;
            transition: all var(--transition-fast);
            font-size: 0.9rem;
        }

        .user-avatar:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
        }

        .channel-row {
            background: rgba(13, 15, 22, 0.82);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 2px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 0;
        }

        .channel-nav::-webkit-scrollbar {
            display: none;
        }

        .channel-nav a {
            display: inline-block;
            padding: 11px 18px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--color-text-body);
            border-radius: var(--radius-sm);
            white-space: nowrap;
            position: relative;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }

        .channel-nav a:hover {
            color: var(--color-accent);
            background: rgba(0, 229, 255, 0.04);
        }

        .channel-nav a.active {
            color: var(--color-accent);
            font-weight: 600;
        }

        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 18px;
            right: 18px;
            height: 2.5px;
            background: var(--color-accent);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--color-accent-glow);
        }

        /* ========== HERO ========== */
        .score-hero {
            position: relative;
            padding: var(--spacing-2xl) 0 var(--spacing-xl);
            background: linear-gradient(180deg, rgba(13, 15, 22, 0.3) 0%, var(--color-bg-deep) 100%),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-blend-mode: overlay;
            min-height: 380px;
            display: flex;
            align-items: center;
        }

        .score-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(160, 32, 240, 0.18) 0%, transparent 65%),
                radial-gradient(ellipse at 30% 60%, rgba(0, 229, 255, 0.09) 0%, transparent 55%);
            pointer-events: none;
        }

        .score-hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--spacing-md);
            max-width: 700px;
        }

        .score-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.3);
            color: var(--color-accent);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            letter-spacing: 0.4px;
            animation: pulse-badge 2.2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(0, 229, 255, 0.25);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
            }
        }

        .score-hero-badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-accent);
            animation: live-pulse 1s ease-in-out infinite;
        }

        @keyframes live-pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.6);
            }
        }

        .score-hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--color-text-primary);
            letter-spacing: 0.8px;
            line-height: 1.25;
        }

        .score-hero h1 span {
            background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .score-hero p {
            font-size: 1.05rem;
            color: var(--color-text-body);
            line-height: 1.7;
            max-width: 550px;
        }

        .score-hero-ctas {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius-lg);
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(160, 32, 240, 0.3);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
            box-shadow: 0 6px 24px rgba(160, 32, 240, 0.45);
            transform: translateY(-2px);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            border: 1.5px solid var(--color-accent);
            color: var(--color-accent);
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius-lg);
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: rgba(0, 229, 255, 0.08);
            border-color: #fff;
            color: #fff;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 0.8rem;
            border-radius: var(--radius-md);
            font-weight: 500;
            letter-spacing: 0.2px;
        }

        .btn-replay {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 16px;
            background: rgba(160, 32, 240, 0.12);
            border: 1px solid rgba(160, 32, 240, 0.35);
            color: var(--color-text-accent);
            font-size: 0.78rem;
            font-weight: 500;
            border-radius: var(--radius-full);
            transition: all var(--transition-fast);
        }

        .btn-replay:hover {
            background: rgba(160, 32, 240, 0.22);
            border-color: var(--color-primary-light);
            color: #fff;
            box-shadow: 0 0 14px rgba(160, 32, 240, 0.3);
        }

        /* ========== 数据指标带 ========== */
        .stats-ribbon {
            padding: var(--spacing-lg) 0;
            position: relative;
            z-index: 2;
            margin-top: -30px;
        }

        .stats-ribbon-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-sm);
        }

        @media (min-width: 640px) {
            .stats-ribbon-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        .stat-ribbon-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md) var(--spacing-sm);
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .stat-ribbon-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--color-accent);
            border-radius: 0 0 2px 2px;
            opacity: 0.6;
        }

        .stat-ribbon-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-accent-glow);
            transform: translateY(-3px);
            background: var(--color-bg-hover);
        }

        .stat-ribbon-value {
            font-family: var(--font-mono);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .stat-ribbon-label {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: var(--spacing-2xl) 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-lg);
            flex-wrap: wrap;
        }

        .section-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-text-primary);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-header h2::before {
            content: '';
            width: 4px;
            height: 26px;
            background: var(--color-accent);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--color-accent-glow);
        }

        .section-header .live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-accent);
            background: rgba(0, 229, 255, 0.08);
            padding: 5px 12px;
            border-radius: var(--radius-full);
            letter-spacing: 0.3px;
        }

        .section-header .live-indicator .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-accent);
            animation: live-pulse 1.2s ease-in-out infinite;
        }

        /* ========== 进行中比赛卡片 ========== */
        .live-match-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
        }

        @media (min-width: 768px) {
            .live-match-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1200px) {
            .live-match-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .live-match-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: var(--spacing-md);
            position: relative;
            transition: all var(--transition-smooth);
            overflow: hidden;
        }

        .live-match-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--color-accent);
            box-shadow: 0 0 12px var(--color-accent-glow);
            border-radius: 0 3px 3px 0;
        }

        .live-match-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-accent-glow);
            transform: translateY(-2px);
            background: var(--color-bg-hover);
        }

        .live-match-card .game-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--color-text-accent);
            background: rgba(160, 32, 240, 0.15);
            padding: 4px 10px;
            border-radius: var(--radius-full);
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }

        .live-match-card .tournament-name {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            margin-bottom: 8px;
            letter-spacing: 0.2px;
        }

        .live-match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 10px;
        }

        .live-match-team {
            text-align: center;
            flex: 1;
            min-width: 0;
        }

        .live-match-team .team-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .live-match-score {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-accent);
            letter-spacing: 1px;
            flex-shrink: 0;
            padding: 0 6px;
        }

        .live-match-vs {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            font-weight: 600;
            flex-shrink: 0;
        }

        .live-match-map {
            font-size: 0.7rem;
            color: var(--color-text-body);
            background: var(--color-bg-surface);
            padding: 5px 10px;
            border-radius: var(--radius-sm);
            text-align: center;
            margin-bottom: 8px;
            letter-spacing: 0.2px;
        }

        .live-match-progress {
            margin-top: 4px;
        }

        .progress-bar-wrap {
            background: var(--color-bg-surface);
            border-radius: var(--radius-full);
            height: 5px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
            border-radius: var(--radius-full);
            transition: width 1.5s ease;
            position: relative;
        }

        .progress-bar-fill::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 10px var(--color-accent-glow);
        }

        .live-match-status {
            font-size: 0.68rem;
            color: var(--color-accent);
            margin-top: 6px;
            letter-spacing: 0.3px;
            font-weight: 500;
        }

        /* ========== 已完结比赛列表 ========== */
        .finished-match-list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .finished-match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            background: var(--color-bg-card);
            border: 1px solid transparent;
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            transition: all var(--transition-fast);
        }

        .finished-match-row:hover {
            border-color: var(--color-border);
            background: var(--color-bg-hover);
            box-shadow: var(--shadow-card);
        }

        .finished-match-row .fm-game-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: var(--color-bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--color-text-accent);
            flex-shrink: 0;
        }

        .finished-match-row .fm-info {
            flex: 1;
            min-width: 140px;
        }

        .finished-match-row .fm-tournament {
            font-size: 0.7rem;
            color: var(--color-text-muted);
        }

        .finished-match-row .fm-teams {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text-primary);
        }

        .finished-match-row .fm-score-final {
            font-family: var(--font-mono);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-text-primary);
            flex-shrink: 0;
        }

        .finished-match-row .fm-winner-mark {
            color: var(--color-accent);
            font-weight: 700;
        }

        .finished-match-row .fm-duration {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            flex-shrink: 0;
        }

        .fm-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.68rem;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            background: rgba(16, 185, 129, 0.1);
            color: var(--color-success);
            border: 1px solid rgba(16, 185, 129, 0.25);
            flex-shrink: 0;
        }

        /* ========== 数据说明徽章（悬浮） ========== */
        .data-badge-float {
            position: fixed;
            bottom: 28px;
            right: 20px;
            z-index: 900;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-accent);
            border-radius: var(--radius-xl);
            padding: 12px 16px;
            box-shadow: var(--shadow-accent-glow);
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--color-accent);
        }

        .data-badge-float:hover {
            box-shadow: 0 6px 28px rgba(0, 229, 255, 0.3);
            transform: translateY(-2px);
            border-color: var(--color-accent);
        }

        .data-badge-float i {
            font-size: 1rem;
        }

        .data-badge-tooltip {
            position: absolute;
            bottom: 110%;
            right: 0;
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border-accent);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            width: 260px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
            transition: all var(--transition-smooth);
            font-size: 0.75rem;
            color: var(--color-text-body);
            line-height: 1.6;
        }

        .data-badge-float:hover .data-badge-tooltip {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .data-badge-tooltip strong {
            color: var(--color-accent);
            display: block;
            margin-bottom: 4px;
        }

        /* ========== 评论模块 ========== */
        .reviews-scroll {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-md);
        }

        @media (min-width: 640px) {
            .reviews-scroll {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .reviews-scroll {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .review-card {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: var(--spacing-md);
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .review-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-glow);
        }

        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .review-card .review-name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-text-primary);
        }

        .review-card .review-tag {
            font-size: 0.65rem;
            color: var(--color-text-muted);
            background: var(--color-bg-surface);
            padding: 2px 8px;
            border-radius: var(--radius-full);
        }

        .review-card .review-stars {
            color: var(--color-warning);
            font-size: 0.75rem;
            letter-spacing: 2px;
        }

        .review-card .review-text {
            font-size: 0.82rem;
            color: var(--color-text-body);
            line-height: 1.6;
        }

        .review-card .review-time {
            font-size: 0.65rem;
            color: var(--color-text-muted);
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
            max-width: 820px;
        }

        .faq-item {
            background: var(--color-bg-card);
            border: 1px solid transparent;
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--color-border);
        }

        .faq-item summary {
            padding: var(--spacing-md);
            cursor: pointer;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--color-text-primary);
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: color var(--transition-fast);
        }

        .faq-item summary:hover {
            color: var(--color-accent);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: var(--radius-full);
            background: var(--color-bg-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--color-accent);
            transition: all var(--transition-smooth);
        }

        .faq-item[open] summary .faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 229, 255, 0.12);
        }

        .faq-answer {
            padding: 0 var(--spacing-md) var(--spacing-md);
            font-size: 0.84rem;
            color: var(--color-text-body);
            line-height: 1.7;
        }

        /* ========== CTA Banner ========== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(160, 32, 240, 0.12), rgba(0, 229, 255, 0.06));
            border: 1px solid var(--color-border-accent);
            border-radius: var(--radius-2xl);
            padding: var(--spacing-xl) var(--spacing-lg);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(160, 32, 240, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-banner h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-primary);
            position: relative;
            z-index: 1;
        }

        .cta-banner p {
            color: var(--color-text-body);
            margin: 8px 0 var(--spacing-md);
            position: relative;
            z-index: 1;
        }

        .cta-subscribe {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .cta-subscribe input {
            padding: 12px 20px;
            border-radius: var(--radius-full);
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            color: var(--color-text-primary);
            font-size: 0.9rem;
            min-width: 240px;
            transition: all var(--transition-fast);
        }

        .cta-subscribe input:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 14px rgba(0, 229, 255, 0.15);
        }

        .cta-subscribe input::placeholder {
            color: var(--color-text-muted);
        }

        .cta-subscribe .btn-primary {
            border-radius: var(--radius-full);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-bg-deep);
            border-top: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary-dark)) 1;
            padding: var(--spacing-2xl) 0 var(--spacing-lg);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.4px;
        }

        .footer-col a {
            display: block;
            font-size: 0.78rem;
            color: var(--color-text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--color-accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: var(--spacing-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom p {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            margin: 3px 0;
            letter-spacing: 0.2px;
        }

        .footer-bottom a {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--color-accent);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .score-hero h1 {
                font-size: 1.8rem;
            }
            .score-hero p {
                font-size: 0.9rem;
            }
            .live-match-score {
                font-size: 1.5rem;
            }
            .section-header h2 {
                font-size: 1.35rem;
            }
            .stat-ribbon-value {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .brand-row {
                gap: var(--spacing-xs);
            }
            .brand-logo {
                font-size: 1.1rem;
            }
            .search-box {
                min-width: 120px;
                padding: 6px 10px;
            }
            .search-box input {
                font-size: 0.7rem;
                min-width: 50px;
            }
            .channel-nav a {
                padding: 9px 12px;
                font-size: 0.76rem;
            }
            .score-hero {
                min-height: 280px;
                padding: var(--spacing-xl) 0 var(--spacing-lg);
            }
            .score-hero h1 {
                font-size: 1.5rem;
            }
            .live-match-grid {
                grid-template-columns: 1fr;
            }
            .finished-match-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .finished-match-row .fm-score-final {
                font-size: 1.1rem;
            }
            .cta-banner {
                padding: var(--spacing-lg) var(--spacing-md);
            }
            .cta-banner h3 {
                font-size: 1.2rem;
            }
            .data-badge-float {
                bottom: 16px;
                right: 10px;
                padding: 10px 14px;
                font-size: 0.7rem;
            }
            .stats-ribbon-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 520px) {
            .brand-slogan {
                display: none;
            }
            .time-stamp {
                display: none;
            }
            .search-box {
                min-width: 90px;
            }
            .score-hero h1 {
                font-size: 1.3rem;
            }
            .score-hero p {
                font-size: 0.82rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 18px;
                font-size: 0.8rem;
            }
            .live-match-card .team-name {
                font-size: 0.75rem;
            }
            .live-match-score {
                font-size: 1.3rem;
            }
            .stats-ribbon-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .stat-ribbon-value {
                font-size: 1rem;
            }
            .stat-ribbon-label {
                font-size: 0.62rem;
            }
            .reviews-scroll {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            .cta-subscribe input {
                min-width: 160px;
                font-size: 0.8rem;
            }
        }

        /* 选中文本 */
        ::selection {
            background: rgba(160, 32, 240, 0.4);
            color: #fff;
        }

        /* 滚动条 */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--color-bg-deep);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--color-bg-surface);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-text-muted);
        }

/* roulang page: category4 */
:root {
            --color-brand-purple: #A020F0;
            --color-brand-purple-light: #C060FF;
            --color-brand-deep: #6C00FF;
            --color-brand-cyan: #00E5FF;
            --color-surface-dark: #0D0F16;
            --color-surface-card: #161822;
            --color-surface-slot: #1E2030;
            --color-text-body: #B0B7C3;
            --color-text-muted: #6B7280;
            --color-accent-glow: #C4B5FD;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-3xl: 1.25rem;
            --shadow-card: 0px 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0px 8px 24px rgba(160, 32, 240, 0.15);
            --shadow-cyan-glow: 0px 4px 20px rgba(0, 229, 255, 0.12);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            background-color: var(--color-surface-dark);
            color: var(--color-text-body);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--color-brand-cyan);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        @media (min-width: 768px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--color-surface-dark);
            border-bottom: 1px solid transparent;
            border-image: linear-gradient(90deg, transparent, var(--color-brand-cyan), transparent) 1;
            border-image-slice: 1;
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.35rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
            flex-shrink: 0;
        }
        .brand-logo:hover {
            color: var(--color-brand-cyan);
        }
        .logo-icon {
            color: var(--color-brand-cyan);
            font-size: 1.25rem;
            animation: pulse-glow 2s infinite;
        }
        @keyframes pulse-glow {
            0%,
            100% {
                text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
            }
            50% {
                text-shadow: 0 0 18px rgba(0, 229, 255, 0.8);
            }
        }

        .brand-slogan {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            letter-spacing: 1px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .time-stamp {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            letter-spacing: 0.3px;
            white-space: nowrap;
            display: none;
        }
        @media (min-width: 768px) {
            .time-stamp {
                display: inline;
            }
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--color-surface-slot);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-xl);
            padding: 0.45rem 0.85rem;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .search-box:focus-within {
            border-color: var(--color-brand-cyan);
            box-shadow: var(--shadow-cyan-glow);
        }
        .search-box i {
            color: var(--color-text-muted);
            font-size: 0.85rem;
        }
        .search-box input {
            background: transparent;
            color: #FFFFFF;
            font-size: 0.8rem;
            width: 120px;
            border: none;
            outline: none;
        }
        .search-box input::placeholder {
            color: var(--color-text-muted);
        }
        @media (min-width: 768px) {
            .search-box input {
                width: 160px;
            }
        }

        .user-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-brand-purple), var(--color-brand-deep));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }
        .user-avatar:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-1px);
        }

        /* 频道行 */
        .channel-row {
            background: rgba(13, 15, 22, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 0.15rem;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0.35rem 0;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .channel-nav a {
            display: inline-flex;
            align-items: center;
            padding: 0.55rem 1rem;
            font-size: 0.88rem;
            color: #CCCCCC;
            border-radius: var(--radius-xl);
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
            flex-shrink: 0;
            position: relative;
        }
        .channel-nav a:hover {
            color: var(--color-brand-cyan);
            background-color: rgba(0, 229, 255, 0.05);
        }
        .channel-nav a.active {
            color: #FFFFFF;
            font-weight: 600;
            background-color: rgba(160, 32, 240, 0.15);
        }
        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2.5px;
            background-color: var(--color-brand-cyan);
            border-radius: 2px;
        }

        @media (min-width: 768px) {
            .channel-nav {
                gap: 0.25rem;
                overflow-x: visible;
            }
            .channel-nav a {
                padding: 0.6rem 1.15rem;
                font-size: 0.9rem;
            }
        }

        /* ========== HERO ========== */
        .page-hero {
            position: relative;
            background: linear-gradient(180deg, rgba(13, 15, 22, 0.7) 0%, rgba(22, 24, 34, 0.85) 60%, var(--color-surface-dark) 100%), url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            padding: 3.5rem 0 3rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        @media (min-width: 768px) {
            .page-hero {
                padding: 5rem 0 4rem;
            }
        }
        .page-hero .hero-badge {
            display: inline-block;
            background: rgba(160, 32, 240, 0.2);
            color: var(--color-accent-glow);
            font-size: 0.78rem;
            font-weight: 500;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            border: 1px solid rgba(160, 32, 240, 0.25);
        }
        .page-hero h1 {
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            line-height: 1.25;
            margin-bottom: 0.75rem;
        }
        @media (min-width: 768px) {
            .page-hero h1 {
                font-size: 2.6rem;
            }
        }
        @media (min-width: 1024px) {
            .page-hero h1 {
                font-size: 3rem;
            }
        }
        .page-hero .hero-sub {
            font-size: 1rem;
            color: var(--color-text-body);
            max-width: 600px;
            margin: 0 auto 1.5rem;
            line-height: 1.6;
        }
        .page-hero .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        /* ========== BUTTONS ========== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            background: linear-gradient(135deg, var(--color-brand-purple), var(--color-brand-deep));
            color: #FFFFFF;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: var(--radius-xl);
            border: none;
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(160, 32, 240, 0.25);
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--color-brand-purple-light), var(--color-brand-purple));
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.5rem;
            background: transparent;
            color: #FFFFFF;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: var(--radius-xl);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-outline:hover {
            border-color: var(--color-brand-cyan);
            color: var(--color-brand-cyan);
            box-shadow: var(--shadow-cyan-glow);
            transform: translateY(-2px);
        }

        /* ========== 数据指标条 ========== */
        .metrics-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            padding: 1.5rem 0;
        }
        .metric-item {
            background: var(--color-surface-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-2xl);
            padding: 1rem 1.25rem;
            text-align: center;
            min-width: 100px;
            flex: 1 0 auto;
            max-width: 160px;
            transition: all var(--transition-fast);
        }
        .metric-item:hover {
            border-color: rgba(160, 32, 240, 0.3);
            box-shadow: var(--shadow-glow);
        }
        .metric-value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-brand-cyan);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'PingFang SC', monospace;
            letter-spacing: 0.5px;
        }
        .metric-label {
            font-size: 0.72rem;
            color: var(--color-text-muted);
            margin-top: 0.2rem;
            letter-spacing: 0.4px;
        }

        /* ========== 主内容区：时间轴 + 资讯流 ========== */
        .content-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2.5rem 0;
        }
        @media (min-width: 768px) {
            .content-layout {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
        @media (min-width: 1024px) {
            .content-layout {
                grid-template-columns: 340px 1fr;
                gap: 2.5rem;
                padding: 3.5rem 0;
            }
        }

        /* 时间轴面板 */
        .timeline-panel {
            background: var(--color-surface-card);
            border-radius: var(--radius-3xl);
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 130px;
            align-self: start;
            max-height: calc(100vh - 160px);
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(160, 32, 240, 0.3) transparent;
        }
        .timeline-panel::-webkit-scrollbar {
            width: 4px;
        }
        .timeline-panel::-webkit-scrollbar-track {
            background: transparent;
        }
        .timeline-panel::-webkit-scrollbar-thumb {
            background: rgba(160, 32, 240, 0.4);
            border-radius: 4px;
        }
        .timeline-panel h2 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1.25rem;
            position: relative;
            padding-left: 1rem;
            letter-spacing: 0.5px;
        }
        .timeline-panel h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            bottom: 2px;
            width: 3px;
            background: var(--color-brand-cyan);
            border-radius: 2px;
        }

        .timeline-list {
            position: relative;
            padding-left: 1.5rem;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: linear-gradient(180deg, var(--color-brand-purple), rgba(160, 32, 240, 0.2), var(--color-brand-deep));
            border-radius: 1px;
        }
        .timeline-item {
            position: relative;
            padding-bottom: 1.4rem;
            padding-left: 0.5rem;
            transition: all var(--transition-fast);
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -1.1rem;
            top: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--color-surface-slot);
            border: 2px solid var(--color-brand-purple);
            z-index: 1;
            transition: all var(--transition-fast);
        }
        .timeline-item:hover::before {
            border-color: var(--color-brand-cyan);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
            background: var(--color-brand-cyan);
        }
        .timeline-item .tl-game {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--color-brand-cyan);
            letter-spacing: 0.5px;
            margin-bottom: 0.15rem;
            text-transform: uppercase;
        }
        .timeline-item .tl-version {
            font-size: 0.95rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.1rem;
        }
        .timeline-item .tl-date {
            font-size: 0.72rem;
            color: var(--color-text-muted);
            margin-bottom: 0.2rem;
        }
        .timeline-item .tl-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin-top: 0.3rem;
        }
        .tl-tag {
            font-size: 0.65rem;
            padding: 0.15rem 0.55rem;
            border-radius: 999px;
            background: rgba(160, 32, 240, 0.18);
            color: var(--color-accent-glow);
            border: 1px solid rgba(160, 32, 240, 0.2);
            white-space: nowrap;
        }

        /* 资讯流面板 */
        .news-feed h2 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 1.25rem;
            position: relative;
            padding-left: 1rem;
            letter-spacing: 0.5px;
        }
        .news-feed h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            bottom: 2px;
            width: 3px;
            background: var(--color-brand-cyan);
            border-radius: 2px;
        }

        .news-card {
            background: var(--color-surface-card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 1.25rem;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        @media (min-width: 480px) {
            .news-card {
                flex-direction: row;
                align-items: stretch;
            }
        }
        .news-card:hover {
            border-color: rgba(160, 32, 240, 0.3);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }
        .news-card-img {
            flex-shrink: 0;
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        @media (min-width: 480px) {
            .news-card-img {
                width: 180px;
                height: auto;
                min-height: 100%;
            }
        }
        @media (min-width: 768px) {
            .news-card-img {
                width: 200px;
            }
        }
        .news-card-body {
            padding: 1rem 1.25rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }
        .news-card-body .nc-category {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--color-brand-cyan);
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
        }
        .news-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.4rem;
            line-height: 1.35;
            letter-spacing: 0.3px;
        }
        .news-card-body .nc-excerpt {
            font-size: 0.82rem;
            color: var(--color-text-body);
            line-height: 1.55;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card-body .nc-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.7rem;
            color: var(--color-text-muted);
            flex-wrap: wrap;
        }
        .nc-tag {
            font-size: 0.65rem;
            padding: 0.15rem 0.55rem;
            border-radius: 999px;
            background: rgba(0, 229, 255, 0.1);
            color: var(--color-brand-cyan);
            border: 1px solid rgba(0, 229, 255, 0.2);
            white-space: nowrap;
        }
        .nc-read-count {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .nc-read-count i {
            font-size: 0.65rem;
        }

        /* ========== 板块标题 ========== */
        .section-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            padding-left: 1rem;
            position: relative;
            margin-bottom: 1.5rem;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 3px;
            bottom: 3px;
            width: 3.5px;
            background: var(--color-brand-cyan);
            border-radius: 2px;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 1.55rem;
            }
        }

        /* ========== 热门标签云 ========== */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            padding: 1rem 0;
        }
        .tag-cloud a {
            font-size: 0.78rem;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            background: var(--color-surface-slot);
            color: var(--color-text-body);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .tag-cloud a:hover {
            border-color: var(--color-brand-cyan);
            color: var(--color-brand-cyan);
            background: rgba(0, 229, 255, 0.06);
            box-shadow: var(--shadow-cyan-glow);
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 2.5rem 0;
            background: var(--color-surface-card);
            border-radius: var(--radius-3xl);
            margin: 2rem 0;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }
        .faq-inner {
            padding: 0 1.5rem;
        }
        @media (min-width: 768px) {
            .faq-inner {
                padding: 0 2rem;
            }
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: transparent;
            color: #FFFFFF;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            cursor: pointer;
            border: none;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-brand-cyan);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-surface-slot);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: all var(--transition-fast);
            color: var(--color-text-muted);
        }
        .faq-question[aria-expanded="true"] .faq-icon {
            background: var(--color-brand-purple);
            color: #FFFFFF;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--color-surface-slot);
            border-radius: 0 0 var(--radius-xl) var(--radius-xl);
            color: var(--color-text-body);
            font-size: 0.85rem;
            line-height: 1.65;
        }
        .faq-answer.open {
            max-height: 300px;
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
        }

        /* ========== CTA横幅 ========== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(160, 32, 240, 0.2), rgba(108, 0, 255, 0.15), rgba(0, 229, 255, 0.08));
            border-radius: var(--radius-3xl);
            padding: 2.5rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(160, 32, 240, 0.2);
            margin: 2.5rem 0;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(0, 229, 255, 0.06);
            pointer-events: none;
        }
        .cta-banner h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            font-size: 0.95rem;
            color: var(--color-text-body);
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 1;
        }
        .cta-subscribe {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        .cta-subscribe input {
            padding: 0.65rem 1rem;
            border-radius: var(--radius-xl);
            background: var(--color-surface-slot);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #FFFFFF;
            font-size: 0.85rem;
            min-width: 220px;
            transition: border-color var(--transition-fast);
        }
        .cta-subscribe input:focus {
            border-color: var(--color-brand-cyan);
            box-shadow: var(--shadow-cyan-glow);
        }
        .cta-subscribe input::placeholder {
            color: var(--color-text-muted);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-surface-dark);
            border-top: 2px solid;
            border-image: linear-gradient(90deg, transparent, var(--color-brand-purple), var(--color-brand-cyan), transparent) 1;
            border-image-slice: 1;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.75rem;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            font-size: 0.78rem;
            color: var(--color-text-muted);
            padding: 0.25rem 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--color-brand-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.72rem;
            color: var(--color-text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--color-brand-cyan);
        }
        .footer-bottom p {
            margin: 0.15rem 0;
        }

        /* ========== 板块间距 ========== */
        .section-spacing {
            padding: 2.5rem 0;
        }
        @media (min-width: 768px) {
            .section-spacing {
                padding: 3.5rem 0;
            }
        }

        /* ========== 动画 ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-in {
            animation: fadeInUp 0.5s ease forwards;
        }

        /* ========== 移动端横滚导航 ========== */
        @media (max-width: 767px) {
            .channel-nav {
                padding: 0.3rem 0;
                gap: 0;
            }
            .channel-nav a {
                padding: 0.45rem 0.7rem;
                font-size: 0.78rem;
            }
            .brand-slogan {
                display: none;
            }
            .brand-logo {
                font-size: 1.15rem;
            }
            .brand-row {
                gap: 0.4rem;
            }
        }

/* roulang page: category5 */
:root {
            --brand-purple: #A020F0;
            --brand-deep: #6C00FF;
            --brand-cyan: #00E5FF;
            --dark-base: #0D0F16;
            --dark-card: #161822;
            --dark-slot: #1E2030;
            --text-body: #B0B7C3;
            --text-muted: #6B7280;
            --text-white: #FFFFFF;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --shadow-card: 0px 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0px 8px 24px rgba(160, 32, 240, 0.15);
            --shadow-glow-cyan: 0px 8px 24px rgba(0, 229, 255, 0.12);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--dark-base);
            color: var(--text-body);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-cyan);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }
        button {
            cursor: pointer;
        }
        input {
            background: transparent;
            color: var(--text-white);
        }
        input::placeholder {
            color: var(--text-muted);
        }

        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* ============ HEADER ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--dark-base);
            border-bottom: 1px solid rgba(160, 32, 240, 0.2);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
            flex-wrap: wrap;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .brand-logo:hover {
            color: var(--brand-cyan);
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep));
            color: #fff;
            font-size: 1rem;
        }
        .brand-slogan {
            font-size: 0.85rem;
            color: var(--text-muted);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .time-stamp {
            font-size: 0.8rem;
            color: var(--text-muted);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
        }
        .search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--dark-slot);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            padding: 7px 15px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .search-box:focus-within {
            border-color: var(--brand-cyan);
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
        }
        .search-box i {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .search-box input {
            width: 160px;
            font-size: 0.85rem;
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-white);
        }
        .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--dark-slot);
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            cursor: pointer;
            transition: border-color var(--transition-fast), color var(--transition-fast);
        }
        .user-avatar:hover {
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
        }

        /* Channel Row */
        .channel-row {
            background: rgba(13, 15, 22, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(160, 32, 240, 0.15);
        }
        .channel-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            overflow-x: auto;
            padding: 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .channel-nav a {
            display: inline-block;
            padding: 13px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-body);
            white-space: nowrap;
            border-bottom: 2px solid transparent;
            transition: color var(--transition-fast), border-color var(--transition-fast);
            letter-spacing: 0.3px;
            position: relative;
        }
        .channel-nav a:hover {
            color: var(--brand-cyan);
        }
        .channel-nav a.active {
            color: var(--brand-cyan);
            border-bottom-color: var(--brand-cyan);
        }
        @media (max-width: 768px) {
            .channel-nav a {
                padding: 11px 14px;
                font-size: 0.82rem;
            }
            .brand-slogan {
                display: none;
            }
            .time-stamp {
                font-size: 0.7rem;
            }
            .search-box input {
                width: 100px;
            }
            .brand-row {
                gap: 8px;
            }
            .brand-actions {
                gap: 8px;
            }
        }
        @media (max-width: 520px) {
            .search-box {
                display: none;
            }
            .channel-nav a {
                padding: 10px 10px;
                font-size: 0.75rem;
            }
            .brand-logo {
                font-size: 1.1rem;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
        }

        /* ============ SECTION STYLES ============ */
        .section {
            padding: 64px 0;
        }
        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            position: relative;
            padding-left: 18px;
            line-height: 1.3;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            border-radius: 2px;
            background: var(--brand-cyan);
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            padding-left: 18px;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.4rem;
                padding-left: 14px;
            }
            .section-subtitle {
                font-size: 0.85rem;
                padding-left: 14px;
                margin-bottom: 24px;
            }
        }

        /* ============ HERO ============ */
        .page-hero {
            position: relative;
            padding: 72px 0;
            background: linear-gradient(180deg, rgba(13, 15, 22, 0.6) 0%, rgba(22, 24, 34, 0.9) 60%, var(--dark-base) 100%), url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            border-bottom: 1px solid rgba(160, 32, 240, 0.18);
        }
        .page-hero .hero-content {
            max-width: 800px;
        }
        .page-hero .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(160, 32, 240, 0.2);
            border: 1px solid rgba(160, 32, 240, 0.35);
            color: #C4B5FD;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.6px;
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .page-hero .hero-desc {
            font-size: 1.05rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 24px;
            max-width: 600px;
        }
        .page-hero .hero-stats-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .page-hero .hero-stat-mini {
            background: var(--dark-slot);
            border: 1px solid rgba(160, 32, 240, 0.25);
            border-radius: var(--radius-xl);
            padding: 16px 20px;
            text-align: center;
            min-width: 100px;
        }
        .page-hero .hero-stat-mini .stat-num {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--brand-cyan);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            line-height: 1;
        }
        .page-hero .hero-stat-mini .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 40px 0;
            }
            .page-hero h1 {
                font-size: 1.8rem;
            }
            .page-hero .hero-desc {
                font-size: 0.9rem;
            }
            .page-hero .hero-stats-row {
                gap: 12px;
            }
            .page-hero .hero-stat-mini {
                padding: 12px 14px;
                min-width: 70px;
            }
            .page-hero .hero-stat-mini .stat-num {
                font-size: 1.3rem;
            }
        }

        /* ============ TOURNAMENT BIG CARDS ============ */
        .tournament-grid-duo {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 768px) {
            .tournament-grid-duo {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .tournament-big-card {
            position: relative;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
            display: flex;
            flex-direction: column;
            min-height: 320px;
        }
        .tournament-big-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(160, 32, 240, 0.3);
        }
        .tournament-big-card .card-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        .tournament-big-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .tournament-big-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .tournament-big-card .card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, var(--dark-card) 0%, transparent 60%);
        }
        .tournament-big-card .card-tag-float {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 5px 14px;
            border-radius: 999px;
            background: rgba(160, 32, 240, 0.85);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            z-index: 2;
        }
        .tournament-big-card .card-countdown {
            position: absolute;
            top: 14px;
            right: 14px;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(0, 229, 255, 0.4);
            color: var(--brand-cyan);
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
        }
        .tournament-big-card .card-body {
            padding: 18px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .tournament-big-card .card-body h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }
        .tournament-big-card .card-body p {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 14px;
            flex: 1;
        }
        .tournament-big-card .card-body .card-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep));
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
            align-self: flex-start;
        }
        .tournament-big-card .card-body .card-btn:hover {
            background: linear-gradient(135deg, #C060FF, #8A30FF);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(160, 32, 240, 0.35);
            color: #fff;
        }

        /* ============ REPLAY GRID ============ */
        .replay-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .replay-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 520px) {
            .replay-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }
        .replay-card {
            background: var(--dark-card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
        }
        .replay-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow-cyan);
            border-color: rgba(0, 229, 255, 0.25);
        }
        .replay-card .replay-thumb {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        .replay-card .replay-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .replay-card:hover .replay-thumb img {
            transform: scale(1.05);
        }
        .replay-card .replay-thumb .play-icon-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.45);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .replay-card:hover .replay-thumb .play-icon-overlay {
            opacity: 1;
        }
        .replay-card .replay-thumb .play-icon-overlay i {
            font-size: 2.6rem;
            color: var(--brand-cyan);
            filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.6));
        }
        .replay-card .replay-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2px;
        }
        .replay-card .replay-info {
            padding: 14px 16px 16px;
        }
        .replay-card .replay-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 4px;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }
        .replay-card .replay-info .replay-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .replay-card .replay-info .replay-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ============ CLASSIC REVIEWS ============ */
        .classic-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .classic-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--dark-card);
            border-radius: var(--radius-xl);
            padding: 16px 20px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        .classic-item:hover {
            border-color: rgba(160, 32, 240, 0.3);
            box-shadow: var(--shadow-glow);
        }
        .classic-item .classic-rank {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--dark-slot);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--brand-cyan);
            flex-shrink: 0;
            border: 1px solid rgba(0, 229, 255, 0.3);
        }
        .classic-item .classic-rank.top1 {
            background: linear-gradient(135deg, #FFD700, #FFA000);
            color: #1a1a1a;
            border-color: #FFD700;
        }
        .classic-item .classic-rank.top2 {
            background: linear-gradient(135deg, #C0C0C0, #9E9E9E);
            color: #1a1a1a;
            border-color: #C0C0C0;
        }
        .classic-item .classic-rank.top3 {
            background: linear-gradient(135deg, #CD7F32, #A0522D);
            color: #fff;
            border-color: #CD7F32;
        }
        .classic-item .classic-info {
            flex: 1;
            min-width: 0;
        }
        .classic-item .classic-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 2px;
            letter-spacing: 0.3px;
        }
        .classic-item .classic-info .classic-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .classic-item .classic-cta {
            flex-shrink: 0;
        }
        .classic-item .classic-cta .btn-sm {
            padding: 7px 16px;
            border-radius: 999px;
            border: 1px solid rgba(0, 229, 255, 0.4);
            color: var(--brand-cyan);
            font-size: 0.78rem;
            font-weight: 500;
            transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
            white-space: nowrap;
        }
        .classic-item .classic-cta .btn-sm:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
        }
        @media (max-width: 520px) {
            .classic-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 14px;
            }
            .classic-item .classic-rank {
                width: 30px;
                height: 30px;
                font-size: 0.75rem;
            }
            .classic-item .classic-info h4 {
                font-size: 0.85rem;
            }
        }

        /* ============ REVIEWS ============ */
        .reviews-scroll {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        @media (max-width: 1024px) {
            .reviews-scroll {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }
        @media (max-width: 520px) {
            .reviews-scroll {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }
        .review-card-mini {
            background: var(--dark-card);
            border-radius: var(--radius-xl);
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: border-color var(--transition-fast);
        }
        .review-card-mini:hover {
            border-color: rgba(160, 32, 240, 0.25);
        }
        .review-card-mini .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card-mini .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--dark-slot);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-cyan);
            font-weight: 600;
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .review-card-mini .review-user {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-white);
        }
        .review-card-mini .review-tag {
            font-size: 0.7rem;
            color: var(--text-muted);
            display: block;
        }
        .review-card-mini .review-stars {
            color: #FFB800;
            font-size: 0.75rem;
            margin-bottom: 8px;
        }
        .review-card-mini .review-text {
            font-size: 0.83rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .review-card-mini .review-time {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
        }
        .faq-item {
            background: var(--dark-card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: border-color var(--transition-fast);
        }
        .faq-item:hover {
            border-color: rgba(160, 32, 240, 0.2);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            background: transparent;
            color: var(--text-white);
            font-size: 0.93rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-align: left;
            gap: 12px;
            transition: color var(--transition-fast);
            border: none;
            outline: none;
        }
        .faq-question:hover {
            color: var(--brand-cyan);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            font-size: 1rem;
            color: var(--brand-cyan);
            transition: transform var(--transition-smooth);
        }
        .faq-answer {
            display: none;
            padding: 0 20px 16px;
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.7;
            background: var(--dark-slot);
            margin: 0 8px 8px;
            border-radius: 10px;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        /* ============ CTA BANNER ============ */
        .cta-banner {
            background: linear-gradient(135deg, rgba(160, 32, 240, 0.12) 0%, rgba(108, 0, 255, 0.08) 50%, rgba(0, 229, 255, 0.06) 100%);
            border: 1px solid rgba(160, 32, 240, 0.2);
            border-radius: var(--radius-2xl);
            padding: 48px 32px;
            text-align: center;
        }
        .cta-banner h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .cta-banner p {
            font-size: 0.95rem;
            color: var(--text-body);
            margin-bottom: 20px;
        }
        .cta-banner .cta-input-row {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-banner .cta-input-row input {
            padding: 12px 20px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: var(--dark-slot);
            color: var(--text-white);
            font-size: 0.9rem;
            width: 280px;
            max-width: 100%;
            transition: border-color var(--transition-fast);
        }
        .cta-banner .cta-input-row input:focus {
            border-color: var(--brand-cyan);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
        }
        .cta-banner .cta-input-row .btn-subscribe {
            padding: 12px 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--brand-purple), var(--brand-deep));
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .cta-banner .cta-input-row .btn-subscribe:hover {
            background: linear-gradient(135deg, #C060FF, #8A30FF);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(160, 32, 240, 0.35);
        }
        @media (max-width: 520px) {
            .cta-banner {
                padding: 32px 18px;
            }
            .cta-banner h2 {
                font-size: 1.4rem;
            }
            .cta-banner .cta-input-row input {
                width: 100%;
            }
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--dark-base);
            border-top: 2px solid transparent;
            border-image: linear-gradient(90deg, var(--brand-purple), var(--brand-cyan), var(--brand-deep)) 1;
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            display: block;
            font-size: 0.82rem;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--brand-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom p {
            margin: 2px 0;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--brand-cyan);
        }
