/* roulang page: index */
:root {
            --bg-void: #090A0F;
            --bg-obsidian: #15161C;
            --bg-card: #1E2028;
            --accent-cyan: #00F2FE;
            --accent-purple: #C471F5;
            --green-neon: #00E676;
            --red-alert: #FF1744;
            --gray-titanium: #9E9E9E;
            --text-white-smoke: #E0E3EB;
            --text-mist: #8490A6;
            --radius-card: 8px;
            --shadow-cyan: 0 0 8px rgba(0, 242, 254, 0.15);
            --shadow-cyan-strong: 0 0 20px rgba(0, 242, 254, 0.4);
            --shadow-purple: 0 0 12px rgba(196, 113, 245, 0.25);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            background-color: var(--bg-void);
            color: var(--text-white-smoke);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
            cursor: pointer;
        }
        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* 容器 */
        .container-main {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* ===== 活动通知条 ===== */
        .notification-bar {
            background: linear-gradient(90deg, #15161C 0%, #1a1030 50%, #15161C 100%);
            border-bottom: 1px solid rgba(196, 113, 245, 0.3);
            padding: 10px 0;
            text-align: center;
            font-size: 13px;
            color: var(--text-white-smoke);
            position: relative;
            z-index: 1001;
            letter-spacing: 0.5px;
        }
        .notification-bar .notify-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--red-alert);
            border-radius: 50%;
            margin-right: 6px;
            animation: notifyPulse 1.5s ease-in-out infinite;
        }
        @keyframes notifyPulse {
            0%,
            100% {
                box-shadow: 0 0 4px var(--red-alert), 0 0 8px var(--red-alert);
            }
            50% {
                box-shadow: 0 0 12px var(--red-alert), 0 0 24px var(--red-alert);
            }
        }
        .notification-bar a {
            color: var(--accent-cyan);
            font-weight: 600;
            margin-left: 4px;
            border-bottom: 1px dotted var(--accent-cyan);
        }
        .notification-bar a:hover {
            color: #fff;
            border-bottom-color: #fff;
        }

        /* ===== 导航 ===== */
        .site-header {
            background: var(--bg-void);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .nav-loading-bar {
            height: 2px;
            background: var(--accent-cyan);
            width: 0%;
            animation: loadingBar 3s ease-in-out infinite;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 1002;
            box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
        }
        @keyframes loadingBar {
            0% {
                width: 0%;
                left: 0;
            }
            30% {
                width: 40%;
                left: 0;
            }
            60% {
                width: 70%;
                left: 20%;
            }
            100% {
                width: 0%;
                left: 100%;
            }
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            position: relative;
        }
        .logo-text {
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, #5ee7ff 40%, var(--accent-purple) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        .logo-sub {
            font-size: 10px;
            color: var(--text-mist);
            letter-spacing: 2px;
            display: block;
            -webkit-text-fill-color: var(--text-mist);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-mist);
            position: relative;
            padding: 4px 0;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-cyan);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 1px;
            box-shadow: 0 0 6px var(--accent-cyan);
        }
        .btn-app-download {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, #00d4e0 100%);
            color: #090A0F !important;
            font-weight: 700;
            font-size: 13px;
            border-radius: 6px;
            letter-spacing: 0.5px;
            animation: breatheGlow 2.5s ease-in-out infinite;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            position: relative;
        }
        .btn-app-download:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-cyan-strong);
            color: #090A0F !important;
        }
        @keyframes breatheGlow {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(0, 242, 254, 0.35), 0 0 16px rgba(0, 242, 254, 0.2);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 242, 254, 0.6), 0 0 36px rgba(0, 242, 254, 0.35);
            }
        }
        .badge-hot {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--red-alert);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            letter-spacing: 1px;
            animation: badgePulse 1.2s ease-in-out infinite;
            z-index: 2;
        }
        @keyframes badgePulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white-smoke);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 16px;
            }
            .nav-links a {
                font-size: 13px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-obsidian);
                padding: 16px 24px;
                gap: 12px;
                border-bottom: 2px solid var(--accent-cyan);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .btn-app-download {
                font-size: 12px;
                padding: 7px 14px;
            }
            .badge-hot {
                top: -6px;
                right: -4px;
                font-size: 9px;
                padding: 1px 5px;
            }
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 580px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 242, 254, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 40%, rgba(196, 113, 245, 0.06) 0%, transparent 55%),
                linear-gradient(180deg, rgba(9, 10, 15, 0.7) 0%, rgba(9, 10, 15, 0.88) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 60px 0;
        }
        .hero-left h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .hero-left h1 .highlight {
            color: var(--accent-cyan);
            text-shadow: 0 0 24px rgba(0, 242, 254, 0.5);
        }
        .hero-left .hero-subtitle {
            font-size: 16px;
            color: var(--text-mist);
            margin-bottom: 28px;
            line-height: 1.6;
            max-width: 460px;
        }
        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-cyan {
            display: inline-block;
            padding: 13px 28px;
            background: var(--accent-cyan);
            color: #090A0F;
            font-weight: 700;
            font-size: 15px;
            border-radius: 6px;
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.3);
            text-align: center;
        }
        .btn-primary-cyan:hover {
            box-shadow: 0 0 30px rgba(0, 242, 254, 0.55);
            transform: translateY(-3px);
        }
        .btn-ghost-cyan {
            display: inline-block;
            padding: 12px 28px;
            background: transparent;
            color: var(--accent-cyan);
            font-weight: 700;
            font-size: 15px;
            border-radius: 6px;
            border: 2px solid var(--accent-cyan);
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            text-align: center;
        }
        .btn-ghost-cyan:hover {
            background: rgba(0, 242, 254, 0.08);
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
            transform: translateY(-3px);
        }
        .hero-right .live-match-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 242, 254, 0.3);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            box-shadow: var(--shadow-cyan);
            max-width: 420px;
            margin-left: auto;
        }
        .live-match-card .live-badge {
            display: inline-block;
            background: var(--red-alert);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 1px;
            animation: notifyPulse 1.5s ease-in-out infinite;
            margin-bottom: 12px;
        }
        .live-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }
        .live-match-card .team-name {
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            text-align: center;
        }
        .live-match-card .match-score {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            text-align: center;
            min-width: 70px;
            text-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
        }
        .live-match-card .match-info {
            font-size: 12px;
            color: var(--text-mist);
            text-align: center;
            margin-top: 4px;
        }
        .live-progress-bar {
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            margin-top: 12px;
            overflow: hidden;
        }
        .live-progress-bar .progress-fill {
            height: 100%;
            background: var(--accent-cyan);
            border-radius: 2px;
            width: 62%;
            animation: progressPulse 2s ease-in-out infinite;
        }
        @keyframes progressPulse {
            0%,
            100% {
                box-shadow: 0 0 6px var(--accent-cyan);
            }
            50% {
                box-shadow: 0 0 14px var(--accent-cyan);
            }
        }
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 40px 0;
            }
            .hero-left h1 {
                font-size: 28px;
            }
            .hero-right .live-match-card {
                max-width: 100%;
                margin-left: 0;
            }
            .hero-section {
                min-height: auto;
            }
        }

        /* ===== 板块通用 ===== */
        .section-block {
            padding: 70px 0;
        }
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            position: relative;
            padding-left: 16px;
            letter-spacing: 0.5px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--accent-cyan);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-cyan);
        }
        .section-subtitle {
            font-size: 14px;
            color: var(--text-mist);
            margin-bottom: 36px;
            padding-left: 16px;
        }

        /* ===== 核心指标快看板 ===== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .metric-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 242, 254, 0.12);
            border-radius: var(--radius-card);
            padding: 20px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-cyan);
        }
        .metric-card:hover {
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
            transform: translateY(-2px);
        }
        .metric-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            letter-spacing: 0.5px;
        }
        .metric-label {
            font-size: 13px;
            color: var(--text-mist);
            margin-top: 4px;
        }
        @media (max-width: 1024px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .metrics-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .metric-value {
                font-size: 22px;
            }
            .metric-card {
                padding: 14px 10px;
            }
        }

        /* ===== 游戏分类入口矩阵 ===== */
        .game-category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .game-category-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            aspect-ratio: 16 / 10;
            cursor: pointer;
            transition: all var(--transition-smooth);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-cyan);
        }
        .game-category-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 242, 254, 0.5);
            box-shadow: 0 0 24px rgba(0, 242, 254, 0.3);
        }
        .game-category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .game-category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(9, 10, 15, 0.2) 0%, rgba(9, 10, 15, 0.85) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }
        .game-category-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
        }
        .game-category-tag {
            display: inline-block;
            background: var(--accent-cyan);
            color: #090A0F;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            margin-left: 8px;
            letter-spacing: 0.5px;
        }
        @media (max-width: 768px) {
            .game-category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 520px) {
            .game-category-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 焦点赛事卡片流 ===== */
        .focus-matches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .focus-match-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-card);
            padding: 18px;
            transition: all var(--transition-smooth);
            position: relative;
            box-shadow: var(--shadow-cyan);
        }
        .focus-match-card:hover {
            border-color: rgba(0, 242, 254, 0.35);
            box-shadow: 0 0 18px rgba(0, 242, 254, 0.2);
            transform: translateY(-2px);
        }
        .focus-match-card .status-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }
        .status-live {
            background: rgba(255, 23, 68, 0.2);
            color: var(--red-alert);
            border: 1px solid rgba(255, 23, 68, 0.4);
            animation: notifyPulse 1.5s ease-in-out infinite;
        }
        .status-upcoming {
            background: rgba(0, 242, 254, 0.1);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 242, 254, 0.3);
        }
        .focus-match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-weight: 700;
            font-size: 15px;
            color: #fff;
        }
        .focus-match-score {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            min-width: 50px;
            text-align: center;
        }
        .focus-match-meta {
            font-size: 12px;
            color: var(--text-mist);
            margin-top: 6px;
            text-align: center;
        }
        @media (max-width: 1024px) {
            .focus-matches-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .focus-matches-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 实时比分数据表 ===== */
        .score-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: var(--shadow-cyan);
        }
        .score-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            background: var(--bg-card);
        }
        .score-table thead th {
            background: rgba(196, 113, 245, 0.15);
            color: var(--accent-purple);
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 0.5px;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 2px solid rgba(196, 113, 245, 0.3);
            white-space: nowrap;
        }
        .score-table tbody td {
            padding: 12px;
            font-size: 13px;
            color: var(--text-white-smoke);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            white-space: nowrap;
        }
        .score-table tbody tr.row-live {
            background: rgba(0, 242, 254, 0.04);
        }
        .score-table tbody tr:hover {
            background: rgba(0, 242, 254, 0.06);
        }
        .score-table .score-highlight {
            font-weight: 800;
            font-size: 16px;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
        }
        .score-table .tag-game {
            display: inline-block;
            background: rgba(0, 242, 254, 0.1);
            color: var(--accent-cyan);
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .score-table .btn-view-data {
            display: inline-block;
            padding: 5px 12px;
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .score-table .btn-view-data:hover {
            background: var(--accent-cyan);
            color: #090A0F;
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
        }

        /* ===== 战队实力对比 ===== */
        .team-compare-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .team-compare-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-card);
            padding: 20px 16px;
            text-align: center;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-cyan);
        }
        .team-compare-card:hover {
            border-color: rgba(196, 113, 245, 0.4);
            box-shadow: var(--shadow-purple);
            transform: translateY(-2px);
        }
        .team-rank-badge {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }
        .rank-1 {
            background: linear-gradient(135deg, #C471F5, #e090ff);
            color: #fff;
            box-shadow: 0 0 16px rgba(196, 113, 245, 0.5);
        }
        .rank-2 {
            background: linear-gradient(135deg, #b0b0b0, #d4d4d4);
            color: #1a1a1a;
            box-shadow: 0 0 10px rgba(180, 180, 180, 0.4);
        }
        .rank-3 {
            background: linear-gradient(135deg, #9e8260, #c9a87c);
            color: #1a1a1a;
            box-shadow: 0 0 10px rgba(180, 140, 100, 0.4);
        }
        .rank-other {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-mist);
        }
        .team-compare-name {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            margin-bottom: 6px;
        }
        .team-winrate-bar {
            height: 5px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 6px;
        }
        .team-winrate-fill {
            height: 100%;
            background: var(--accent-cyan);
            border-radius: 3px;
        }
        .team-winrate-text {
            font-size: 12px;
            color: var(--accent-cyan);
            font-weight: 600;
            margin-top: 4px;
        }
        @media (max-width: 1024px) {
            .team-compare-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .team-compare-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== 资讯时间轴 ===== */
        .timeline-list {
            list-style: none;
            position: relative;
            padding-left: 30px;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan);
            border-radius: 1px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 24px;
            padding-left: 20px;
        }
        .timeline-dot {
            position: absolute;
            left: -26px;
            top: 4px;
            width: 10px;
            height: 10px;
            background: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-cyan);
            z-index: 1;
        }
        .timeline-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-card);
            padding: 16px 18px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-cyan);
        }
        .timeline-card:hover {
            border-color: rgba(0, 242, 254, 0.3);
            box-shadow: 0 0 14px rgba(0, 242, 254, 0.2);
        }
        .timeline-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 4px;
            margin-right: 8px;
            letter-spacing: 0.5px;
        }
        .tag-recap {
            background: rgba(196, 113, 245, 0.2);
            color: var(--accent-purple);
            border: 1px solid rgba(196, 113, 245, 0.3);
        }
        .tag-update {
            background: rgba(0, 230, 118, 0.15);
            color: var(--green-neon);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        .tag-news {
            background: rgba(0, 242, 254, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 242, 254, 0.25);
        }
        .timeline-title {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            margin-top: 6px;
        }
        .timeline-meta {
            font-size: 11px;
            color: var(--text-mist);
            margin-top: 4px;
        }
        @media (max-width: 520px) {
            .timeline-list {
                padding-left: 22px;
            }
            .timeline-list::before {
                left: 5px;
            }
            .timeline-dot {
                left: -20px;
                width: 8px;
                height: 8px;
            }
            .timeline-item {
                padding-left: 10px;
            }
        }

        /* ===== 用户评论区 ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-card);
            padding: 18px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-cyan);
        }
        .review-card:hover {
            border-color: rgba(196, 113, 245, 0.3);
            box-shadow: var(--shadow-purple);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
        }
        .review-nickname {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-mist);
        }
        .review-stars {
            color: #f5c542;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 13px;
            color: var(--text-mist);
            line-height: 1.6;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== FAQ手风琴 ===== */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 4px;
        }
        .faq-question {
            width: 100%;
            background: var(--bg-obsidian);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 16px 44px 16px 16px;
            border: none;
            text-align: left;
            cursor: pointer;
            position: relative;
            border-radius: 6px;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
            border: 1px solid transparent;
        }
        .faq-question:hover {
            border-color: rgba(0, 242, 254, 0.2);
            background: rgba(0, 242, 254, 0.03);
        }
        .faq-question::after {
            content: '[+]';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-cyan);
            font-weight: 700;
            font-size: 16px;
            transition: all var(--transition-fast);
        }
        .faq-question.open {
            color: var(--accent-cyan);
            border-color: rgba(0, 242, 254, 0.25);
            background: rgba(0, 242, 254, 0.04);
        }
        .faq-question.open::after {
            content: '[-]';
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--bg-void);
            border-radius: 0 0 6px 6px;
            padding: 0 16px;
        }
        .faq-answer.open {
            max-height: 200px;
            padding: 14px 16px;
            border: 1px solid rgba(0, 242, 254, 0.12);
            border-top: none;
        }
        .faq-answer p {
            font-size: 13px;
            color: var(--text-mist);
            line-height: 1.7;
        }

        /* ===== CTA横幅 ===== */
        .cta-banner {
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            border-radius: 12px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 242, 254, 0.25);
            box-shadow: var(--shadow-cyan-strong);
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(9, 10, 15, 0.8);
            z-index: 1;
            border-radius: 12px;
        }
        .cta-banner-content {
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            font-size: 30px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        .cta-banner p {
            font-size: 15px;
            color: var(--text-mist);
            margin-bottom: 24px;
        }
        .cta-banner .btn-primary-cyan {
            font-size: 16px;
            padding: 15px 36px;
        }
        @media (max-width: 520px) {
            .cta-banner {
                padding: 40px 20px;
            }
            .cta-banner h2 {
                font-size: 22px;
            }
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-obsidian);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 50px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-purple);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-mist);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            padding: 24px 0;
            color: var(--text-mist);
            font-size: 12px;
        }
        .footer-bottom a {
            color: var(--text-mist);
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom .sep {
            color: rgba(255, 255, 255, 0.2);
            margin: 0 4px;
        }
        @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;
            }
            .footer-bottom {
                font-size: 11px;
            }
        }

        /* 全局过渡与辅助 */
        .text-cyan {
            color: var(--accent-cyan);
        }
        .text-purple {
            color: var(--accent-purple);
        }
        .text-mist {
            color: var(--text-mist);
        }
        .text-green {
            color: var(--green-neon);
        }
        .text-red {
            color: var(--red-alert);
        }
        .font-mono {
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
        }

/* roulang page: category1 */
:root {
            --bg-void: #090A0F;
            --bg-obsidian: #15161C;
            --bg-card: #1E2028;
            --accent-cyan: #00F2FE;
            --accent-purple: #C471F5;
            --green-neon: #00E676;
            --red-alert: #FF1744;
            --gray-titanium: #9E9E9E;
            --text-white-smoke: #E0E3EB;
            --text-mist: #8490A6;
            --border-glow: rgba(0, 242, 254, 0.18);
            --border-glow-strong: rgba(0, 242, 254, 0.45);
            --shadow-cyan: 0 0 12px rgba(0, 242, 254, 0.15);
            --shadow-cyan-hover: 0 0 22px rgba(0, 242, 254, 0.32);
            --shadow-purple: 0 0 10px rgba(196, 113, 245, 0.18);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --font-mono: 'SF Mono', 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s 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: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background: var(--bg-void);
            color: var(--text-white-smoke);
            line-height: 1.7;
            font-size: 14px;
            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 {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        input {
            font-family: inherit;
            outline: none;
        }

        .container-main {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* ===== HEADER ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 10, 15, 0.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 242, 254, 0.1);
        }
        .nav-loading-bar {
            height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
            background-size: 200% 100%;
            animation: loadingBar 2.2s ease-in-out infinite;
            width: 100%;
        }
        @keyframes loadingBar {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: 20px;
        }
        .logo-link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex-shrink: 0;
            text-decoration: none;
        }
        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .logo-sub {
            font-size: 10px;
            font-weight: 500;
            color: var(--text-mist);
            letter-spacing: 1.5px;
            line-height: 1;
        }
        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-mist);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            position: relative;
        }
        .nav-links li a:hover {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.06);
        }
        .nav-links li a.active {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.08);
            box-shadow: inset 0 1px 0 rgba(0, 242, 254, 0.2);
        }
        .btn-app-download {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.18), rgba(196, 113, 245, 0.18));
            border: 1px solid var(--border-glow-strong) !important;
            color: var(--accent-cyan) !important;
            font-weight: 600 !important;
            gap: 6px;
            position: relative;
            animation: breathe 2.4s ease-in-out infinite;
        }
        @keyframes breathe {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(0, 242, 254, 0.2);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 242, 254, 0.45);
            }
        }
        .badge-hot {
            position: absolute;
            top: -8px;
            right: -6px;
            background: var(--red-alert);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            animation: pulseBadge 1.5s ease-in-out infinite;
        }
        @keyframes pulseBadge {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white-smoke);
            font-size: 22px;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .mobile-menu-btn:hover {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.08);
        }
        @media (max-width: 1024px) {
            .nav-links li a {
                padding: 6px 10px;
                font-size: 12.5px;
            }
            .logo-text {
                font-size: 18px;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 62px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(21, 22, 28, 0.98);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--border-glow);
                padding: 16px;
                gap: 4px;
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                width: 100%;
                padding: 12px 16px;
                font-size: 14px;
                border-radius: var(--radius-sm);
            }
            .badge-hot {
                position: static;
                margin-left: 6px;
                top: auto;
                right: auto;
            }
            .btn-app-download {
                justify-content: center;
                margin-top: 4px;
            }
        }

        /* ===== SECTION TITLES ===== */
        .section-title-wrap {
            margin-bottom: 36px;
            position: relative;
        }
        .section-title-wrap h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-white-smoke);
            padding-left: 16px;
            border-left: 3px solid var(--accent-cyan);
            letter-spacing: 0.3px;
            line-height: 1.3;
        }
        .section-title-wrap .section-subtitle {
            font-size: 13px;
            color: var(--text-mist);
            margin-top: 6px;
            padding-left: 16px;
        }
        @media (max-width: 768px) {
            .section-title-wrap h2 {
                font-size: 19px;
                padding-left: 12px;
            }
        }

        /* ===== HERO ===== */
        .hero-category {
            position: relative;
            padding: 60px 0 70px;
            background: var(--bg-void);
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 40% 30%, rgba(0, 242, 254, 0.06) 0%, transparent 65%),
                radial-gradient(ellipse at 70% 60%, rgba(196, 113, 245, 0.05) 0%, transparent 60%),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.35;
            z-index: 0;
        }
        .hero-category .container-main {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-category .hero-left h1 {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-cyan);
            letter-spacing: 0.3px;
            line-height: 1.35;
            margin-bottom: 14px;
        }
        .hero-category .hero-left .hero-desc {
            font-size: 15px;
            color: var(--text-mist);
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 480px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 22px;
        }
        .hero-tags span {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid var(--border-glow);
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.05);
            transition: all var(--transition-smooth);
        }
        .hero-tags span:hover {
            background: rgba(0, 242, 254, 0.14);
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-cyan);
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--accent-cyan), #00d4e0);
            color: #090A0F;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-cyan);
        }
        .btn-hero-primary:hover {
            box-shadow: var(--shadow-cyan-hover);
            transform: translateY(-1px);
            background: linear-gradient(135deg, #20f6ff, var(--accent-cyan));
        }
        .btn-hero-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            background: transparent;
            border: 1.5px solid var(--border-glow-strong);
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
        }
        .btn-hero-ghost:hover {
            background: rgba(0, 242, 254, 0.08);
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-cyan);
        }
        .hero-live-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-cyan);
            position: relative;
        }
        .hero-live-card .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 23, 68, 0.15);
            color: var(--red-alert);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
            animation: pulseBadge 1.5s ease-in-out infinite;
        }
        .hero-live-card .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red-alert);
            display: inline-block;
        }
        .hero-match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }
        .hero-match-teams .team-block {
            text-align: center;
            flex: 1;
        }
        .hero-match-teams .team-block img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 6px;
            border: 2px solid var(--border-glow);
            background: var(--bg-obsidian);
        }
        .hero-match-teams .team-block .team-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-white-smoke);
        }
        .hero-match-score {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            text-align: center;
            flex-shrink: 0;
            min-width: 60px;
        }
        .hero-match-info {
            text-align: center;
            font-size: 12px;
            color: var(--text-mist);
            margin-top: 6px;
        }
        .hero-progress-bar {
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            margin-top: 10px;
            overflow: hidden;
        }
        .hero-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 2px;
            width: 64%;
            animation: progressPulse 3s ease-in-out infinite;
        }
        @keyframes progressPulse {
            0%,
            100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }
        @media (max-width: 768px) {
            .hero-category {
                padding: 36px 0 44px;
            }
            .hero-category .container-main {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-category .hero-left h1 {
                font-size: 26px;
            }
            .hero-live-card {
                padding: 16px;
            }
            .hero-match-score {
                font-size: 24px;
            }
        }

        /* ===== SUB NAV ===== */
        .sub-nav-bar {
            background: var(--bg-obsidian);
            border-bottom: 1px solid rgba(0, 242, 254, 0.08);
            padding: 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .sub-nav-bar::-webkit-scrollbar {
            height: 2px;
        }
        .sub-nav-bar::-webkit-scrollbar-thumb {
            background: var(--border-glow);
            border-radius: 2px;
        }
        .sub-nav-inner {
            display: flex;
            gap: 2px;
            padding: 0 24px;
            min-width: max-content;
        }
        .sub-nav-inner a {
            display: inline-flex;
            align-items: center;
            padding: 12px 18px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-mist);
            border-bottom: 2px solid transparent;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .sub-nav-inner a:hover,
        .sub-nav-inner a.sub-active {
            color: var(--accent-cyan);
            border-bottom-color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.03);
        }
        @media (max-width: 768px) {
            .sub-nav-inner {
                padding: 0 12px;
            }
            .sub-nav-inner a {
                padding: 10px 14px;
                font-size: 12.5px;
            }
        }

        /* ===== STATS ROW ===== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin: 40px 0;
        }
        .stat-card-mini {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card-mini::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .stat-card-mini:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-cyan);
            transform: translateY(-2px);
        }
        .stat-card-mini .stat-value {
            font-size: 30px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            line-height: 1;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }
        .stat-card-mini .stat-label {
            font-size: 12px;
            color: var(--text-mist);
            letter-spacing: 0.3px;
            position: relative;
            z-index: 1;
        }
        @media (max-width: 1024px) {
            .stats-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 520px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card-mini {
                padding: 14px 10px;
            }
            .stat-card-mini .stat-value {
                font-size: 24px;
            }
        }

        /* ===== MATCH TABLE ===== */
        .match-table-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin: 0 0 50px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
        }
        .match-table-wrap table {
            width: 100%;
            border-collapse: collapse;
        }
        .match-table-wrap thead th {
            background: rgba(196, 113, 245, 0.1);
            color: var(--accent-purple);
            font-size: 12.5px;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            letter-spacing: 0.4px;
            border-bottom: 1px solid var(--border-glow);
            white-space: nowrap;
        }
        .match-table-wrap tbody td {
            padding: 14px 16px;
            font-size: 13.5px;
            color: var(--text-white-smoke);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            white-space: nowrap;
        }
        .match-table-wrap tbody tr {
            transition: all var(--transition-fast);
        }
        .match-table-wrap tbody tr:hover {
            background: rgba(0, 242, 254, 0.04);
        }
        .match-table-wrap tbody tr.row-live {
            background: rgba(0, 242, 254, 0.06);
        }
        .match-table-wrap .status-live {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--red-alert);
            font-weight: 700;
            font-size: 12px;
        }
        .match-table-wrap .status-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 12px;
        }
        .match-table-wrap .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            display: inline-block;
        }
        .match-table-wrap .score-highlight {
            font-weight: 800;
            font-size: 16px;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
        }
        .match-table-wrap .btn-table-action {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 11px;
            font-weight: 600;
            border: 1px solid var(--border-glow);
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.04);
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .match-table-wrap .btn-table-action:hover {
            background: rgba(0, 242, 254, 0.14);
            border-color: var(--accent-cyan);
        }
        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        @media (max-width: 768px) {
            .match-table-wrap thead th,
            .match-table-wrap tbody td {
                padding: 10px 12px;
                font-size: 12px;
            }
        }

        /* ===== RANKING CARDS ===== */
        .ranking-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
            margin: 0 0 50px;
        }
        .rank-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 20px 14px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .rank-card:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-cyan);
            transform: translateY(-3px);
        }
        .rank-card.rank-1 {
            border-color: rgba(196, 113, 245, 0.5);
            box-shadow: var(--shadow-purple);
        }
        .rank-card .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .rank-card.rank-1 .rank-badge {
            background: linear-gradient(135deg, #C471F5, #a855f7);
            color: #fff;
            box-shadow: 0 0 14px rgba(196, 113, 245, 0.5);
        }
        .rank-card.rank-2 .rank-badge,
        .rank-card.rank-3 .rank-badge {
            background: linear-gradient(135deg, #9E9E9E, #bdbdbd);
            color: #1E2028;
            font-weight: 800;
        }
        .rank-card.rank-other .rank-badge {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-mist);
            font-weight: 700;
        }
        .rank-card .rank-team-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 8px;
            border: 2px solid var(--border-glow);
            background: var(--bg-obsidian);
        }
        .rank-card .rank-team-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-white-smoke);
            margin-bottom: 4px;
        }
        .rank-card .rank-region {
            font-size: 11px;
            color: var(--text-mist);
            margin-bottom: 8px;
        }
        .rank-card .rank-winrate {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-cyan);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
        }
        .rank-progress-mini {
            height: 3px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 2px;
            margin-top: 6px;
            overflow: hidden;
        }
        .rank-progress-fill {
            height: 100%;
            background: var(--accent-cyan);
            border-radius: 2px;
        }
        @media (max-width: 1024px) {
            .ranking-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .ranking-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .rank-card {
                padding: 14px 10px;
            }
        }

        /* ===== SCHEDULE TIMELINE ===== */
        .schedule-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 0 0 50px;
            position: relative;
        }
        .schedule-timeline::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple), transparent);
            opacity: 0.5;
            border-radius: 1px;
        }
        .timeline-item {
            display: flex;
            gap: 20px;
            padding: 16px 0 16px 40px;
            position: relative;
            transition: all var(--transition-smooth);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 20px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--bg-obsidian);
            border: 2px solid var(--accent-cyan);
            z-index: 1;
            box-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
        }
        .timeline-item:hover::before {
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.7);
            background: var(--accent-cyan);
        }
        .timeline-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            flex: 1;
            transition: all var(--transition-smooth);
        }
        .timeline-item:hover .timeline-card {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-cyan);
        }
        .timeline-card .tl-date {
            font-size: 12px;
            color: var(--accent-purple);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .timeline-card .tl-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white-smoke);
            margin-bottom: 4px;
        }
        .timeline-card .tl-detail {
            font-size: 12px;
            color: var(--text-mist);
        }
        @media (max-width: 768px) {
            .schedule-timeline::before {
                left: 10px;
            }
            .timeline-item {
                padding-left: 30px;
                gap: 12px;
            }
            .timeline-item::before {
                left: 6px;
                width: 10px;
                height: 10px;
            }
        }

        /* ===== NEWS CARDS ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin: 0 0 50px;
        }
        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .news-card:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-cyan);
            transform: translateY(-2px);
        }
        .news-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-glow);
        }
        .news-card .news-body {
            padding: 16px;
        }
        .news-card .news-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(196, 113, 245, 0.12);
            color: var(--accent-purple);
            margin-bottom: 8px;
        }
        .news-card .news-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-white-smoke);
            line-height: 1.5;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .news-meta {
            font-size: 11px;
            color: var(--text-mist);
        }
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .news-card img {
                height: 130px;
            }
        }
        @media (max-width: 520px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== REVIEWS ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 0 0 50px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            padding: 18px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-cyan);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-white-smoke);
        }
        .review-card .review-tag {
            font-size: 10px;
            color: var(--accent-purple);
        }
        .review-card .review-stars {
            color: #f5c518;
            font-size: 11px;
            margin-bottom: 8px;
        }
        .review-card .review-text {
            font-size: 12.5px;
            color: var(--text-mist);
            line-height: 1.6;
        }
        .review-card .review-time {
            font-size: 10px;
            color: var(--gray-titanium);
            margin-top: 8px;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 0 0 50px;
        }
        .faq-item {
            background: var(--bg-obsidian);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: var(--border-glow-strong);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-white-smoke);
            font-size: 14px;
            font-weight: 600;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-align: left;
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
        }
        .faq-question .faq-icon {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-cyan);
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            color: var(--accent-purple);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--bg-void);
            border-top: 1px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            border-top-color: var(--border-glow);
        }
        .faq-answer-inner {
            padding: 0 18px 16px 42px;
            font-size: 13px;
            color: var(--text-mist);
            line-height: 1.7;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.08), rgba(196, 113, 245, 0.08));
            border: 1px solid var(--border-glow-strong);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            margin: 0 0 50px;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 242, 254, 0.1) 0%, transparent 55%);
            pointer-events: none;
        }
        .cta-banner h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-cyan);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            font-size: 14px;
            color: var(--text-mist);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .cta-banner .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--accent-cyan), #00c9d6);
            color: #090A0F;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-cyan);
            position: relative;
            z-index: 1;
        }
        .cta-banner .btn-cta-large:hover {
            box-shadow: var(--shadow-cyan-hover);
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .cta-banner {
                padding: 30px 20px;
            }
            .cta-banner h3 {
                font-size: 20px;
            }
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-obsidian);
            border-top: 1px solid rgba(0, 242, 254, 0.1);
            padding: 48px 0 28px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-purple);
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-mist);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-mist);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
        }
        .footer-bottom .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.2);
        }
        .footer-bottom a {
            color: var(--text-mist);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        @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: 16px;
            }
        }

        /* ===== UTILITY ===== */
        .mt-section {
            margin-top: 50px;
        }
        .mb-section {
            margin-bottom: 50px;
        }

/* roulang page: category2 */
:root {
            --void-black: #090A0F;
            --deep-obsidian: #15161C;
            --cyber-cyan: #00F2FE;
            --electric-purple: #C471F5;
            --neon-green: #00E676;
            --alert-red: #FF1744;
            --titanium-gray: #9E9E9E;
            --smoke-white: #E0E3EB;
            --mist-gray: #8490A6;
            --card-bg: #1E2028;
            --card-border: rgba(0, 242, 254, 0.18);
            --card-border-hover: rgba(0, 242, 254, 0.45);
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0 0 12px rgba(0, 242, 254, 0.10);
            --shadow-card-hover: 0 0 24px rgba(0, 242, 254, 0.22);
            --shadow-glow-purple: 0 0 16px rgba(196, 113, 245, 0.25);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
            --section-gap: 72px;
            --section-gap-mobile: 48px;
        }

        *,
        *::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: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: var(--smoke-white);
            background-color: var(--void-black);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container-main {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航加载条 */
        .nav-loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, var(--cyber-cyan), var(--electric-purple), var(--cyber-cyan));
            background-size: 200% 100%;
            z-index: 10001;
            animation: loadingBarShimmer 2.2s ease-in-out infinite;
        }

        @keyframes loadingBarShimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        /* 导航 */
        .site-header {
            position: sticky;
            top: 2px;
            z-index: 10000;
            background: rgba(9, 10, 15, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 242, 254, 0.12);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: 20px;
        }

        .logo-link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-decoration: none;
            flex-shrink: 0;
            line-height: 1.1;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, var(--cyber-cyan) 0%, #5ee7ff 40%, var(--electric-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
        }

        .logo-sub {
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 3px;
            color: var(--mist-gray);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .nav-links>li>a {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--mist-gray);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links>li>a:hover {
            color: var(--cyber-cyan);
            background: rgba(0, 242, 254, 0.06);
        }

        .nav-links>li>a.active {
            color: var(--cyber-cyan);
            background: rgba(0, 242, 254, 0.08);
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.25);
            font-weight: 600;
        }

        .btn-app-download {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(196, 113, 245, 0.18) 100%) !important;
            border: 1px solid rgba(0, 242, 254, 0.35) !important;
            color: var(--cyber-cyan) !important;
            font-weight: 600 !important;
            animation: breatheGlow 2.5s ease-in-out infinite;
            position: relative;
            overflow: visible !important;
        }

        @keyframes breatheGlow {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(0, 242, 254, 0.18);
            }
            50% {
                box-shadow: 0 0 20px rgba(0, 242, 254, 0.38);
            }
        }

        .badge-hot {
            position: absolute;
            top: -10px;
            right: -8px;
            font-size: 10px;
            font-weight: 700;
            background: var(--alert-red);
            color: #fff;
            padding: 2px 7px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            animation: pulseBadge 1.5s ease-in-out infinite;
            white-space: nowrap;
        }

        @keyframes pulseBadge {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.12);
            }
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: var(--smoke-white);
            font-size: 20px;
            padding: 8px 12px;
            transition: all var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            border-color: var(--cyber-cyan);
            color: var(--cyber-cyan);
        }

        /* Hero */
        .hero-section {
            position: relative;
            padding: 80px 0 70px;
            background-color: var(--void-black);
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            min-height: 480px;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(0, 242, 254, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(196, 113, 245, 0.07) 0%, transparent 55%),
                linear-gradient(180deg, rgba(9, 10, 15, 0.55) 0%, rgba(9, 10, 15, 0.82) 100%);
            z-index: 1;
        }

        .hero-section .container-main {
            position: relative;
            z-index: 2;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 242, 254, 0.10);
            border: 1px solid rgba(0, 242, 254, 0.25);
            color: var(--cyber-cyan);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
        }

        .hero-badge .dot-live {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neon-green);
            animation: dotPulse 1.2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px var(--neon-green);
            }
            50% {
                opacity: 0.4;
                box-shadow: 0 0 12px var(--neon-green);
            }
        }

        .hero-title {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--smoke-white);
            margin: 0 0 16px;
            letter-spacing: 0.5px;
        }

        .hero-title .highlight {
            color: var(--cyber-cyan);
            text-shadow: 0 0 18px rgba(0, 242, 254, 0.4);
        }

        .hero-subtitle {
            font-size: 15px;
            color: var(--mist-gray);
            line-height: 1.7;
            margin: 0 0 28px;
            max-width: 440px;
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary-cyan {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #00d4e0 0%, var(--cyber-cyan) 100%);
            color: #090A0F;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 8px;
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
            border: none;
            cursor: pointer;
        }

        .btn-primary-cyan:hover {
            box-shadow: 0 0 28px rgba(0, 242, 254, 0.45);
            transform: translateY(-2px);
        }

        .btn-ghost-cyan {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: var(--cyber-cyan);
            font-weight: 600;
            font-size: 14px;
            padding: 11px 22px;
            border-radius: 8px;
            border: 1.5px solid rgba(0, 242, 254, 0.4);
            letter-spacing: 0.5px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .btn-ghost-cyan:hover {
            border-color: var(--cyber-cyan);
            box-shadow: 0 0 18px rgba(0, 242, 254, 0.25);
            background: rgba(0, 242, 254, 0.05);
            transform: translateY(-2px);
        }

        .hero-live-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .hero-live-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--cyber-cyan), var(--electric-purple));
            opacity: 0.7;
        }

        .hero-live-card .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 23, 68, 0.18);
            color: var(--alert-red);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 1px;
            margin-bottom: 14px;
            animation: liveTagPulse 1.8s ease-in-out infinite;
        }

        @keyframes liveTagPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .live-match-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .live-team {
            font-weight: 700;
            font-size: 15px;
            color: var(--smoke-white);
            text-align: center;
            flex: 1;
        }

        .live-score {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 800;
            color: var(--cyber-cyan);
            letter-spacing: 2px;
            font-feature-settings: "tnum";
            text-shadow: 0 0 14px rgba(0, 242, 254, 0.5);
            flex-shrink: 0;
        }

        .live-progress-bar {
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }

        .live-progress-fill {
            height: 100%;
            background: var(--cyber-cyan);
            border-radius: 2px;
            animation: progressAnim 3s ease-in-out infinite;
            width: 65%;
        }

        @keyframes progressAnim {
            0%,
            100% {
                width: 55%;
            }
            50% {
                width: 78%;
            }
        }

        /* 板块 */
        .section {
            padding: var(--section-gap) 0;
        }

        .section-header {
            margin-bottom: 36px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .section-header .accent-line {
            width: 4px;
            height: 28px;
            background: var(--cyber-cyan);
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
            margin-top: 2px;
        }

        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--smoke-white);
            letter-spacing: 0.5px;
            margin: 0;
        }

        .section-subtitle {
            font-size: 13.5px;
            color: var(--mist-gray);
            margin: 4px 0 0;
        }

        /* 数据指标卡片 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .stat-card .stat-icon {
            font-size: 26px;
            margin-bottom: 8px;
            display: block;
        }

        .stat-value {
            font-family: var(--font-mono);
            font-size: 30px;
            font-weight: 800;
            color: var(--cyber-cyan);
            letter-spacing: 1px;
            font-feature-settings: "tnum";
            line-height: 1.2;
        }

        .stat-label {
            font-size: 13px;
            color: var(--mist-gray);
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        .stat-change {
            font-size: 11px;
            font-weight: 600;
            margin-top: 4px;
            display: inline-block;
        }

        .stat-change.up {
            color: var(--neon-green);
        }

        .stat-change.info {
            color: var(--cyber-cyan);
        }

        /* 联赛卡片矩阵 */
        .league-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .league-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }

        .league-card:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }

        .league-card-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            background: #1a1d26;
            position: relative;
        }

        .league-card-body {
            padding: 18px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .league-card-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            width: fit-content;
        }

        .tag-cyan {
            background: rgba(0, 242, 254, 0.12);
            color: var(--cyber-cyan);
            border: 1px solid rgba(0, 242, 254, 0.25);
        }

        .tag-purple {
            background: rgba(196, 113, 245, 0.12);
            color: var(--electric-purple);
            border: 1px solid rgba(196, 113, 245, 0.25);
        }

        .tag-green {
            background: rgba(0, 230, 118, 0.12);
            color: var(--neon-green);
            border: 1px solid rgba(0, 230, 118, 0.25);
        }

        .league-card-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--smoke-white);
            letter-spacing: 0.5px;
            margin: 0;
        }

        .league-card-desc {
            font-size: 12.5px;
            color: var(--mist-gray);
            line-height: 1.5;
            margin: 0;
        }

        .league-card-stats {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: var(--titanium-gray);
            margin-top: auto;
        }

        .league-card-stats span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* 赛事表格 */
        .table-wrapper {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--card-border);
            background: var(--card-bg);
            box-shadow: var(--shadow-card);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            font-size: 13.5px;
        }

        .data-table thead th {
            background: rgba(196, 113, 245, 0.08);
            color: var(--electric-purple);
            font-weight: 700;
            font-size: 12.5px;
            letter-spacing: 0.5px;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 2px solid rgba(196, 113, 245, 0.2);
            white-space: nowrap;
        }

        .data-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--smoke-white);
            white-space: nowrap;
        }

        .data-table tbody tr {
            transition: background var(--transition-fast);
        }

        .data-table tbody tr:hover {
            background: rgba(0, 242, 254, 0.04);
        }

        .data-table tbody tr.row-live {
            background: rgba(0, 242, 254, 0.06);
        }

        .data-table .status-live {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--alert-red);
            font-weight: 700;
            font-size: 12px;
            animation: liveTagPulse 1.8s ease-in-out infinite;
        }

        .data-table .status-upcoming {
            color: var(--cyber-cyan);
            font-weight: 600;
            font-size: 12px;
        }

        .data-table .status-done {
            color: var(--titanium-gray);
            font-size: 12px;
        }

        .data-table .score-cell {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            color: var(--cyber-cyan);
            letter-spacing: 1px;
            font-feature-settings: "tnum";
        }

        .btn-table-link {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 11.5px;
            font-weight: 600;
            color: var(--cyber-cyan);
            border: 1px solid rgba(0, 242, 254, 0.3);
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-table-link:hover {
            background: rgba(0, 242, 254, 0.08);
            border-color: var(--cyber-cyan);
        }

        /* 排行 */
        .ranking-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
        }

        .ranking-item:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
        }

        .rank-badge {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            flex-shrink: 0;
            letter-spacing: 0.5px;
        }

        .rank-badge.rank-1 {
            background: linear-gradient(135deg, #C471F5, #a855f7);
            color: #fff;
            box-shadow: var(--shadow-glow-purple);
        }

        .rank-badge.rank-2 {
            background: linear-gradient(135deg, #b0b8c8, #8892a0);
            color: #fff;
        }

        .rank-badge.rank-3 {
            background: linear-gradient(135deg, #cd9b6d, #b8783f);
            color: #fff;
        }

        .rank-badge.rank-default {
            background: rgba(255, 255, 255, 0.06);
            color: var(--titanium-gray);
        }

        .rank-info {
            flex: 1;
            min-width: 0;
        }

        .rank-name {
            font-weight: 700;
            font-size: 14.5px;
            color: var(--smoke-white);
            letter-spacing: 0.5px;
        }

        .rank-detail {
            font-size: 11.5px;
            color: var(--mist-gray);
            margin-top: 2px;
        }

        .rank-heat {
            flex-shrink: 0;
            text-align: right;
        }

        .rank-heat-value {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            color: var(--cyber-cyan);
            font-feature-settings: "tnum";
        }

        .rank-heat-label {
            font-size: 10px;
            color: var(--mist-gray);
        }

        /* 评论 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .review-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            padding: 18px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .review-card:hover {
            border-color: var(--card-border-hover);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyber-cyan), var(--electric-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            flex-shrink: 0;
        }

        .review-user {
            font-weight: 600;
            font-size: 13.5px;
            color: var(--smoke-white);
        }

        .review-tag {
            font-size: 10.5px;
            color: var(--mist-gray);
            background: rgba(255, 255, 255, 0.04);
            padding: 2px 7px;
            border-radius: 10px;
        }

        .review-stars {
            color: #f5a623;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .review-content {
            font-size: 13px;
            color: #c5cad4;
            line-height: 1.6;
            margin: 0;
            flex: 1;
        }

        .review-time {
            font-size: 10.5px;
            color: var(--titanium-gray);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
        }

        .faq-item {
            background: var(--deep-obsidian);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }

        .faq-item.open {
            border-color: rgba(0, 242, 254, 0.3);
            box-shadow: 0 0 14px rgba(0, 242, 254, 0.08);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 18px;
            background: transparent;
            border: none;
            color: var(--smoke-white);
            font-size: 14.5px;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--cyber-cyan);
        }

        .faq-item.open .faq-question {
            color: var(--cyber-cyan);
        }

        .faq-icon {
            font-size: 14px;
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
            color: var(--cyber-cyan);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            background: var(--void-black);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 18px 16px;
        }

        .faq-answer p {
            margin: 0;
            font-size: 13.5px;
            color: var(--mist-gray);
            line-height: 1.7;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.06) 0%, rgba(196, 113, 245, 0.06) 100%);
            border-top: 2px solid rgba(0, 242, 254, 0.2);
            border-bottom: 2px solid rgba(0, 242, 254, 0.2);
            padding: 60px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--smoke-white);
            letter-spacing: 0.5px;
            margin: 0 0 10px;
        }

        .cta-desc {
            font-size: 14.5px;
            color: var(--mist-gray);
            margin: 0 0 28px;
        }

        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* 页脚 */
        .site-footer {
            background: var(--deep-obsidian);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 50px 0 30px;
            color: var(--mist-gray);
            font-size: 13px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 36px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--electric-purple);
            letter-spacing: 0.5px;
            margin: 0 0 14px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li a {
            color: var(--mist-gray);
            transition: color var(--transition-fast);
            font-size: 12.5px;
        }

        .footer-col ul li a:hover {
            color: var(--cyber-cyan);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            font-size: 11.5px;
            color: var(--titanium-gray);
        }

        .footer-bottom .sep {
            margin: 0 8px;
            opacity: 0.4;
        }

        .footer-bottom a {
            color: var(--titanium-gray);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--cyber-cyan);
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-title {
                font-size: 28px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .league-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section {
                padding: 50px 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(9, 10, 15, 0.97);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 16px;
                border-bottom: 1px solid rgba(0, 242, 254, 0.15);
                gap: 2px;
                z-index: 9999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links>li>a {
                width: 100%;
                padding: 10px 14px;
                font-size: 14px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero-section {
                padding: 50px 0 40px;
                min-height: auto;
            }
            .hero-title {
                font-size: 24px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-value {
                font-size: 24px;
            }
            .league-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .league-card-img {
                height: 120px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .ranking-item {
                flex-wrap: wrap;
                gap: 8px;
            }
            .section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 18px;
            }
            .cta-title {
                font-size: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .data-table {
                min-width: 650px;
                font-size: 12px;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 10px 8px;
            }
        }

        @media (max-width: 520px) {
            .container-main {
                padding: 0 14px;
            }
            .hero-title {
                font-size: 20px;
            }
            .hero-subtitle {
                font-size: 13px;
            }
            .hero-btns {
                flex-direction: column;
                gap: 8px;
            }
            .btn-primary-cyan,
            .btn-ghost-cyan {
                width: 100%;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-card {
                padding: 14px 10px;
            }
            .stat-value {
                font-size: 20px;
            }
            .stat-label {
                font-size: 11px;
            }
            .league-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .league-card-img {
                height: 140px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .section-title {
                font-size: 16px;
            }
            .cta-title {
                font-size: 18px;
            }
            .data-table {
                min-width: 500px;
                font-size: 11px;
            }
            .hero-live-card {
                padding: 16px;
            }
            .live-score {
                font-size: 22px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-void: #090A0F;
            --bg-obsidian: #15161C;
            --accent-cyan: #00F2FE;
            --accent-purple: #C471F5;
            --green-neon: #00E676;
            --red-alert: #FF1744;
            --gray-titanium: #9E9E9E;
            --text-smoke: #E0E3EB;
            --text-mist: #8490A6;
            --surface-card: #1E2028;
            --surface-light: #252832;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-cyan: 0 0 8px rgba(0, 242, 254, 0.15);
            --shadow-cyan-hover: 0 0 18px rgba(0, 242, 254, 0.35);
            --shadow-purple: 0 0 10px rgba(196, 113, 245, 0.2);
            --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
            --spacing-section: 70px;
            --spacing-section-mobile: 48px;
            --border-cyan-subtle: 1px solid rgba(0, 242, 254, 0.18);
            --border-cyan-glow: 1px solid rgba(0, 242, 254, 0.35);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::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: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-smoke);
            background: var(--bg-void);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }
        input,
        select {
            font-family: inherit;
        }

        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航加载条 ===== */
        .nav-loading-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-purple), var(--accent-cyan), transparent);
            background-size: 200% 100%;
            animation: loadingBarSlide 2.5s linear infinite;
            z-index: 10;
        }
        @keyframes loadingBarSlide {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        /* ===== 导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-void);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
            position: relative;
        }
        .logo-link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-decoration: none;
            flex-shrink: 0;
            z-index: 11;
        }
        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        .logo-sub {
            font-size: 9px;
            letter-spacing: 2.5px;
            color: var(--text-mist);
            line-height: 1;
        }
        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 6px;
        }
        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-mist);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.3px;
        }
        .nav-links li a:hover {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.06);
        }
        .nav-links li a.active {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.1);
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.25);
        }
        .btn-app-download {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(196, 113, 245, 0.2));
            border: 1px solid rgba(0, 242, 254, 0.4) !important;
            color: var(--accent-cyan) !important;
            font-weight: 600 !important;
            gap: 6px;
            animation: breatheGlow 2.5s ease-in-out infinite;
        }
        .btn-app-download:hover {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.3), rgba(196, 113, 245, 0.3)) !important;
            box-shadow: var(--shadow-cyan-hover) !important;
        }
        @keyframes breatheGlow {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(0, 242, 254, 0.2);
            }
            50% {
                box-shadow: 0 0 16px rgba(0, 242, 254, 0.45);
            }
        }
        .badge-hot {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--red-alert);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            animation: badgePulse 1.8s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-smoke);
            font-size: 22px;
            padding: 8px;
            z-index: 11;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .mobile-menu-btn:hover {
            color: var(--accent-cyan);
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            padding: 70px 0 60px;
            background: var(--bg-void);
            overflow: hidden;
        }
        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.14;
            z-index: 0;
            pointer-events: none;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 60% 40%, rgba(0, 242, 254, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 60%, rgba(196, 113, 245, 0.04) 0%, transparent 55%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1;
            min-width: 280px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(0, 242, 254, 0.12);
            border: 1px solid rgba(0, 242, 254, 0.3);
            color: var(--accent-cyan);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 18px;
        }
        .hero-title {
            font-size: 34px;
            font-weight: 800;
            color: var(--text-smoke);
            line-height: 1.25;
            margin: 0 0 16px;
            letter-spacing: 0.5px;
        }
        .hero-title .highlight {
            color: var(--accent-cyan);
            position: relative;
            text-shadow: 0 0 24px rgba(0, 242, 254, 0.35);
        }
        .hero-desc {
            font-size: 15px;
            color: var(--text-mist);
            line-height: 1.75;
            margin: 0 0 24px;
            max-width: 520px;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: linear-gradient(135deg, #00c8e8, #00e0f0);
            color: #090A0F;
            font-weight: 700;
            font-size: 14px;
            border-radius: 8px;
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
            text-decoration: none;
        }
        .btn-primary-cyan:hover {
            box-shadow: 0 0 28px rgba(0, 242, 254, 0.5);
            transform: translateY(-2px);
        }
        .btn-ghost-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            background: transparent;
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            border: 1px solid rgba(0, 242, 254, 0.45);
            letter-spacing: 0.4px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            text-decoration: none;
        }
        .btn-ghost-cyan:hover {
            background: rgba(0, 242, 254, 0.08);
            border-color: var(--accent-cyan);
            box-shadow: var(--shadow-cyan-hover);
        }
        .hero-rank-card {
            flex: 0 0 340px;
            background: var(--surface-card);
            border: var(--border-cyan-subtle);
            border-radius: var(--radius-lg);
            padding: 24px 22px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .hero-rank-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .rank-badge-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 16px;
            background: linear-gradient(135deg, var(--accent-purple), #9b3fdb);
            color: #fff;
            box-shadow: var(--shadow-purple);
            margin-bottom: 10px;
        }

        /* ===== 指标快看板 ===== */
        .metrics-strip {
            padding: 0 0 var(--spacing-section);
            position: relative;
            z-index: 2;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .metric-card {
            background: var(--surface-card);
            border: var(--border-cyan-subtle);
            border-radius: var(--radius-md);
            padding: 20px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .metric-card:hover {
            border-color: rgba(0, 242, 254, 0.35);
            box-shadow: var(--shadow-cyan-hover);
            transform: translateY(-3px);
        }
        .metric-icon {
            font-size: 22px;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            display: block;
        }
        .metric-value {
            font-size: 30px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-feature-settings: "tnum";
            letter-spacing: 0.5px;
            line-height: 1.1;
        }
        .metric-label {
            font-size: 12px;
            color: var(--text-mist);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        /* ===== 板块通用 ===== */
        .section-block {
            padding: var(--spacing-section) 0;
            position: relative;
            z-index: 2;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 16px;
        }
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-smoke);
            margin: 0;
            padding-left: 16px;
            position: relative;
            letter-spacing: 0.4px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 3px;
            background: var(--accent-cyan);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
        }
        .section-subtitle {
            font-size: 13px;
            color: var(--text-mist);
            letter-spacing: 0.3px;
        }

        /* ===== 游戏分类标签 ===== */
        .game-tags-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }
        .game-tag {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: var(--surface-card);
            color: var(--text-mist);
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .game-tag:hover,
        .game-tag.active-tag {
            background: rgba(0, 242, 254, 0.1);
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
        }

        /* ===== 排行榜表格 ===== */
        .rank-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: var(--border-cyan-subtle);
            background: var(--surface-card);
            box-shadow: var(--shadow-card);
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            font-size: 13.5px;
        }
        .rank-table thead th {
            background: var(--surface-light);
            color: var(--accent-purple);
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 0.8px;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 2px solid rgba(196, 113, 245, 0.2);
            white-space: nowrap;
            text-transform: uppercase;
        }
        .rank-table tbody td {
            padding: 12px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-smoke);
            white-space: nowrap;
            font-feature-settings: "tnum";
        }
        .rank-table tbody tr {
            transition: all var(--transition-fast);
        }
        .rank-table tbody tr:hover {
            background: rgba(0, 242, 254, 0.04);
        }
        .rank-table tbody tr.row-highlight {
            background: rgba(0, 242, 254, 0.07);
        }
        .rank-num-cell {
            font-weight: 800;
            font-size: 15px;
            text-align: center;
            width: 50px;
        }
        .rank-badge-top {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 13px;
            color: #fff;
        }
        .rank-badge-top.r1 {
            background: linear-gradient(135deg, var(--accent-purple), #9b3fdb);
            box-shadow: var(--shadow-purple);
        }
        .rank-badge-top.r2 {
            background: linear-gradient(135deg, #b0bec5, #78909c);
        }
        .rank-badge-top.r3 {
            background: linear-gradient(135deg, #a1887f, #6d4c41);
        }
        .team-name-cell {
            font-weight: 600;
            color: var(--text-smoke);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-logo-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: var(--surface-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            color: var(--accent-cyan);
        }
        .win-rate-bar {
            display: inline-block;
            height: 6px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--green-neon));
            min-width: 20px;
        }
        .win-rate-bar-bg {
            display: inline-block;
            width: 80px;
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            vertical-align: middle;
            margin-left: 8px;
            overflow: hidden;
        }

        /* ===== 战队实力对比卡片 ===== */
        .compare-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .compare-card {
            background: var(--surface-card);
            border: var(--border-cyan-subtle);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .compare-card:hover {
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: var(--shadow-cyan-hover);
            transform: translateY(-4px);
        }
        .compare-card .card-rank-ribbon {
            position: absolute;
            top: 14px;
            right: -28px;
            background: var(--accent-purple);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 32px;
            transform: rotate(45deg);
            letter-spacing: 0.5px;
        }
        .compare-card .card-header-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .compare-card .card-team-logo {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: var(--surface-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .compare-card .card-team-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-smoke);
        }
        .compare-card .card-team-region {
            font-size: 11px;
            color: var(--text-mist);
            letter-spacing: 0.5px;
        }
        .compare-stat-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 13px;
        }
        .compare-stat-row .stat-label {
            color: var(--text-mist);
        }
        .compare-stat-row .stat-val {
            font-weight: 600;
            color: var(--text-smoke);
            font-feature-settings: "tnum";
        }
        .compare-stat-row .stat-val.high {
            color: var(--green-neon);
        }

        /* ===== 选手数据 ===== */
        .player-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .player-card {
            background: var(--surface-card);
            border: var(--border-cyan-subtle);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .player-card:hover {
            border-color: rgba(0, 242, 254, 0.35);
            box-shadow: var(--shadow-cyan-hover);
            transform: translateY(-3px);
        }
        .player-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--surface-light);
            border: 2px solid rgba(0, 242, 254, 0.3);
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent-cyan);
        }
        .player-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-smoke);
            margin-bottom: 2px;
        }
        .player-role {
            font-size: 11px;
            color: var(--accent-purple);
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .player-stat {
            font-size: 13px;
            color: var(--text-mist);
            font-feature-settings: "tnum";
        }
        .player-stat strong {
            color: var(--accent-cyan);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--surface-card);
            border: var(--border-cyan-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-question {
            width: 100%;
            background: var(--bg-obsidian);
            border: none;
            color: var(--text-smoke);
            font-size: 14px;
            font-weight: 600;
            padding: 16px 18px;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.3px;
            transition: all var(--transition-fast);
            width: 100%;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-icon {
            flex-shrink: 0;
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-cyan);
            transition: transform var(--transition-fast);
            width: 20px;
            text-align: center;
        }
        .faq-item.open .faq-icon {
            color: var(--accent-purple);
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            background: var(--bg-void);
            padding: 0 18px;
            color: var(--text-mist);
            font-size: 13px;
            line-height: 1.75;
            border-top: 1px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 14px 18px;
            border-top-color: rgba(0, 242, 254, 0.1);
        }

        /* ===== CTA横幅 ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.08), rgba(196, 113, 245, 0.06));
            border: 1px solid rgba(0, 242, 254, 0.25);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-banner h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-smoke);
            margin: 0 0 10px;
            position: relative;
        }
        .cta-banner p {
            color: var(--text-mist);
            margin: 0 0 22px;
            position: relative;
            font-size: 14px;
        }
        .cta-banner .btn-primary-cyan {
            position: relative;
            font-size: 15px;
            padding: 13px 30px;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-obsidian);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 48px 0 20px;
            position: relative;
            z-index: 2;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-purple);
            letter-spacing: 1px;
            margin: 0 0 14px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-mist);
            font-size: 13px;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            font-size: 11px;
            color: var(--text-mist);
        }
        .footer-bottom a {
            color: var(--text-mist);
            transition: color var(--transition-fast);
            font-size: 11px;
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.2);
        }

        /* ===== 用户评论 ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--surface-card);
            border: var(--border-cyan-subtle);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            border-color: rgba(0, 242, 254, 0.3);
            box-shadow: var(--shadow-cyan-hover);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--surface-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 13px;
            color: var(--text-smoke);
        }
        .review-tag {
            font-size: 10px;
            color: var(--accent-purple);
            letter-spacing: 0.5px;
        }
        .review-stars {
            color: #f0c040;
            font-size: 11px;
        }
        .review-body {
            font-size: 12.5px;
            color: var(--text-mist);
            line-height: 1.6;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .metrics-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .compare-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .player-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-content {
                flex-direction: column;
                gap: 32px;
            }
            .hero-rank-card {
                flex: 0 0 auto;
                width: 100%;
                max-width: 400px;
            }
            .hero-title {
                font-size: 28px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .nav-links li a {
                padding: 6px 10px;
                font-size: 12px;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 62px;
                left: 0;
                right: 0;
                background: var(--bg-void);
                flex-direction: column;
                padding: 12px 16px;
                gap: 2px;
                border-bottom: 2px solid rgba(0, 242, 254, 0.2);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
                z-index: 10;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li a {
                width: 100%;
                padding: 10px 14px;
                border-radius: 6px;
            }
            .btn-app-download {
                justify-content: center;
            }
            .badge-hot {
                right: auto;
                left: calc(50% + 55px);
                top: 4px;
            }
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .metric-value {
                font-size: 24px;
            }
            .compare-cards-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto;
            }
            .player-cards-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .reviews-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .section-title {
                font-size: 18px;
            }
            .hero-title {
                font-size: 24px;
            }
            .hero-section {
                padding: 44px 0 36px;
            }
            .section-block {
                padding: var(--spacing-section-mobile) 0;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .cta-banner {
                padding: 28px 18px;
            }
            .cta-banner h3 {
                font-size: 19px;
            }
            .container-main {
                padding: 0 16px;
            }
            .game-tags-row {
                gap: 6px;
            }
            .game-tag {
                padding: 6px 12px;
                font-size: 11px;
            }
            .rank-table {
                min-width: 640px;
                font-size: 11px;
            }
            .rank-table thead th,
            .rank-table tbody td {
                padding: 8px 6px;
            }
        }
        @media (max-width: 520px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .metric-card {
                padding: 14px 10px;
            }
            .metric-value {
                font-size: 20px;
            }
            .player-cards-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary-cyan,
            .btn-ghost-cyan {
                width: 100%;
                justify-content: center;
            }
            .hero-title {
                font-size: 21px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .section-title {
                font-size: 16px;
            }
        }

/* roulang page: category4 */
:root {
            --bg-void: #090A0F;
            --bg-obsidian: #15161C;
            --bg-card: #1E2028;
            --accent-cyan: #00F2FE;
            --accent-purple: #C471F5;
            --neon-green: #00E676;
            --alert-red: #FF1744;
            --text-white: #E0E3EB;
            --text-mist: #8490A6;
            --border-glow: rgba(0, 242, 254, 0.15);
            --border-glow-strong: rgba(0, 242, 254, 0.4);
            --radius-card: 8px;
            --shadow-card: 0 0 12px rgba(0, 242, 254, 0.10);
            --shadow-card-hover: 0 0 22px rgba(0, 242, 254, 0.25);
            --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;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--bg-void);
            color: var(--text-white);
            line-height: 1.7;
            font-size: 14px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        input,
        select {
            font-family: inherit;
        }

        .container-main {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation Loading Bar */
        .nav-loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-purple), var(--accent-cyan), transparent);
            background-size: 200% 100%;
            animation: loadingBarShimmer 2.2s ease-in-out infinite;
            z-index: 10001;
        }

        @keyframes loadingBarShimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .site-header {
            position: sticky;
            top: 2px;
            z-index: 1000;
            background: rgba(9, 10, 15, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 242, 254, 0.12);
            transition: background var(--transition-smooth);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
            gap: 20px;
        }

        .logo-link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex-shrink: 0;
            text-decoration: none;
            gap: 1px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .logo-sub {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.8px;
            color: var(--text-mist);
            line-height: 1;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-mist);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.06);
        }

        .nav-links li a.active {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.10);
            box-shadow: inset 0 1px 0 rgba(0, 242, 254, 0.2);
        }

        .btn-app-download {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(196, 113, 245, 0.18) 100%) !important;
            border: 1px solid rgba(0, 242, 254, 0.35) !important;
            color: var(--accent-cyan) !important;
            font-weight: 600 !important;
            gap: 6px;
            animation: breatheGlow 2.6s ease-in-out infinite;
            padding: 8px 16px !important;
        }

        .btn-app-download:hover {
            border-color: var(--accent-cyan) !important;
            box-shadow: 0 0 18px rgba(0, 242, 254, 0.35) !important;
            background: rgba(0, 242, 254, 0.22) !important;
        }

        @keyframes breatheGlow {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(0, 242, 254, 0.18);
            }
            50% {
                box-shadow: 0 0 18px rgba(0, 242, 254, 0.4);
            }
        }

        .badge-hot {
            position: absolute;
            top: -6px;
            right: -18px;
            font-size: 9px;
            font-weight: 700;
            background: var(--alert-red);
            color: #fff;
            padding: 2px 7px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            animation: pulseBadge 1.4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulseBadge {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            color: var(--text-white);
            font-size: 22px;
            padding: 6px 10px;
            border-radius: 6px;
            border: 1px solid rgba(0, 242, 254, 0.25);
            transition: all var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
        }

        /* Section Styles */
        .section-padding {
            padding: 60px 0;
        }

        .section-title-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .section-title-bar {
            width: 4px;
            height: 28px;
            background: var(--accent-cyan);
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.3px;
        }

        /* Cards */
        .card-glow {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .card-glow:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-cyan-fill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: linear-gradient(135deg, #00C8E8 0%, var(--accent-cyan) 100%);
            color: #090A0F;
            font-weight: 700;
            font-size: 14px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
        }

        .btn-cyan-fill:hover {
            box-shadow: 0 0 24px rgba(0, 242, 254, 0.5);
            transform: translateY(-1px);
        }

        .btn-ghost-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            background: transparent;
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 14px;
            border-radius: 6px;
            border: 1.5px solid var(--accent-cyan);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
        }

        .btn-ghost-cyan:hover {
            background: rgba(0, 242, 254, 0.1);
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.3);
        }

        /* Data Number */
        .data-number {
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-cyan);
            line-height: 1;
        }

        /* Table Styles */
        .data-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-glow);
            background: var(--bg-card);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13.5px;
            min-width: 700px;
        }

        .data-table thead th {
            background: rgba(196, 113, 245, 0.12);
            color: var(--accent-purple);
            font-weight: 700;
            padding: 12px 16px;
            text-align: left;
            white-space: nowrap;
            letter-spacing: 0.3px;
            font-size: 12.5px;
            text-transform: uppercase;
        }

        .data-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-white);
            white-space: nowrap;
        }

        .data-table tbody tr {
            transition: background var(--transition-fast);
        }

        .data-table tbody tr:hover {
            background: rgba(0, 242, 254, 0.04);
        }

        .data-table tbody tr.row-highlight {
            background: rgba(0, 242, 254, 0.06);
        }

        .tag-cyan {
            display: inline-block;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            background: rgba(0, 242, 254, 0.12);
            color: var(--accent-cyan);
            letter-spacing: 0.3px;
        }

        .tag-purple {
            display: inline-block;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            background: rgba(196, 113, 245, 0.15);
            color: var(--accent-purple);
            letter-spacing: 0.3px;
        }

        .tag-green {
            display: inline-block;
            padding: 3px 10px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            background: rgba(0, 230, 118, 0.12);
            color: var(--neon-green);
            letter-spacing: 0.3px;
        }

        /* FAQ Accordion */
        .faq-item {
            background: var(--bg-obsidian);
            border: 1px solid rgba(0, 242, 254, 0.10);
            border-radius: var(--radius-card);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item.active {
            border-color: var(--border-glow-strong);
            box-shadow: 0 0 14px rgba(0, 242, 254, 0.15);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-white);
            transition: color var(--transition-fast);
            user-select: none;
        }

        .faq-question .faq-icon {
            color: var(--accent-cyan);
            font-size: 16px;
            flex-shrink: 0;
            transition: transform var(--transition-fast);
            width: 20px;
            text-align: center;
        }

        .faq-item.active .faq-question {
            color: var(--accent-cyan);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            color: var(--text-mist);
            font-size: 13.5px;
            line-height: 1.75;
            background: var(--bg-void);
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 16px 20px;
            border-top-color: rgba(0, 242, 254, 0.12);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-obsidian);
            border-top: 1px solid rgba(0, 242, 254, 0.10);
            padding: 48px 0 24px;
            margin-top: 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-col h4 {
            color: var(--accent-purple);
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--text-mist);
            font-size: 13px;
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-mist);
            font-size: 12px;
            line-height: 2;
        }

        .footer-bottom .sep {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.2);
        }

        .footer-bottom a {
            color: var(--text-mist);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            .nav-links li a {
                padding: 7px 10px;
                font-size: 12.5px;
            }
            .data-number {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 62px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(9, 10, 15, 0.97);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border-bottom: 1px solid rgba(0, 242, 254, 0.2);
                padding: 12px 16px;
                gap: 4px;
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li a {
                width: 100%;
                justify-content: flex-start;
                padding: 11px 16px;
                font-size: 14px;
            }
            .btn-app-download {
                justify-content: center !important;
            }
            .badge-hot {
                right: 8px;
            }
            .section-padding {
                padding: 40px 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .data-number {
                font-size: 22px;
            }
            .section-title {
                font-size: 18px;
            }
        }

        @media (max-width: 520px) {
            .container-main {
                padding: 0 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section-title-wrapper {
                gap: 8px;
                margin-bottom: 28px;
            }
            .section-title-bar {
                height: 22px;
                width: 3px;
            }
            .section-title {
                font-size: 16px;
            }
            .data-number {
                font-size: 20px;
            }
            .btn-cyan-fill,
            .btn-ghost-cyan {
                padding: 10px 18px;
                font-size: 13px;
            }
        }

/* roulang page: category5 */
:root {
            --void-black: #090A0F;
            --deep-obsidian: #15161C;
            --cyber-cyan: #00F2FE;
            --electric-purple: #C471F5;
            --neon-green: #00E676;
            --alert-red: #FF1744;
            --titanium-gray: #9E9E9E;
            --smoke-white: #E0E3EB;
            --mist-gray: #8490A6;
            --card-bg: #1E2028;
            --card-border: rgba(0, 242, 254, 0.18);
            --card-glow: 0 0 12px rgba(0, 242, 254, 0.12);
            --card-glow-hover: 0 0 22px rgba(0, 242, 254, 0.35);
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            background-color: var(--void-black);
            color: var(--smoke-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        input,
        textarea {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
        }

        .container-main {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* Navigation Loading Bar */
        .nav-loading-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--cyber-cyan), var(--electric-purple), transparent);
            animation: loadingBarSlide 2.5s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes loadingBarSlide {
            0% {
                transform: translateX(-100%);
            }
            50% {
                transform: translateX(40%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(9, 10, 15, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 242, 254, 0.12);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
            transition: all var(--transition-smooth);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            position: relative;
        }

        .logo-link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1px;
            flex-shrink: 0;
            z-index: 10;
        }

        .logo-text {
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--electric-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.15;
        }

        .logo-sub {
            font-size: 0.62rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            color: var(--mist-gray);
            line-height: 1;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--mist-gray);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--cyber-cyan);
            background-color: rgba(0, 242, 254, 0.06);
        }

        .nav-links li a.active {
            color: var(--cyber-cyan);
            background-color: rgba(0, 242, 254, 0.08);
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.25);
        }

        .btn-app-download {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(196, 113, 245, 0.15) 100%) !important;
            border: 1px solid rgba(0, 242, 254, 0.4) !important;
            color: var(--cyber-cyan) !important;
            gap: 6px;
            font-weight: 600 !important;
            animation: breatheGlow 2.2s ease-in-out infinite;
            position: relative;
        }

        .btn-app-download:hover {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(196, 113, 245, 0.25) 100%) !important;
            border-color: var(--cyber-cyan) !important;
            box-shadow: 0 0 18px rgba(0, 242, 254, 0.35);
        }

        @keyframes breatheGlow {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(0, 242, 254, 0.2);
            }
            50% {
                box-shadow: 0 0 18px rgba(0, 242, 254, 0.5);
            }
        }

        .badge-hot {
            position: absolute;
            top: -8px;
            right: -6px;
            background: var(--alert-red);
            color: #fff;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            letter-spacing: 0.05em;
            animation: pulseBadge 1.4s ease-in-out infinite;
            line-height: 1.3;
        }

        @keyframes pulseBadge {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.18);
            }
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--smoke-white);
            font-size: 1.6rem;
            padding: 6px 10px;
            border-radius: 6px;
            z-index: 10;
            transition: all var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            color: var(--cyber-cyan);
            background-color: rgba(0, 242, 254, 0.08);
        }

        /* Section spacing */
        .section-pad {
            padding: 64px 0;
        }

        .section-pad-lg {
            padding: 80px 0;
        }

        /* Section title */
        .section-title-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .section-title-line {
            width: 4px;
            height: 28px;
            background: var(--cyber-cyan);
            border-radius: 2px;
            flex-shrink: 0;
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--smoke-white);
            letter-spacing: 0.02em;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--mist-gray);
            margin-top: 4px;
        }

        /* Cards */
        .card-glow {
            background-color: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-md);
            box-shadow: var(--card-glow);
            transition: all var(--transition-smooth);
            overflow: hidden;
        }

        .card-glow:hover {
            border-color: rgba(0, 242, 254, 0.45);
            box-shadow: var(--card-glow-hover);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: linear-gradient(135deg, var(--cyber-cyan) 0%, #00c9e0 100%);
            color: #090A0F;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
            box-shadow: 0 4px 16px rgba(0, 242, 254, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 28px rgba(0, 242, 254, 0.5);
            transform: translateY(-1px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: transparent;
            color: var(--cyber-cyan);
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius-md);
            border: 1.5px solid rgba(0, 242, 254, 0.5);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.02em;
        }

        .btn-ghost:hover {
            background: rgba(0, 242, 254, 0.08);
            border-color: var(--cyber-cyan);
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
        }

        /* Tags */
        .tag-item {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            background: rgba(0, 242, 254, 0.08);
            color: var(--cyber-cyan);
            border: 1px solid rgba(0, 242, 254, 0.2);
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }

        .tag-item:hover {
            background: rgba(0, 242, 254, 0.16);
            border-color: var(--cyber-cyan);
            box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
        }

        .tag-purple {
            background: rgba(196, 113, 245, 0.08);
            color: var(--electric-purple);
            border-color: rgba(196, 113, 245, 0.2);
        }

        .tag-purple:hover {
            background: rgba(196, 113, 245, 0.16);
            border-color: var(--electric-purple);
            box-shadow: 0 0 10px rgba(196, 113, 245, 0.3);
        }

        .tag-green {
            background: rgba(0, 230, 118, 0.08);
            color: var(--neon-green);
            border-color: rgba(0, 230, 118, 0.2);
        }

        .tag-green:hover {
            background: rgba(0, 230, 118, 0.16);
            border-color: var(--neon-green);
            box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
        }

        /* Data metric */
        .metric-value {
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--cyber-cyan);
            line-height: 1.1;
        }

        .metric-label {
            font-size: 0.82rem;
            color: var(--mist-gray);
            margin-top: 4px;
        }

        /* FAQ Accordion */
        .faq-item {
            border: 1px solid rgba(0, 242, 254, 0.12);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            background-color: var(--deep-obsidian);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item.active {
            border-color: rgba(0, 242, 254, 0.4);
            box-shadow: 0 0 16px rgba(0, 242, 254, 0.15);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--smoke-white);
            transition: all var(--transition-fast);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--cyber-cyan);
        }

        .faq-icon {
            flex-shrink: 0;
            font-size: 1rem;
            color: var(--cyber-cyan);
            transition: transform var(--transition-fast);
            width: 20px;
            text-align: center;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            background-color: var(--void-black);
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 16px 20px;
            border-top-color: rgba(0, 242, 254, 0.15);
        }

        .faq-answer p {
            font-size: 0.88rem;
            color: var(--mist-gray);
            line-height: 1.8;
        }

        /* CTA banner */
        .cta-banner {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.06) 0%, rgba(196, 113, 245, 0.06) 100%);
            border: 1px solid rgba(0, 242, 254, 0.2);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Footer */
        .site-footer {
            background-color: var(--deep-obsidian);
            border-top: 2px solid rgba(0, 242, 254, 0.15);
            padding: 48px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--electric-purple);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--mist-gray);
            transition: all var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--cyber-cyan);
            padding-left: 4px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.78rem;
            color: var(--mist-gray);
            line-height: 1.9;
        }

        .footer-bottom a {
            color: var(--mist-gray);
            transition: color var(--transition-fast);
            margin: 0 2px;
        }

        .footer-bottom a:hover {
            color: var(--cyber-cyan);
        }

        .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.2);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            .container-main {
                padding: 0 20px;
            }
            .section-pad {
                padding: 48px 0;
            }
            .section-pad-lg {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: rgba(9, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 1px solid rgba(0, 242, 254, 0.15);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                width: 100%;
                padding: 12px 16px;
                font-size: 0.95rem;
                justify-content: flex-start;
                border-radius: 8px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .badge-hot {
                position: static;
                margin-left: 6px;
                animation: none;
            }
            .btn-app-download {
                justify-content: center;
                animation: none;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .cta-banner {
                padding: 32px 20px;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .metric-value {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .container-main {
                padding: 0 14px;
            }
            .section-pad {
                padding: 36px 0;
            }
            .section-pad-lg {
                padding: 44px 0;
            }
            .section-title-wrap {
                margin-bottom: 28px;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .logo-text {
                font-size: 1.1rem;
            }
            .btn-primary,
            .btn-ghost {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
            .cta-banner {
                padding: 24px 16px;
                border-radius: var(--radius-md);
            }
        }

        /* Hero background overlay */
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(9, 10, 15, 0.55) 0%, rgba(9, 10, 15, 0.85) 60%, rgba(9, 10, 15, 0.95) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Glow dot */
        .glow-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neon-green);
            box-shadow: 0 0 10px var(--neon-green), 0 0 24px var(--neon-green);
            animation: dotPulse 1.8s ease-in-out infinite;
            margin-right: 6px;
            vertical-align: middle;
        }

        @keyframes dotPulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.35;
            }
        }

        /* Review stars */
        .stars {
            color: #FFB800;
            letter-spacing: 1px;
        }

/* roulang page: category6 */
:root {
            --bg-void: #090A0F;
            --bg-obsidian: #15161C;
            --bg-card: #1E2028;
            --accent-cyan: #00F2FE;
            --accent-purple: #C471F5;
            --neon-green: #00E676;
            --danger-red: #FF1744;
            --neutral-gray: #9E9E9E;
            --text-primary: #E0E3EB;
            --text-secondary: #8490A6;
            --border-glow: rgba(0, 242, 254, 0.15);
            --border-glow-strong: rgba(0, 242, 254, 0.4);
            --radius: 8px;
            --radius-lg: 12px;
            --shadow-card: 0 0 8px rgba(0, 242, 254, 0.12);
            --shadow-card-hover: 0 0 18px rgba(0, 242, 254, 0.35);
            --shadow-purple: 0 0 10px rgba(196, 113, 245, 0.2);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --section-gap: 70px;
            --container-max: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            background-color: var(--bg-void);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            font-size: 14px;
            letter-spacing: 0.01em;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
            border-radius: 4px;
        }
        input,
        select,
        textarea {
            font-family: inherit;
            outline: none;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }
        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--accent-cyan) !important;
            box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.1) !important;
        }

        .container-main {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-void);
            border-bottom: 1px solid rgba(0, 242, 254, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .nav-loading-bar {
            height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
            background-size: 200% 100%;
            animation: loadingSlide 2s linear infinite;
            width: 100%;
        }
        @keyframes loadingSlide {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo-link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            line-height: 1.2;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.03em;
        }
        .logo-sub {
            font-size: 9px;
            color: var(--text-secondary);
            letter-spacing: 0.15em;
            font-weight: 500;
        }
        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links li a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .nav-links li a:hover {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.05);
        }
        .nav-links li a.active {
            color: var(--accent-cyan);
            background: rgba(0, 242, 254, 0.08);
            box-shadow: inset 0 0 0 1px rgba(0, 242, 254, 0.2);
            font-weight: 600;
        }
        .btn-app-download {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(196, 113, 245, 0.2));
            border: 1px solid rgba(0, 242, 254, 0.4) !important;
            color: var(--accent-cyan) !important;
            font-weight: 600 !important;
            padding: 8px 16px !important;
            gap: 6px;
            position: relative;
            overflow: visible;
            animation: breatheBtn 2.5s ease-in-out infinite;
        }
        @keyframes breatheBtn {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(0, 242, 254, 0.3);
            }
            50% {
                box-shadow: 0 0 16px rgba(0, 242, 254, 0.6);
            }
        }
        .btn-app-download:hover {
            background: rgba(0, 242, 254, 0.25) !important;
            border-color: var(--accent-cyan) !important;
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.5) !important;
        }
        .badge-hot {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--danger-red);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 10px;
            letter-spacing: 0.06em;
            animation: pulseBadge 1.4s ease-in-out infinite;
        }
        @keyframes pulseBadge {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 22px;
            padding: 8px 12px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-menu-btn:hover {
            background: rgba(0, 242, 254, 0.08);
            color: var(--accent-cyan);
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section-sm {
            padding: 40px 0;
        }
        .section-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.02em;
        }
        .section-title::before {
            content: '';
            display: inline-block;
            width: 3px;
            height: 20px;
            background: var(--accent-cyan);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
        }
        .section-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            letter-spacing: 0.02em;
        }

        /* ========== CARDS ========== */
        .card-glow {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            overflow: hidden;
        }
        .card-glow:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .card-glow-lg {
            border-radius: var(--radius-lg);
        }

        /* ========== BUTTONS ========== */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: linear-gradient(135deg, var(--accent-cyan), #00c9d9);
            color: #090A0F;
            font-weight: 700;
            border-radius: 6px;
            font-size: 14px;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: 0 0 22px rgba(0, 242, 254, 0.55);
            transform: translateY(-1px);
            color: #090A0F;
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            background: transparent;
            color: var(--accent-cyan);
            font-weight: 600;
            border-radius: 6px;
            font-size: 14px;
            letter-spacing: 0.03em;
            border: 1px solid rgba(0, 242, 254, 0.5);
            transition: all var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-ghost:hover {
            background: rgba(0, 242, 254, 0.08);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 14px rgba(0, 242, 254, 0.3);
        }
        .btn-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.03em;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .tag-cyan {
            background: rgba(0, 242, 254, 0.1);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 242, 254, 0.25);
        }
        .tag-purple {
            background: rgba(196, 113, 245, 0.1);
            color: var(--accent-purple);
            border: 1px solid rgba(196, 113, 245, 0.25);
        }
        .tag-green {
            background: rgba(0, 230, 118, 0.1);
            color: var(--neon-green);
            border: 1px solid rgba(0, 230, 118, 0.25);
        }
        .tag-gray {
            background: rgba(158, 158, 158, 0.1);
            color: var(--neutral-gray);
            border: 1px solid rgba(158, 158, 158, 0.2);
        }
        .tag-red {
            background: rgba(255, 23, 68, 0.1);
            color: var(--danger-red);
            border: 1px solid rgba(255, 23, 68, 0.25);
        }

        /* ========== STAT CARD ========== */
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius);
            padding: 20px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .stat-value {
            font-size: 30px;
            font-weight: 800;
            color: var(--accent-cyan);
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 12.5px;
            color: var(--text-secondary);
            margin-top: 6px;
            letter-spacing: 0.03em;
        }

        /* ========== TIMELINE ========== */
        .timeline-item {
            display: flex;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: all var(--transition-fast);
        }
        .timeline-item:hover {
            background: rgba(0, 242, 254, 0.02);
            border-radius: 6px;
            padding-left: 10px;
        }
        .timeline-dot {
            flex-shrink: 0;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
            margin-top: 6px;
        }
        .timeline-dot.purple {
            background: var(--accent-purple);
            box-shadow: 0 0 8px rgba(196, 113, 245, 0.5);
        }
        .timeline-dot.green {
            background: var(--neon-green);
            box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
        }
        .timeline-content {
            flex: 1;
            min-width: 0;
        }
        .timeline-meta {
            font-size: 11.5px;
            color: var(--text-secondary);
            letter-spacing: 0.03em;
            margin-bottom: 4px;
        }
        .timeline-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            letter-spacing: 0.02em;
            line-height: 1.4;
        }
        .timeline-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--bg-obsidian);
            border: 1px solid rgba(0, 242, 254, 0.08);
            border-radius: var(--radius);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: rgba(0, 242, 254, 0.2);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 18px;
            background: transparent;
            color: var(--text-primary);
            font-size: 14.5px;
            font-weight: 600;
            letter-spacing: 0.02em;
            cursor: pointer;
            border: none;
            text-align: left;
            transition: all var(--transition-fast);
            gap: 12px;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-icon {
            flex-shrink: 0;
            font-size: 16px;
            color: var(--accent-cyan);
            transition: transform var(--transition-smooth);
            font-weight: 700;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--accent-purple);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--bg-void);
            border-top: 1px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            border-top-color: rgba(0, 242, 254, 0.1);
        }
        .faq-answer-inner {
            padding: 0 18px 16px;
            color: var(--text-secondary);
            font-size: 13.5px;
            line-height: 1.7;
            letter-spacing: 0.02em;
        }

        /* ========== REVIEW CARD ========== */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: var(--border-glow-strong);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 13.5px;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-secondary);
        }
        .review-stars {
            color: #fbbf24;
            font-size: 12px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.06), rgba(196, 113, 245, 0.06));
            border: 1px solid rgba(0, 242, 254, 0.2);
            border-radius: var(--radius-lg);
            padding: 48px 36px;
            text-align: center;
            box-shadow: 0 0 30px rgba(0, 242, 254, 0.08);
        }
        .cta-banner h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: 0.03em;
        }
        .cta-banner p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 14px;
            letter-spacing: 0.02em;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-obsidian);
            border-top: 1px solid rgba(0, 242, 254, 0.08);
            padding: 50px 0 30px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-purple);
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 13px;
            transition: color var(--transition-fast);
            letter-spacing: 0.02em;
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 20px;
            letter-spacing: 0.02em;
        }
        .footer-bottom .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.15);
        }
        .footer-bottom a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .stat-card .stat-value {
                font-size: 24px;
            }
            .section {
                padding: 48px 0;
            }
            :root {
                --section-gap: 48px;
            }
        }
        @media (max-width: 768px) {
            .nav-inner {
                flex-wrap: nowrap;
            }
            .mobile-menu-btn {
                display: inline-flex;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-obsidian);
                border-radius: 8px;
                padding: 10px;
                border: 1px solid rgba(0, 242, 254, 0.1);
                gap: 2px;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                width: 100%;
                justify-content: flex-start;
                padding: 10px 14px;
            }
            .btn-app-download {
                width: 100%;
                justify-content: center;
            }
            .badge-hot {
                right: 20px;
                top: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .cta-banner {
                padding: 32px 20px;
            }
            .cta-banner h3 {
                font-size: 20px;
            }
            .section-title {
                font-size: 17px;
            }
            .timeline-item {
                flex-direction: column;
                gap: 8px;
            }
            .timeline-dot {
                display: none;
            }
            .stat-card {
                padding: 14px 10px;
            }
            .stat-value {
                font-size: 22px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .container-main {
                padding: 0 14px;
            }
            .section {
                padding: 32px 0;
            }
            :root {
                --section-gap: 32px;
            }
            .btn-primary,
            .btn-ghost {
                width: 100%;
                justify-content: center;
                font-size: 13px;
            }
            .cta-banner h3 {
                font-size: 18px;
            }
            .stat-value {
                font-size: 20px;
            }
            .review-card {
                padding: 14px;
            }
            .section-title {
                font-size: 16px;
            }
        }
