/* roulang page: index */
:root {
            --bg-deep: #0B0C10;
            --bg-card: #1F2128;
            --bg-hover: #2A2D35;
            --bg-nav: rgba(11, 12, 16, 0.88);
            --brand-orange: #F04E23;
            --brand-orange-glow: #FF6B3D;
            --accent-cyan: #00E5FF;
            --accent-cyan-dim: rgba(0, 229, 255, 0.18);
            --text-primary: #EAEBEC;
            --text-secondary: #C5C6C7;
            --text-muted: #8A8B8E;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(0, 229, 255, 0.3);
            --shadow-card: 0 4px 20px rgba(0, 229, 255, 0.06);
            --shadow-card-hover: 0 8px 32px rgba(0, 229, 255, 0.14);
            --shadow-orange: 0 4px 18px rgba(240, 78, 35, 0.3);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --gap-section: 80px;
            --font-hero: 56px;
            --font-h2: 28px;
            --font-h3: 20px;
            --font-body: 15px;
            --font-sm: 13px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-primary);
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            font-size: var(--font-body);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            background-image:
                radial-gradient(ellipse at 50% 0%, rgba(240, 78, 35, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 85% 15%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
            background-attachment: fixed;
        }

        a {
            text-decoration: none;
            color: var(--text-primary);
            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;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container-custom {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== NAVIGATION ========== */
        .navbar-main {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: var(--bg-nav);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-smooth), border-color var(--transition-smooth);
            height: 64px;
        }
        .navbar-main .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-logo {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.3px;
            color: var(--text-primary);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-logo .logo-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan);
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links-desktop a {
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .nav-links-desktop a:hover,
        .nav-links-desktop a.active {
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.06);
        }
        .nav-links-desktop a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
        }
        .nav-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: var(--font-sm);
            color: var(--text-muted);
        }
        .nav-meta .time-badge {
            background: var(--bg-card);
            padding: 5px 12px;
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
            letter-spacing: 0.5px;
            font-size: 12px;
            color: var(--accent-cyan);
        }
        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 22px;
            padding: 6px;
            line-height: 1;
        }
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 12, 16, 0.96);
            z-index: 1040;
            padding: 20px 24px;
            flex-direction: column;
            gap: 4px;
            overflow-y: auto;
        }
        .mobile-nav-overlay.show {
            display: flex;
        }
        .mobile-nav-overlay a {
            display: block;
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }
        .mobile-nav-overlay a:hover,
        .mobile-nav-overlay a.active {
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.06);
            border-color: var(--border-glow);
        }
        .bottom-capsule-nav {
            display: none;
            position: fixed;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1060;
            background: rgba(31, 33, 40, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 40px;
            padding: 6px 10px;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            gap: 2px;
        }
        .bottom-capsule-nav a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            min-width: 52px;
            text-align: center;
        }
        .bottom-capsule-nav a i {
            font-size: 15px;
            display: block;
            margin-bottom: 2px;
        }
        .bottom-capsule-nav a:hover,
        .bottom-capsule-nav a.active {
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.1);
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 78vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            padding-bottom: 60px;
            overflow: hidden;
            background: linear-gradient(160deg, #0B0C10 30%, #111318 55%, #0B0C10 80%);
            background-image:
                radial-gradient(ellipse at 30% 20%, rgba(240, 78, 35, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse at 72% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
                url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.004) 2px, rgba(255, 255, 255, 0.004) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.003) 2px, rgba(255, 255, 255, 0.003) 4px);
            pointer-events: none;
            z-index: 1;
        }
        .hero-section .container-custom {
            position: relative;
            z-index: 2;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-title {
            font-size: var(--font-hero);
            font-weight: 700;
            letter-spacing: -1px;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .hero-title .highlight {
            color: var(--brand-orange);
            position: relative;
        }
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-cyan);
            border-radius: 2px;
            opacity: 0.7;
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 480px;
        }
        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            border: none;
            background: var(--brand-orange);
            color: #fff;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-orange);
            letter-spacing: 0.3px;
        }
        .btn-primary-custom:hover {
            background: var(--brand-orange-glow);
            box-shadow: 0 6px 28px rgba(240, 78, 35, 0.45);
            transform: translateY(-1px);
            color: #fff;
        }
        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            border: 1.5px solid var(--text-muted);
            background: transparent;
            color: var(--text-primary);
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
        }
        .btn-outline-custom:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.04);
            transform: translateY(-1px);
        }
        .hero-dashboard {
            background: rgba(31, 33, 40, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
        }
        .hero-dashboard .dash-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }
        .hero-dashboard .dash-row:last-child {
            border-bottom: none;
        }
        .dash-team {
            font-weight: 600;
            color: var(--text-primary);
        }
        .dash-score {
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-cyan);
            letter-spacing: 1px;
        }
        .dash-live {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #FF3B3B;
            margin-right: 6px;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 59, 59, 0);
            }
        }
        .hero-stat-capsules {
            display: flex;
            gap: 16px;
            margin-top: 24px;
            flex-wrap: wrap;
        }
        .hero-stat-capsule {
            background: rgba(31, 33, 40, 0.75);
            border: 1px solid var(--border-subtle);
            border-radius: 30px;
            padding: 10px 20px;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(6px);
        }
        .hero-stat-capsule .capsule-num {
            font-weight: 700;
            font-size: 18px;
            color: var(--accent-cyan);
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
        }

        /* ========== PULSE BAR ========== */
        .pulse-bar {
            background: var(--bg-card);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 0;
            overflow: hidden;
            position: relative;
        }
        .pulse-bar-inner {
            display: flex;
            gap: 40px;
            animation: scroll-pulse 30s linear infinite;
            white-space: nowrap;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .pulse-bar-inner .pulse-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .pulse-item .pulse-dot-live {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-cyan);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        @keyframes scroll-pulse {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: var(--gap-section) 0;
        }
        .section-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            font-weight: 600;
        }
        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }
        .section-desc {
            color: var(--text-muted);
            font-size: 15px;
            margin-bottom: 36px;
            max-width: 600px;
        }
        .section-header {
            margin-bottom: 40px;
        }

        /* ========== STAT CARDS ========== */
        .stat-card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-orange), var(--accent-cyan));
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .stat-card:hover::before {
            opacity: 1;
        }
        .stat-card .stat-icon {
            font-size: 28px;
            color: var(--accent-cyan);
            margin-bottom: 10px;
        }
        .stat-card .stat-value {
            font-size: 36px;
            font-weight: 700;
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
            color: var(--text-primary);
            letter-spacing: -1px;
            font-variant-numeric: tabular-nums;
        }
        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .stat-card .stat-change {
            display: inline-block;
            font-size: 12px;
            color: #4ADE80;
            margin-top: 6px;
            font-weight: 500;
        }

        /* ========== GAME CLASSIFICATION DOCK ========== */
        .game-dock-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .game-dock-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 16px 20px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .game-dock-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .game-dock-card .game-icon-block {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 900;
            color: #fff;
            transition: all var(--transition-smooth);
        }
        .game-dock-card:hover .game-icon-block {
            transform: scale(1.1);
        }
        .game-dock-card .game-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .game-dock-card .game-count {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .icon-lol {
            background: linear-gradient(135deg, #C8A84E, #8B6914);
        }
        .icon-dota {
            background: linear-gradient(135deg, #D32F2F, #6D1A1A);
        }
        .icon-cs2 {
            background: linear-gradient(135deg, #DE9B35, #5C3D0E);
        }
        .icon-valorant {
            background: linear-gradient(135deg, #FF4655, #8B1A24);
        }
        .icon-pubg {
            background: linear-gradient(135deg, #F0A500, #7D5500);
        }
        .icon-hok {
            background: linear-gradient(135deg, #4A90D9, #1B3A5C);
        }

        /* ========== MATCH LIST ========== */
        .match-list-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 8px;
        }
        .match-list-table tr {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .match-list-table tr:hover {
            background: var(--bg-hover);
            box-shadow: var(--shadow-card-hover);
        }
        .match-list-table td {
            padding: 16px 18px;
            vertical-align: middle;
            border: none;
            font-size: 14px;
        }
        .match-list-table td:first-child {
            border-radius: var(--radius-md) 0 0 var(--radius-md);
        }
        .match-list-table td:last-child {
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }
        .match-game-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(0, 229, 255, 0.1);
            color: var(--accent-cyan);
        }
        .match-status-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #FF3B3B;
            font-weight: 600;
            font-size: 13px;
        }
        .match-status-upcoming {
            color: var(--text-muted);
            font-size: 13px;
        }
        .match-teams {
            font-weight: 600;
            color: var(--text-primary);
        }
        .match-score-display {
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
            font-weight: 700;
            font-size: 15px;
            color: var(--accent-cyan);
        }
        .match-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 8px;
        }

        /* ========== SERVICE MATRIX ========== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .service-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .service-card .svc-icon {
            font-size: 32px;
            color: var(--brand-orange);
            margin-bottom: 14px;
        }
        .service-card h3 {
            font-size: var(--font-h3);
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .service-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .service-card .svc-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
            font-weight: 600;
            font-size: 14px;
            color: var(--accent-cyan);
            transition: gap var(--transition-fast);
        }
        .service-card .svc-link:hover {
            gap: 10px;
            color: var(--accent-cyan);
        }

        /* ========== POWER COMPARE ========== */
        .power-compare-block {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 24px;
            align-items: center;
            text-align: center;
        }
        .power-team-card {
            padding: 20px;
            border-radius: var(--radius-md);
            background: var(--bg-hover);
            border: 1px solid var(--border-subtle);
        }
        .power-team-card .power-name {
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .power-bars {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .power-bar-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .power-bar-fill {
            flex: 1;
            height: 6px;
            border-radius: 3px;
            background: var(--bg-deep);
            overflow: hidden;
        }
        .power-bar-fill span {
            display: block;
            height: 100%;
            border-radius: 3px;
            background: var(--accent-cyan);
            transition: width 0.6s ease;
        }
        .power-vs {
            font-size: 36px;
            font-weight: 900;
            color: var(--brand-orange);
            letter-spacing: 2px;
        }

        /* ========== RANKING TABLE ========== */
        .ranking-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 6px;
        }
        .ranking-table thead th {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            padding: 12px 16px;
            border: none;
            font-weight: 500;
        }
        .ranking-table tbody tr {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .ranking-table tbody tr:hover {
            background: var(--bg-hover);
            box-shadow: var(--shadow-card-hover);
        }
        .ranking-table tbody td {
            padding: 14px 16px;
            vertical-align: middle;
            border: none;
            font-size: 14px;
        }
        .ranking-table tbody td:first-child {
            border-radius: var(--radius-md) 0 0 var(--radius-md);
        }
        .ranking-table tbody td:last-child {
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
        }
        .rank-num {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-cyan);
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
        }
        .rank-num.top1 {
            color: #FFD700;
        }
        .rank-num.top2 {
            color: #C0C0C0;
        }
        .rank-num.top3 {
            color: #CD7F32;
        }
        .rank-change-up {
            color: #4ADE80;
            font-size: 12px;
        }
        .rank-change-down {
            color: #EF4444;
            font-size: 12px;
        }

        /* ========== NEWS GRID ========== */
        .news-double-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .news-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            display: flex;
            gap: 16px;
            padding: 16px;
        }
        .news-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .news-card .news-thumb {
            width: 140px;
            height: 100px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--bg-hover);
        }
        .news-card .news-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .news-card .news-tag {
            font-size: 11px;
            color: var(--accent-cyan);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .news-card .news-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .news-card .news-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ========== REVIEW CARDS ========== */
        .review-scroll {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .review-scroll::-webkit-scrollbar {
            height: 4px;
        }
        .review-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .review-scroll::-webkit-scrollbar-thumb {
            background: var(--border-subtle);
            border-radius: 4px;
        }
        .review-card {
            min-width: 300px;
            max-width: 340px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            scroll-snap-align: start;
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-hover);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: #F5A623;
            font-size: 13px;
        }
        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== FAQ ========== */
        .faq-accordion .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-accordion .accordion-button {
            background: var(--bg-card);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 18px 20px;
            box-shadow: none;
            border: none;
            transition: all var(--transition-fast);
            gap: 10px;
        }
        .faq-accordion .accordion-button::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-cyan);
            flex-shrink: 0;
            box-shadow: 0 0 8px var(--accent-cyan);
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: var(--bg-hover);
            color: var(--accent-cyan);
            box-shadow: none;
        }
        .faq-accordion .accordion-button::after {
            filter: brightness(2);
        }
        .faq-accordion .accordion-body {
            background: var(--bg-hover);
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            padding: 16px 20px 20px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #1A1C23 0%, #1F2128 40%, #1A1C23 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 56px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        .cta-section .cta-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-desc {
            color: var(--text-secondary);
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }
        .cta-buttons {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* ========== FOOTER ========== */
        .footer-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border-subtle);
            padding: 56px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            align-items: center;
        }
        .footer-bottom a {
            color: var(--text-muted);
            font-size: 12px;
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .footer-logo-text {
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            :root {
                --font-hero: 44px;
                --gap-section: 60px;
            }
            .stat-card-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .game-dock-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-inner {
                gap: 32px;
            }
        }
        @media (max-width: 992px) {
            :root {
                --font-hero: 36px;
                --font-h2: 24px;
                --gap-section: 48px;
            }
            .hero-inner {
                grid-template-columns: 1fr;
            }
            .hero-dashboard {
                max-width: 500px;
                margin: 0 auto;
            }
            .stat-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-dock-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-double-grid {
                grid-template-columns: 1fr;
            }
            .power-compare-block {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .power-vs {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-links-desktop {
                display: none;
            }
            .nav-hamburger {
                display: block;
            }
            .bottom-capsule-nav {
                display: flex;
            }
            .nav-meta .time-badge {
                display: none;
            }
            body {
                padding-bottom: 90px;
            }
        }
        @media (max-width: 768px) {
            :root {
                --font-hero: 30px;
                --font-h2: 22px;
                --font-h3: 18px;
                --gap-section: 40px;
            }
            .hero-section {
                min-height: auto;
                padding-top: 90px;
                padding-bottom: 40px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .stat-card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-card .stat-value {
                font-size: 26px;
            }
            .game-dock-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .service-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .cta-section {
                padding: 36px 20px;
            }
            .cta-section .cta-title {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .match-list-table td {
                padding: 10px 12px;
                font-size: 12px;
            }
            .hero-stat-capsules {
                gap: 8px;
            }
            .hero-stat-capsule {
                padding: 8px 14px;
                font-size: 11px;
            }
            .ranking-table thead {
                display: none;
            }
            .ranking-table tbody td {
                display: block;
                text-align: right;
                padding: 8px 12px;
                font-size: 13px;
            }
            .ranking-table tbody td::before {
                content: attr(data-label);
                float: left;
                font-weight: 600;
                color: var(--text-muted);
                font-size: 11px;
            }
            .ranking-table tbody tr {
                display: block;
                margin-bottom: 8px;
                border-radius: var(--radius-md);
            }
            .news-card {
                flex-direction: column;
            }
            .news-card .news-thumb {
                width: 100%;
                height: 160px;
            }
            .review-card {
                min-width: 260px;
                max-width: 280px;
            }
            .bottom-capsule-nav a {
                padding: 8px 10px;
                font-size: 10px;
                min-width: 40px;
            }
            .bottom-capsule-nav a i {
                font-size: 13px;
            }
        }
        @media (max-width: 520px) {
            :root {
                --font-hero: 26px;
                --font-h2: 20px;
                --gap-section: 32px;
            }
            .hero-section {
                padding-top: 80px;
                padding-bottom: 30px;
            }
            .stat-card-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-value {
                font-size: 22px;
            }
            .game-dock-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .service-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .cta-section .cta-title {
                font-size: 20px;
            }
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 11px 20px;
                font-size: 13px;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .nav-logo {
                font-size: 17px;
            }
            .power-compare-block {
                padding: 16px;
            }
        }

        /* ========== UTILITIES ========== */
        .text-cyan {
            color: var(--accent-cyan);
        }
        .text-orange {
            color: var(--brand-orange);
        }
        .text-muted-custom {
            color: var(--text-muted);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-section {
            margin-top: var(--gap-section);
        }
        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
            margin: 0;
            border: none;
        }
        .tag-pill {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.4px;
            background: rgba(0, 229, 255, 0.08);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

/* roulang page: category2 */
:root {
            --bg-deep: #0B0C10;
            --bg-card: #1F2128;
            --bg-hover: #2A2D35;
            --accent-orange: #F04E23;
            --accent-cyan: #00E5FF;
            --accent-orange-glow: #FF6B3D;
            --text-primary: #EAEBEC;
            --text-secondary: #C5C6C7;
            --text-muted: #8A8B8E;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(0, 229, 255, 0.25);
            --shadow-card: 0 4px 24px rgba(0, 229, 255, 0.06);
            --shadow-hover: 0 12px 40px rgba(0, 229, 255, 0.14);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 64px;
            --spacing-2xl: 80px;
            --font-hero: 56px;
            --font-h2: 28px;
            --font-h3: 20px;
            --font-body: 15px;
            --font-small: 13px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            font-size: var(--font-body);
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-deep);
            background-image:
                radial-gradient(ellipse at 50% 15%, rgba(0, 229, 255, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 85% 40%, rgba(240, 78, 35, 0.03) 0%, transparent 55%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* ========== NAVIGATION ========== */
        .navbar-main {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(11, 12, 16, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 0 var(--spacing-md);
            height: 60px;
            display: flex;
            align-items: center;
        }

        .nav-inner {
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-md);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            opacity: 0.85;
            color: var(--text-primary);
        }
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
            flex-shrink: 0;
            animation: logoPulse 2.5s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%,
            100% {
                box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
            }
            50% {
                box-shadow: 0 0 22px rgba(0, 229, 255, 0.75);
            }
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links-desktop a {
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links-desktop a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links-desktop a.active {
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.08);
            font-weight: 600;
        }
        .nav-links-desktop a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
        }

        .nav-meta {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
        }
        .time-badge {
            font-size: 12px;
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.07);
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
            letter-spacing: 0.3px;
            border: 1px solid rgba(0, 229, 255, 0.15);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
        }
        .nav-hamburger {
            display: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 22px;
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
        }
        .nav-hamburger:hover {
            border-color: var(--border-glow);
            color: var(--accent-cyan);
        }

        /* ========== CONTAINER ========== */
        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-section {
            padding-top: 84px;
            padding-bottom: 0;
        }
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: var(--font-small);
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .breadcrumb-nav a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb-nav .separator {
            color: var(--text-muted);
            font-size: 11px;
        }
        .breadcrumb-nav .current {
            color: var(--accent-cyan);
            font-weight: 500;
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            padding: var(--spacing-lg) 0 var(--spacing-xl);
            position: relative;
        }
        .page-hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
            pointer-events: none;
            border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
        }
        .page-hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: var(--spacing-xl);
            flex-wrap: wrap;
        }
        .page-hero-text {
            flex: 1;
            min-width: 300px;
        }
        .page-hero-text h1 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-primary);
            margin-bottom: var(--spacing-sm);
            line-height: 1.25;
        }
        .page-hero-text h1 .highlight {
            color: var(--accent-cyan);
        }
        .page-hero-text .subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: var(--spacing-md);
            max-width: 540px;
        }
        .page-hero-stats {
            display: flex;
            gap: var(--spacing-md);
            flex-wrap: wrap;
        }
        .hero-stat-capsule {
            background: rgba(31, 33, 40, 0.8);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            text-align: center;
            min-width: 100px;
            flex: 1;
            transition: all var(--transition-smooth);
        }
        .hero-stat-capsule:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .hero-stat-capsule .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: -0.3px;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
        }
        .hero-stat-capsule .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        .page-hero-visual {
            flex: 0 0 380px;
            min-width: 300px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            padding: var(--spacing-md);
            position: relative;
            overflow: hidden;
        }
        .page-hero-visual img {
            border-radius: var(--radius-md);
            width: 100%;
            height: auto;
            display: block;
        }
        .page-hero-visual::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(11, 12, 16, 0.7), transparent);
            pointer-events: none;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }

        /* ========== SECTION TITLES ========== */
        .section-title-group {
            margin-bottom: var(--spacing-lg);
        }
        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-orange);
            margin-bottom: var(--spacing-xs);
            padding: 4px 10px;
            border-radius: 4px;
            background: rgba(240, 78, 35, 0.1);
            border: 1px solid rgba(240, 78, 35, 0.2);
        }
        .section-title-group h2 {
            font-size: var(--font-h2);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            margin: 0;
        }
        .section-title-group p {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 6px;
        }

        /* ========== TAB SWITCHER ========== */
        .tab-switcher-bar {
            display: flex;
            gap: 4px;
            background: var(--bg-card);
            border-radius: 40px;
            padding: 5px;
            border: 1px solid var(--border-subtle);
            max-width: 420px;
            margin-bottom: var(--spacing-lg);
        }
        .tab-switcher-bar .tab-btn {
            flex: 1;
            padding: 10px 20px;
            border-radius: 36px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            background: transparent;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            text-align: center;
            cursor: pointer;
            border: none;
        }
        .tab-switcher-bar .tab-btn.active {
            background: var(--accent-orange);
            color: #fff;
            box-shadow: 0 4px 16px rgba(240, 78, 35, 0.35);
        }
        .tab-switcher-bar .tab-btn:hover:not(.active) {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        /* ========== RADAR CHART PLACEHOLDER ========== */
        .radar-section {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
            position: relative;
            overflow: hidden;
        }
        .radar-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            border: 1px solid rgba(0, 229, 255, 0.06);
            pointer-events: none;
        }
        .radar-inner {
            display: flex;
            gap: var(--spacing-xl);
            align-items: center;
            flex-wrap: wrap;
        }
        .radar-chart-area {
            flex: 0 0 320px;
            height: 320px;
            background: radial-gradient(circle at center, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .radar-svg-placeholder {
            width: 280px;
            height: 280px;
            opacity: 0.9;
        }
        .radar-polygon-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.08);
            stroke-width: 1;
        }
        .radar-polygon-data {
            fill: rgba(0, 229, 255, 0.12);
            stroke: var(--accent-cyan);
            stroke-width: 2;
            stroke-linejoin: round;
            filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
        }
        .radar-dot {
            fill: var(--accent-cyan);
            r: 5;
            filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.7));
        }
        .radar-label {
            fill: var(--text-muted);
            font-size: 11px;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            text-anchor: middle;
            dominant-baseline: middle;
        }
        .radar-info {
            flex: 1;
            min-width: 260px;
        }
        .radar-info h3 {
            font-size: var(--font-h3);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--spacing-sm);
        }
        .radar-info .radar-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-sm);
        }
        .radar-metric-item {
            background: rgba(31, 33, 40, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all var(--transition-fast);
        }
        .radar-metric-item:hover {
            border-color: var(--border-glow);
        }
        .radar-metric-item .metric-name {
            font-size: 13px;
            color: var(--text-muted);
        }
        .radar-metric-item .metric-value {
            font-weight: 700;
            color: var(--accent-cyan);
            font-size: 16px;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
        }

        /* ========== TABLE SECTION ========== */
        .table-card-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: var(--spacing-xl);
        }
        .table-card-header {
            padding: var(--spacing-md) var(--spacing-lg);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
        }
        .table-card-header h3 {
            font-size: var(--font-h3);
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }
        .table-badge-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .table-badge {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 14px;
            font-weight: 500;
            border: 1px solid;
        }
        .badge-hot {
            color: var(--accent-orange);
            border-color: rgba(240, 78, 35, 0.35);
            background: rgba(240, 78, 35, 0.08);
        }
        .badge-rising {
            color: #00E676;
            border-color: rgba(0, 230, 118, 0.35);
            background: rgba(0, 230, 118, 0.08);
        }
        .table-custom {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .table-custom thead th {
            background: rgba(31, 33, 40, 0.7);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
            text-align: left;
        }
        .table-custom tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-secondary);
            vertical-align: middle;
        }
        .table-custom tbody tr {
            transition: all var(--transition-fast);
        }
        .table-custom tbody tr:hover {
            background: rgba(0, 229, 255, 0.03);
        }
        .table-custom .rank-num {
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Menlo', monospace;
        }
        .table-custom .rank-1 {
            color: #FFD700;
        }
        .table-custom .rank-2 {
            color: #C0C0C0;
        }
        .table-custom .rank-3 {
            color: #CD7F32;
        }
        .team-name-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .team-icon-dot {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
            color: #fff;
        }
        .win-rate-bar {
            display: inline-block;
            height: 6px;
            border-radius: 3px;
            background: var(--accent-cyan);
            margin-right: 8px;
            vertical-align: middle;
            box-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
        }
        .btn-table-action {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.3);
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
        }
        .btn-table-action:hover {
            background: rgba(0, 229, 255, 0.1);
            border-color: var(--accent-cyan);
            color: #fff;
        }

        /* ========== TIMELINE ========== */
        .timeline-section {
            margin-bottom: var(--spacing-2xl);
        }
        .timeline-list {
            position: relative;
            padding-left: 28px;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, var(--accent-cyan), rgba(0, 229, 255, 0.1), transparent);
        }
        .timeline-item {
            position: relative;
            margin-bottom: var(--spacing-lg);
            padding-left: var(--spacing-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            transition: all var(--transition-smooth);
        }
        .timeline-item:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-hover);
            transform: translateX(3px);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -23px;
            top: 20px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            border: 2px solid var(--bg-deep);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
            z-index: 2;
        }
        .timeline-item .tl-time {
            font-size: 11px;
            color: var(--accent-cyan);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .timeline-item .tl-title {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .timeline-item .tl-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .timeline-item .tl-tags {
            display: flex;
            gap: 6px;
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .tl-tag {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 10px;
            background: rgba(0, 229, 255, 0.08);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.2);
            font-weight: 500;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(31, 33, 40, 0.9) 0%, rgba(11, 12, 16, 0.95) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl) var(--spacing-lg);
            text-align: center;
            margin-bottom: var(--spacing-2xl);
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(240, 78, 35, 0.08) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
            margin-bottom: var(--spacing-sm);
        }
        .cta-section p {
            color: var(--text-secondary);
            font-size: 16px;
            position: relative;
            z-index: 1;
            margin-bottom: var(--spacing-lg);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-primary {
            display: inline-block;
            padding: 14px 36px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 16px;
            background: var(--accent-orange);
            color: #fff;
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            border: none;
            cursor: pointer;
        }
        .btn-cta-primary:hover {
            background: var(--accent-orange-glow);
            box-shadow: 0 8px 30px rgba(240, 78, 35, 0.4);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-cta-outline {
            display: inline-block;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--text-muted);
            letter-spacing: 0.3px;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            cursor: pointer;
            margin-left: var(--spacing-sm);
        }
        .btn-cta-outline:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2);
        }

        /* ========== FAQ ========== */
        .faq-section {
            margin-bottom: var(--spacing-2xl);
        }
        .faq-accordion .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-sm);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-accordion .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }
        .faq-question {
            width: 100%;
            padding: 18px 20px;
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-sm);
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-dot-indicator {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
            flex-shrink: 0;
            margin-right: 8px;
        }
        .faq-icon {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 20px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        /* ========== REVIEWS ========== */
        .reviews-section {
            margin-bottom: var(--spacing-2xl);
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-md);
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(240, 78, 35, 0.4), rgba(0, 229, 255, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            flex-shrink: 0;
        }
        .review-user-info .review-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .review-user-info .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: #FFB800;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .review-body {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }
        .review-time {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ========== FOOTER ========== */
        .footer-section {
            background: rgba(15, 16, 20, 0.95);
            border-top: 1px solid var(--border-subtle);
            padding: var(--spacing-xl) 0 var(--spacing-md);
            margin-top: var(--spacing-2xl);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.5px;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-logo-text {
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: var(--spacing-md);
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            font-size: 12px;
            color: var(--text-muted);
            justify-content: center;
            align-items: center;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .page-hero-visual {
                flex: 0 0 300px;
            }
            .radar-chart-area {
                flex: 0 0 260px;
                height: 260px;
            }
            .radar-svg-placeholder {
                width: 220px;
                height: 220px;
            }
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 992px) {
            .nav-links-desktop {
                gap: 2px;
            }
            .nav-links-desktop a {
                padding: 6px 10px;
                font-size: 13px;
            }
            .page-hero-text h1 {
                font-size: 32px;
            }
            .page-hero-content {
                flex-direction: column;
                text-align: center;
            }
            .page-hero-visual {
                flex: 0 0 auto;
                width: 100%;
                max-width: 450px;
            }
            .page-hero-stats {
                justify-content: center;
            }
            .page-hero-text .subtitle {
                margin-left: auto;
                margin-right: auto;
                max-width: 100%;
            }
            .radar-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .radar-metrics {
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .tab-switcher-bar {
                max-width: 100%;
            }
            .table-custom {
                font-size: 12px;
            }
            .table-custom thead th,
            .table-custom tbody td {
                padding: 10px 8px;
            }
        }
        @media (max-width: 768px) {
            .navbar-main {
                height: 52px;
                padding: 0 12px;
            }
            .nav-links-desktop {
                display: none;
            }
            .nav-hamburger {
                display: inline-flex;
            }
            .nav-logo {
                font-size: 17px;
            }
            .time-badge {
                font-size: 10px;
                padding: 4px 8px;
            }
            .page-hero {
                padding: var(--spacing-md) 0 var(--spacing-lg);
            }
            .page-hero-text h1 {
                font-size: 26px;
            }
            .page-hero-stats {
                gap: 8px;
            }
            .hero-stat-capsule {
                padding: 10px 14px;
                min-width: 70px;
            }
            .hero-stat-capsule .stat-value {
                font-size: 20px;
            }
            .section-title-group h2 {
                font-size: 22px;
            }
            .cta-section h2 {
                font-size: 24px;
            }
            .btn-cta-outline {
                margin-left: 0;
                margin-top: var(--spacing-sm);
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 4px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-sm);
            }
            .radar-chart-area {
                flex: 0 0 220px;
                height: 220px;
            }
            .radar-svg-placeholder {
                width: 180px;
                height: 180px;
            }
            .tab-switcher-bar {
                flex-direction: row;
                border-radius: 30px;
                padding: 3px;
            }
            .tab-switcher-bar .tab-btn {
                padding: 8px 14px;
                font-size: 12px;
            }
            .table-card-wrapper {
                overflow-x: auto;
            }
            .table-custom {
                min-width: 600px;
            }
            .breadcrumb-section {
                padding-top: 68px;
            }
        }
        @media (max-width: 520px) {
            .page-hero-text h1 {
                font-size: 22px;
            }
            .hero-stat-capsule {
                padding: 8px 10px;
                min-width: 60px;
            }
            .hero-stat-capsule .stat-value {
                font-size: 17px;
            }
            .hero-stat-capsule .stat-label {
                font-size: 10px;
            }
            .radar-chart-area {
                flex: 0 0 180px;
                height: 180px;
            }
            .radar-svg-placeholder {
                width: 150px;
                height: 150px;
            }
            .radar-metrics {
                grid-template-columns: 1fr;
            }
            .cta-section {
                padding: var(--spacing-lg) var(--spacing-sm);
            }
            .cta-section h2 {
                font-size: 20px;
            }
            .btn-cta-primary {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

/* roulang page: category1 */
:root {
            --bg-deep: #0B0C10;
            --bg-card: #1F2128;
            --bg-hover: #2A2D35;
            --bg-surface: #262830;
            --accent-orange: #F04E23;
            --accent-orange-glow: rgba(240, 78, 35, 0.55);
            --accent-cyan: #00E5FF;
            --accent-cyan-glow: rgba(0, 229, 255, 0.18);
            --text-primary: #EAEAEC;
            --text-secondary: #C5C6C7;
            --text-muted: #8A8B8F;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.10);
            --border-glow: rgba(0, 229, 255, 0.25);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-card: 0 4px 20px rgba(0, 229, 255, 0.06);
            --shadow-card-hover: 0 8px 32px rgba(0, 229, 255, 0.14);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-hero: 48px;
            --font-h1: 34px;
            --font-h2: 26px;
            --font-h3: 18px;
            --font-body: 15px;
            --font-sm: 13px;
            --font-xs: 11px;
            --section-gap: 80px;
            --section-gap-sm: 50px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            font-size: var(--font-body);
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-deep);
            background-image:
                radial-gradient(ellipse at 15% 20%, rgba(0, 229, 255, 0.025) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 65%, rgba(240, 78, 35, 0.03) 0%, transparent 55%),
                radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.008) 0%, transparent 70%);
            background-attachment: fixed;
            min-height: 100vh;
            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;
        }
        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 4px;
        }

        ::selection {
            background: var(--accent-orange);
            color: #fff;
        }

        /* ========== 容器 ========== */
        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
        }

        /* ========== 导航 ========== */
        .navbar-main {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(11, 12, 16, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-smooth), border-color var(--transition-smooth);
        }
        .navbar-main.scrolled {
            background: rgba(11, 12, 16, 0.95);
            border-bottom-color: var(--border-medium);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            height: 58px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: #fff;
        }
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 10px var(--accent-cyan-glow);
            flex-shrink: 0;
            animation: pulse-dot 2.2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 8px var(--accent-cyan-glow);
            }
            50% {
                box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
            }
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-links-desktop a {
            display: inline-block;
            padding: 7px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links-desktop a.active {
            color: #fff;
            background: rgba(240, 78, 35, 0.2);
            border: 1px solid rgba(240, 78, 35, 0.35);
            font-weight: 600;
        }
        .nav-meta {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .time-badge {
            font-size: var(--font-xs);
            font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.07);
            border: 1px solid rgba(0, 229, 255, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            letter-spacing: 0.8px;
            white-space: nowrap;
        }
        .nav-hamburger {
            display: none;
            background: none;
            color: #fff;
            font-size: 20px;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        @media (max-width: 992px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-hamburger {
                display: block;
            }
            .time-badge {
                display: none;
            }
            .nav-inner {
                height: 54px;
                padding: 0 16px;
            }
        }
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .mobile-menu-overlay.show {
            display: block;
            opacity: 1;
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--bg-card);
            z-index: 1001;
            padding: 24px 20px;
            transition: right var(--transition-smooth);
            border-left: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .mobile-drawer.show {
            right: 0;
        }
        .mobile-drawer a {
            display: block;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .mobile-drawer a:hover,
        .mobile-drawer a.active {
            color: #fff;
            background: rgba(240, 78, 35, 0.18);
        }
        .mobile-drawer .drawer-close {
            align-self: flex-end;
            background: none;
            color: #fff;
            font-size: 22px;
            padding: 6px 10px;
            border-radius: 6px;
            margin-bottom: 8px;
        }
        @media (max-width: 992px) {
            .mobile-menu-overlay,
            .mobile-drawer {
                display: block;
            }
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-section {
            padding-top: 78px;
            padding-bottom: 10px;
        }
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: var(--font-sm);
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }
        .breadcrumb-nav a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb-nav .sep {
            color: var(--text-muted);
            font-size: 10px;
        }
        .breadcrumb-nav .current {
            color: var(--accent-cyan);
            font-weight: 500;
        }

        /* ========== 页面标题区 ========== */
        .page-hero-mini {
            position: relative;
            padding: 36px 0 48px;
            background: linear-gradient(180deg, rgba(31, 33, 40, 0.6) 0%, transparent 100%);
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .page-hero-mini::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .page-hero-mini .inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
        }
        .page-hero-mini h1 {
            font-size: var(--font-h1);
            font-weight: 700;
            color: #fff;
            margin: 0;
            letter-spacing: -0.5px;
            line-height: 1.25;
        }
        .page-hero-mini h1 span {
            color: var(--accent-cyan);
        }
        .page-hero-mini .subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 6px 0 0;
            max-width: 520px;
        }
        .hero-mini-stats {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .hero-mini-stat {
            text-align: center;
            min-width: 80px;
        }
        .hero-mini-stat .val {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-orange);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
            letter-spacing: -0.5px;
        }
        .hero-mini-stat .lbl {
            font-size: var(--font-xs);
            color: var(--text-muted);
            margin-top: 2px;
        }
        @media (max-width: 768px) {
            .page-hero-mini {
                padding: 24px 0 32px;
            }
            .page-hero-mini h1 {
                font-size: 26px;
            }
            .hero-mini-stats {
                gap: 16px;
            }
            .hero-mini-stat .val {
                font-size: 22px;
            }
        }

        /* ========== 板块通用间距 ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: var(--section-gap-sm) 0;
            }
        }
        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }
        .section-desc {
            font-size: var(--font-body);
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
        }

        /* ========== 数据指标卡片行 ========== */
        .metric-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        @media (max-width: 1200px) {
            .metric-row {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .metric-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        .metric-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .metric-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 2px;
            background: var(--accent-cyan);
            opacity: 0;
            transition: opacity var(--transition-smooth);
            border-radius: 2px;
        }
        .metric-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            background: var(--bg-hover);
        }
        .metric-card:hover::after {
            opacity: 0.7;
        }
        .metric-card .metric-icon {
            font-size: 22px;
            color: var(--accent-cyan);
            margin-bottom: 8px;
        }
        .metric-card .metric-value {
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
            letter-spacing: -0.5px;
        }
        .metric-card .metric-label {
            font-size: var(--font-sm);
            color: var(--text-muted);
            margin-top: 4px;
        }
        .metric-card .metric-change {
            font-size: var(--font-xs);
            color: #4ADE80;
            margin-top: 2px;
            font-weight: 500;
        }

        /* ========== 游戏分类图标墙 ========== */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        @media (max-width: 992px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .game-grid {
                grid-template-columns: 1fr;
            }
        }
        .game-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .game-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }
        .game-card .game-card-img-wrap {
            position: relative;
            width: 100%;
            height: 160px;
            overflow: hidden;
            background: var(--bg-surface);
        }
        .game-card .game-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .game-card:hover .game-card-img-wrap img {
            transform: scale(1.06);
        }
        .game-card .game-card-img-wrap .game-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(11, 12, 16, 0.85) 100%);
        }
        .game-card .game-card-img-wrap .game-icon-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(11, 12, 16, 0.75);
            border: 1.5px solid var(--accent-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent-cyan);
            backdrop-filter: blur(6px);
        }
        .game-card .game-card-body {
            padding: 18px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .game-card .game-name {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
        }
        .game-card .game-meta-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: var(--font-xs);
            color: var(--text-muted);
        }
        .game-card .game-meta-row span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .game-card .game-meta-row .highlight {
            color: var(--accent-cyan);
            font-weight: 600;
        }
        .game-card .game-card-footer {
            padding: 10px 16px 16px;
        }
        .game-card .btn-game-entry {
            display: inline-block;
            padding: 8px 20px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            background: var(--accent-orange);
            transition: all var(--transition-fast);
            text-align: center;
            width: 100%;
        }
        .game-card .btn-game-entry:hover {
            background: #e04420;
            box-shadow: 0 0 18px var(--accent-orange-glow);
            color: #fff;
        }

        /* ========== 纵深数据面板 ========== */
        .deep-data-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
        }
        .deep-data-panel::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -40px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(240, 78, 35, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .deep-data-panel .panel-inner {
            position: relative;
            z-index: 1;
        }
        .deep-data-panel .panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }
        .deep-data-panel .panel-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .deep-data-panel .panel-title .badge-game {
            font-size: 12px;
            font-weight: 600;
            background: rgba(0, 229, 255, 0.12);
            color: var(--accent-cyan);
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }
        .deep-data-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 768px) {
            .deep-data-grid {
                grid-template-columns: 1fr;
            }
        }
        .deep-data-item {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }
        .deep-data-item:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-card);
        }
        .deep-data-item .ddi-label {
            font-size: var(--font-xs);
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .deep-data-item .ddi-value {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Courier New', monospace;
        }
        .deep-data-item .ddi-sub {
            font-size: var(--font-xs);
            color: var(--text-secondary);
            margin-top: 4px;
        }
        .deep-data-item .ddi-bar {
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px;
            margin-top: 10px;
            overflow: hidden;
        }
        .deep-data-item .ddi-bar-fill {
            height: 100%;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
            transition: width 1.2s ease;
        }

        /* ========== 对局数据表格 ========== */
        .table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
        }
        .table-wrap table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
            font-size: 14px;
        }
        .table-wrap thead th {
            background: var(--bg-surface);
            color: var(--text-muted);
            font-weight: 600;
            font-size: var(--font-xs);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }
        .table-wrap tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .table-wrap tbody tr {
            transition: background var(--transition-fast);
        }
        .table-wrap tbody tr:hover {
            background: rgba(0, 229, 255, 0.03);
        }
        .table-wrap tbody tr:last-child td {
            border-bottom: none;
        }
        .table-wrap .status-live {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4ADE80;
            box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
            margin-right: 6px;
            animation: pulse-live 1.5s ease-in-out infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 6px rgba(74, 222, 128, 0.4);
            }
            50% {
                box-shadow: 0 0 14px rgba(74, 222, 128, 0.7);
            }
        }
        .table-wrap .btn-table-action {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.35);
            background: transparent;
            transition: all var(--transition-fast);
        }
        .table-wrap .btn-table-action:hover {
            background: rgba(0, 229, 255, 0.1);
            color: #fff;
            border-color: var(--accent-cyan);
        }

        /* ========== 攻略专题卡片组 ========== */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        @media (max-width: 992px) {
            .guide-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .guide-grid {
                grid-template-columns: 1fr;
            }
        }
        .guide-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        .guide-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .guide-card .guide-img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            background: var(--bg-surface);
        }
        .guide-card .guide-body {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .guide-card .guide-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            color: var(--accent-orange);
            background: rgba(240, 78, 35, 0.1);
            padding: 3px 10px;
            border-radius: 12px;
            width: fit-content;
            letter-spacing: 0.5px;
        }
        .guide-card .guide-title {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            line-height: 1.4;
        }
        .guide-card .guide-desc {
            font-size: var(--font-xs);
            color: var(--text-muted);
            line-height: 1.5;
        }
        .guide-card .guide-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-cyan);
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--transition-fast);
        }
        .guide-card .guide-link:hover {
            gap: 8px;
            color: #fff;
        }

        /* ========== 用户评论 ========== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 992px) {
            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .review-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .review-card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-card);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-card .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 1.5px solid var(--border-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }
        .review-card .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-card .review-stars {
            color: #F59E0B;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .review-card .review-text {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .review-card .review-time {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: auto;
        }

        /* ========== FAQ 手风琴 ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: var(--border-medium);
        }
        .faq-item.open {
            border-color: var(--border-glow);
            background: var(--bg-hover);
        }
        .faq-question {
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 600;
            color: #fff;
            font-size: 15px;
            user-select: none;
        }
        .faq-question .faq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan-glow);
            flex-shrink: 0;
            margin-right: 8px;
        }
        .faq-question .faq-arrow {
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
            font-size: 14px;
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 18px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(31, 33, 40, 0.9) 0%, rgba(42, 45, 53, 0.7) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(240, 78, 35, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }
        .cta-section .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-section p {
            font-size: var(--font-body);
            color: var(--text-secondary);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-primary {
            display: inline-block;
            padding: 13px 32px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            background: var(--accent-orange);
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .btn-cta-primary:hover {
            background: #e04420;
            box-shadow: 0 0 22px var(--accent-orange-glow);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-cta-secondary {
            display: inline-block;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            border: 1px solid var(--border-medium);
            background: transparent;
            transition: all var(--transition-fast);
            margin-left: 10px;
        }
        .btn-cta-secondary:hover {
            border-color: var(--accent-cyan);
            color: #fff;
            background: rgba(0, 229, 255, 0.05);
        }
        @media (max-width: 576px) {
            .cta-section {
                padding: 32px 20px;
            }
            .btn-cta-secondary {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        /* ========== 页脚 ========== */
        .footer-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: var(--section-gap);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: var(--font-xs);
            color: var(--text-muted);
            justify-content: center;
            align-items: center;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* ========== 回到顶部 ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-medium);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--bg-hover);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 16px var(--accent-cyan-glow);
        }

        @media (max-width: 768px) {
            :root {
                --font-h1: 26px;
                --font-h2: 21px;
                --font-h3: 16px;
                --section-gap: 50px;
            }
            .back-to-top {
                bottom: 20px;
                right: 16px;
                width: 38px;
                height: 38px;
                font-size: 16px;
            }
        }

/* roulang page: category3 */
:root {
            --bg-deep: #0B0C10;
            --bg-card: #1F2128;
            --bg-hover: #2A2D35;
            --accent-orange: #F04E23;
            --accent-cyan: #00E5FF;
            --text-white: #EAEBED;
            --text-muted: #C5C6C7;
            --text-dim: #8A8B8E;
            --border-light: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(0, 229, 255, 0.25);
            --shadow-card: 0 4px 20px rgba(0, 229, 255, 0.08);
            --shadow-hover: 0 8px 32px rgba(0, 229, 255, 0.18);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-white);
            line-height: 1.7;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            background-image:
                radial-gradient(ellipse at 50% 0%, rgba(240, 78, 35, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
            background-attachment: fixed;
        }

        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;
            border: none;
            font-family: inherit;
        }

        input,
        select {
            font-family: inherit;
        }

        /* Container */
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
        }

        /* Navigation */
        .navbar-main {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(11, 12, 16, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            height: 62px;
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 28px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: -0.3px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav-logo:hover {
            color: var(--text-white);
        }

        .logo-dot {
            width: 10px;
            height: 10px;
            background: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--accent-cyan);
            flex-shrink: 0;
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .nav-links-desktop a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .nav-links-desktop a:hover {
            color: var(--text-white);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-links-desktop a.active {
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.08);
            font-weight: 600;
        }

        .nav-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .time-badge {
            font-size: 12px;
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.07);
            padding: 6px 12px;
            border-radius: 20px;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: 0.5px;
            border: 1px solid rgba(0, 229, 255, 0.15);
            white-space: nowrap;
        }

        .nav-hamburger {
            display: none;
            background: none;
            color: var(--text-white);
            font-size: 22px;
            padding: 8px;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }

        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 992px) {
            .nav-links-desktop {
                display: none;
                position: absolute;
                top: 62px;
                left: 0;
                right: 0;
                background: rgba(11, 12, 16, 0.96);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 16px 24px;
                gap: 4px;
                border-bottom: 1px solid var(--border-light);
                z-index: 1049;
            }
            .nav-links-desktop.show {
                display: flex;
            }
            .nav-links-desktop a {
                width: 100%;
                padding: 12px 16px;
                font-size: 15px;
                border-radius: 10px;
            }
            .nav-hamburger {
                display: block;
            }
            .time-badge {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .nav-logo {
                font-size: 17px;
                gap: 7px;
            }
            .logo-dot {
                width: 8px;
                height: 8px;
            }
            .nav-inner {
                padding: 0 14px;
                gap: 12px;
            }
            .navbar-main {
                height: 56px;
            }
            .nav-links-desktop {
                top: 56px;
            }
        }

        /* Page spacing */
        .page-content {
            padding-top: 62px;
        }

        @media (max-width: 576px) {
            .page-content {
                padding-top: 56px;
            }
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            padding: 18px 0;
            background: rgba(31, 33, 40, 0.5);
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb-bar .breadcrumb {
            margin: 0;
            padding: 0;
            font-size: 13px;
            color: var(--text-dim);
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb-bar .breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb-bar .breadcrumb li+li::before {
            content: '/';
            color: var(--text-dim);
            font-size: 11px;
        }
        .breadcrumb-bar .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .breadcrumb-bar .breadcrumb a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb-bar .breadcrumb .current {
            color: var(--accent-cyan);
            font-weight: 600;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            padding: 60px 0 50px;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 12, 16, 0.75) 0%, rgba(11, 12, 16, 0.9) 60%, var(--bg-deep) 100%);
            z-index: 0;
        }
        .page-banner .banner-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 800px;
        }
        .page-banner .banner-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(240, 78, 35, 0.2);
            border: 1px solid rgba(240, 78, 35, 0.35);
            color: var(--accent-orange);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            width: fit-content;
        }
        .page-banner .banner-tag .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-orange);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(240, 78, 35, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(240, 78, 35, 0);
            }
        }
        .page-banner h1 {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: -0.8px;
            line-height: 1.2;
        }
        .page-banner h1 span {
            color: var(--accent-cyan);
        }
        .page-banner .banner-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 600px;
        }
        .page-banner .banner-stats-row {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .page-banner .banner-stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .page-banner .banner-stat-item .stat-num {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-cyan);
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            letter-spacing: -0.5px;
        }
        .page-banner .banner-stat-item .stat-label {
            font-size: 12px;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0 36px;
            }
            .page-banner h1 {
                font-size: 28px;
            }
            .page-banner .banner-desc {
                font-size: 14px;
            }
            .page-banner .banner-stats-row {
                gap: 20px;
            }
            .page-banner .banner-stat-item .stat-num {
                font-size: 22px;
            }
        }

        /* Section titles */
        .section-title-group {
            margin-bottom: 32px;
        }
        .section-title-group .section-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-cyan);
            font-weight: 600;
            margin-bottom: 8px;
        }
        .section-title-group h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: -0.4px;
            margin: 0;
        }
        .section-title-group .section-sub {
            font-size: 14px;
            color: var(--text-dim);
            margin-top: 6px;
        }

        @media (max-width: 768px) {
            .section-title-group h2 {
                font-size: 21px;
            }
        }

        /* Filter Bar */
        .filter-bar {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: flex-end;
            margin-bottom: 40px;
            box-shadow: var(--shadow-card);
        }
        .filter-bar .filter-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .filter-bar .filter-group label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dim);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .filter-bar select,
        .filter-bar input {
            background: var(--bg-hover);
            border: 1px solid var(--border-light);
            color: var(--text-white);
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            min-width: 150px;
            transition: all var(--transition-fast);
            outline: none;
        }
        .filter-bar select:focus,
        .filter-bar input:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
        }
        .filter-bar select option {
            background: var(--bg-hover);
            color: var(--text-white);
        }
        .filter-bar .btn-filter {
            background: var(--accent-orange);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 14px;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-bar .btn-filter:hover {
            background: #e0431f;
            box-shadow: 0 0 18px rgba(240, 78, 35, 0.45);
        }
        .filter-bar .btn-reset {
            background: transparent;
            border: 1px solid var(--text-dim);
            color: var(--text-muted);
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 14px;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-bar .btn-reset:hover {
            border-color: var(--text-muted);
            color: var(--text-white);
        }

        @media (max-width: 768px) {
            .filter-bar {
                flex-direction: column;
                gap: 12px;
                padding: 16px;
            }
            .filter-bar select,
            .filter-bar input {
                min-width: 100%;
                width: 100%;
            }
            .filter-bar .btn-filter,
            .filter-bar .btn-reset {
                width: 100%;
                text-align: center;
            }
        }

        /* Schedule Tabs */
        .schedule-tabs {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 5px;
            border: 1px solid var(--border-light);
            width: fit-content;
        }
        .schedule-tabs .tab-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            background: transparent;
            color: var(--text-muted);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .schedule-tabs .tab-btn.active {
            background: var(--accent-orange);
            color: #fff;
            font-weight: 600;
        }
        .schedule-tabs .tab-btn:hover:not(.active) {
            color: var(--text-white);
            background: rgba(255, 255, 255, 0.04);
        }

        @media (max-width: 576px) {
            .schedule-tabs {
                width: 100%;
                justify-content: center;
                gap: 2px;
            }
            .schedule-tabs .tab-btn {
                padding: 8px 13px;
                font-size: 12px;
            }
        }

        /* Schedule Table */
        .schedule-table-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            margin-bottom: 48px;
        }
        .schedule-table-wrap .table-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-light);
            flex-wrap: wrap;
            gap: 12px;
        }
        .schedule-table-wrap .table-header-bar .table-title {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .schedule-table-wrap .table-header-bar .table-title .live-indicator {
            width: 9px;
            height: 9px;
            background: #00E676;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        .schedule-table-wrap .table-header-bar .update-time {
            font-size: 12px;
            color: var(--text-dim);
        }
        .schedule-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .schedule-table-wrap table thead th {
            background: rgba(31, 33, 40, 0.8);
            color: var(--text-dim);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-light);
            white-space: nowrap;
            text-align: left;
        }
        .schedule-table-wrap table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-white);
            vertical-align: middle;
        }
        .schedule-table-wrap table tbody tr {
            transition: background var(--transition-fast);
        }
        .schedule-table-wrap table tbody tr:hover {
            background: rgba(0, 229, 255, 0.03);
        }
        .schedule-table-wrap table tbody tr:last-child td {
            border-bottom: none;
        }
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        .status-badge.live {
            background: rgba(0, 230, 118, 0.15);
            color: #00E676;
            border: 1px solid rgba(0, 230, 118, 0.3);
        }
        .status-badge.upcoming {
            background: rgba(0, 229, 255, 0.1);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 229, 255, 0.25);
        }
        .status-badge.finished {
            background: rgba(197, 198, 199, 0.08);
            color: var(--text-dim);
            border: 1px solid rgba(197, 198, 199, 0.2);
        }
        .team-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .team-cell .team-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: var(--bg-hover);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--accent-cyan);
            flex-shrink: 0;
            border: 1px solid var(--border-light);
        }
        .score-display {
            font-weight: 700;
            font-size: 16px;
            font-variant-numeric: tabular-nums;
            font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
            color: var(--accent-cyan);
            letter-spacing: 1px;
        }
        .btn-sm-outline {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid var(--accent-cyan);
            color: var(--accent-cyan);
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-sm-outline:hover {
            background: rgba(0, 229, 255, 0.12);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
        }
        .btn-sm-filled {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            background: var(--accent-orange);
            color: #fff;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-sm-filled:hover {
            background: #e0431f;
            box-shadow: 0 0 12px rgba(240, 78, 35, 0.4);
        }

        @media (max-width: 768px) {
            .schedule-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .schedule-table-wrap table {
                min-width: 700px;
            }
            .schedule-table-wrap .table-header-bar {
                padding: 12px 14px;
            }
            .schedule-table-wrap table thead th,
            .schedule-table-wrap table tbody td {
                padding: 10px 12px;
                font-size: 12px;
            }
        }

        /* Highlight Match Cards */
        .highlight-matches {
            margin-bottom: 48px;
        }
        .highlight-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .highlight-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .highlight-card .hc-banner {
            height: 140px;
            background-size: cover;
            background-position: center;
            position: relative;
            flex-shrink: 0;
        }
        .highlight-card .hc-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, var(--bg-card) 100%);
        }
        .highlight-card .hc-banner .hc-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 1;
            background: var(--accent-orange);
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .highlight-card .hc-body {
            padding: 16px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .highlight-card .hc-matchup {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-weight: 700;
            font-size: 18px;
        }
        .highlight-card .hc-matchup .vs-divider {
            color: var(--accent-orange);
            font-size: 22px;
            font-weight: 800;
        }
        .highlight-card .hc-info {
            font-size: 12px;
            color: var(--text-dim);
            text-align: center;
        }
        .highlight-card .hc-actions {
            display: flex;
            gap: 8px;
            margin-top: auto;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .highlight-card .hc-banner {
                height: 110px;
            }
            .highlight-card .hc-matchup {
                font-size: 15px;
                gap: 10px;
            }
        }

        /* Live Quick Entry */
        .live-quick-entry {
            background: linear-gradient(135deg, rgba(240, 78, 35, 0.1) 0%, rgba(0, 229, 255, 0.06) 100%);
            border: 1px solid rgba(240, 78, 35, 0.3);
            border-radius: var(--radius-xl);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 48px;
            box-shadow: 0 0 40px rgba(240, 78, 35, 0.08);
        }
        .live-quick-entry .lqe-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .live-quick-entry .lqe-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            flex-shrink: 0;
            animation: pulse-dot 2s ease-in-out infinite;
            box-shadow: 0 0 28px rgba(240, 78, 35, 0.5);
        }
        .live-quick-entry .lqe-text h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            margin: 0 0 4px;
        }
        .live-quick-entry .lqe-text p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }
        .live-quick-entry .btn-live-go {
            background: var(--accent-orange);
            color: #fff;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 15px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .live-quick-entry .btn-live-go:hover {
            background: #e0431f;
            box-shadow: 0 0 24px rgba(240, 78, 35, 0.5);
            transform: scale(1.03);
        }

        @media (max-width: 768px) {
            .live-quick-entry {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
                gap: 18px;
            }
            .live-quick-entry .lqe-left {
                flex-direction: column;
                text-align: center;
            }
            .live-quick-entry .lqe-text h3 {
                font-size: 17px;
            }
        }

        /* Reviews */
        .reviews-section {
            margin-bottom: 48px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: all var(--transition-fast);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-card .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg-hover);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--accent-cyan);
            flex-shrink: 0;
            border: 1px solid var(--border-light);
        }
        .review-card .review-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-white);
        }
        .review-card .review-tag {
            font-size: 11px;
            color: var(--text-dim);
            background: rgba(255, 255, 255, 0.04);
            padding: 3px 8px;
            border-radius: 4px;
        }
        .review-card .review-stars {
            color: #FFB800;
            font-size: 12px;
        }
        .review-card .review-body {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            flex: 1;
        }
        .review-card .review-time {
            font-size: 11px;
            color: var(--text-dim);
        }

        /* FAQ */
        .faq-section {
            margin-bottom: 48px;
        }
        .faq-section .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-section .accordion-item:hover {
            border-color: rgba(255, 255, 255, 0.12);
        }
        .faq-section .accordion-button {
            background: transparent;
            color: var(--text-white);
            font-weight: 600;
            font-size: 15px;
            padding: 18px 20px;
            box-shadow: none;
            border-radius: var(--radius-md) !important;
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .faq-section .accordion-button::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
        }
        .faq-section .accordion-button:not(.collapsed) {
            background: rgba(0, 229, 255, 0.04);
            color: var(--text-white);
        }
        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: var(--border-glow);
        }
        .faq-section .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }
        .faq-section .accordion-body {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            padding: 0 20px 18px 44px;
            background: transparent;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(240, 78, 35, 0.12) 0%, rgba(0, 229, 255, 0.06) 100%);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 48px 36px;
            text-align: center;
            margin-bottom: 48px;
            box-shadow: var(--shadow-card);
        }
        .cta-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto 24px;
        }
        .cta-section .btn-cta-primary {
            background: var(--accent-orange);
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .cta-section .btn-cta-primary:hover {
            background: #e0431f;
            box-shadow: 0 0 28px rgba(240, 78, 35, 0.5);
            transform: scale(1.04);
        }
        .cta-section .btn-cta-secondary {
            background: transparent;
            border: 1px solid var(--accent-cyan);
            color: var(--accent-cyan);
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: 12px;
        }
        .cta-section .btn-cta-secondary:hover {
            background: rgba(0, 229, 255, 0.1);
            box-shadow: 0 0 18px rgba(0, 229, 255, 0.25);
        }

        @media (max-width: 576px) {
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h2 {
                font-size: 22px;
            }
            .cta-section .btn-cta-secondary {
                margin-left: 0;
                margin-top: 10px;
            }
        }

        /* Footer */
        .footer-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border-light);
            padding: 48px 0 24px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-dim);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 12px;
            color: var(--text-dim);
            justify-content: center;
            text-align: center;
        }
        .footer-bottom a {
            color: var(--text-dim);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom span {
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }
        }

        /* Utility */
        .text-cyan {
            color: var(--accent-cyan);
        }
        .text-orange {
            color: var(--accent-orange);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .text-dim {
            color: var(--text-dim);
        }
        .mb-48 {
            margin-bottom: 48px;
        }
        .gap-3 {
            gap: 16px;
        }
        .fw-700 {
            font-weight: 700;
        }

/* roulang page: category4 */
:root {
            --bg-deep: #0B0C10;
            --bg-card: #1F2128;
            --bg-elevated: #2A2D35;
            --bg-hover: #2F323A;
            --accent-orange: #F04E23;
            --accent-orange-glow: #F04E23;
            --accent-cyan: #00E5FF;
            --accent-cyan-dim: rgba(0, 229, 255, 0.35);
            --text-primary: #EDEDEF;
            --text-secondary: #C5C6C7;
            --text-muted: #8A8B8E;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-card: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(0, 229, 255, 0.18);
            --shadow-card: 0 4px 20px rgba(0, 229, 255, 0.06);
            --shadow-card-hover: 0 8px 32px rgba(0, 229, 255, 0.13);
            --shadow-orange-glow: 0 0 18px rgba(240, 78, 35, 0.3);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --font-hero: 56px;
            --font-h1: 38px;
            --font-h2: 28px;
            --font-h3: 20px;
            --font-body: 15px;
            --font-sm: 13px;
            --font-xs: 11px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 60px;
            --spacing-2xl: 80px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Menlo', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: var(--font-body);
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-deep);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='noise' patternUnits='userSpaceOnUse' width='4' height='4'%3E%3Ccircle cx='2' cy='2' r='0.6' fill='%23ffffff'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(/%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
        }

        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: #4df0ff;
        }
        a:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
            border-radius: 3px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        button:focus-visible {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 3px;
        }
        input,
        select {
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Container */
        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Navigation */
        .navbar-main {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11, 12, 16, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background var(--transition-smooth);
            height: 64px;
            display: flex;
            align-items: center;
        }
        .navbar-main.scrolled {
            background: rgba(11, 12, 16, 0.94);
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: #fff;
            text-decoration: none;
        }
        .logo-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 12px var(--accent-cyan);
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links-desktop a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 22px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            text-decoration: none;
            letter-spacing: 0.2px;
            position: relative;
        }
        .nav-links-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links-desktop a.active {
            color: #fff;
            background: rgba(240, 78, 35, 0.18);
            font-weight: 600;
            box-shadow: inset 0 0 0 1px rgba(240, 78, 35, 0.35);
        }
        .nav-links-desktop a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            border-radius: 3px;
            background: var(--accent-orange);
        }
        .nav-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .time-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: var(--font-xs);
            font-family: var(--font-mono);
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.08);
            padding: 5px 12px;
            border-radius: 20px;
            border: 1px solid rgba(0, 229, 255, 0.15);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .time-badge i {
            font-size: 10px;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        .nav-hamburger {
            display: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 20px;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* Mobile Nav Drawer */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            width: 100%;
            background: rgba(11, 12, 16, 0.96);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            z-index: 999;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            flex-direction: column;
            gap: 8px;
        }
        .mobile-nav-drawer.open {
            display: flex;
        }
        .mobile-nav-drawer a {
            display: block;
            padding: 12px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .mobile-nav-drawer a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }
        .mobile-nav-drawer a.active {
            background: rgba(240, 78, 35, 0.16);
            color: #fff;
            font-weight: 600;
        }

        /* Page Header Spacer */
        .page-header-spacer {
            height: 64px;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--bg-deep);
        }
        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.28;
            filter: brightness(0.5) saturate(0.7);
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(11, 12, 16, 0.55) 0%, rgba(11, 12, 16, 0.85) 60%, var(--bg-deep) 100%);
            z-index: 1;
        }
        .hero-glow-orange {
            position: absolute;
            top: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 78, 35, 0.18) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
            animation: hero-glow-pulse 6s ease-in-out infinite;
        }
        .hero-glow-cyan {
            position: absolute;
            bottom: -60px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
            animation: hero-glow-pulse 8s ease-in-out infinite reverse;
        }
        @keyframes hero-glow-pulse {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.15);
                opacity: 1;
            }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0 60px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 700px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: var(--font-sm);
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.2);
            padding: 6px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            width: fit-content;
        }
        .hero-badge i {
            font-size: 11px;
        }
        .hero-title {
            font-size: var(--font-h1);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            letter-spacing: -0.8px;
            margin: 0;
        }
        .hero-title .highlight {
            color: var(--accent-orange);
            position: relative;
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 580px;
            margin: 0;
        }
        .hero-stats-row {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .hero-stat-capsule {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: rgba(31, 33, 40, 0.7);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 14px 20px;
            min-width: 110px;
            backdrop-filter: blur(6px);
        }
        .hero-stat-capsule .stat-value {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--accent-cyan);
            letter-spacing: -0.5px;
            line-height: 1;
        }
        .hero-stat-capsule .stat-label {
            font-size: var(--font-xs);
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        /* Section Base */
        .section-block {
            padding: var(--spacing-2xl) 0;
            position: relative;
            z-index: 1;
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: var(--font-xs);
            font-weight: 600;
            color: var(--accent-cyan);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }
        .section-label::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan);
        }
        .section-title {
            font-size: var(--font-h2);
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.4px;
            line-height: 1.3;
        }
        .section-desc {
            font-size: var(--font-body);
            color: var(--text-muted);
            max-width: 650px;
            margin-bottom: var(--spacing-lg);
            line-height: 1.6;
        }

        /* Timeline Section */
        .timeline-wrapper {
            position: relative;
            padding-left: 32px;
        }
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 8px;
            bottom: 8px;
            width: 1px;
            background: linear-gradient(180deg, var(--accent-cyan) 0%, rgba(0, 229, 255, 0.15) 60%, transparent 100%);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 32px;
            padding-left: 28px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .timeline-item:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateX(3px);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 24px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--bg-deep);
            border: 2px solid var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
            z-index: 2;
        }
        .timeline-item.game-lol::before {
            border-color: #C8A951;
            box-shadow: 0 0 10px rgba(200, 169, 81, 0.35);
        }
        .timeline-item.game-dota::before {
            border-color: #E54B2E;
            box-shadow: 0 0 10px rgba(229, 75, 46, 0.35);
        }
        .timeline-item.game-cs2::before {
            border-color: #DE9B35;
            box-shadow: 0 0 10px rgba(222, 155, 53, 0.35);
        }
        .timeline-item.game-valorant::before {
            border-color: #FF4655;
            box-shadow: 0 0 10px rgba(255, 70, 85, 0.35);
        }
        .timeline-item.game-hok::before {
            border-color: #3BC1FF;
            box-shadow: 0 0 10px rgba(59, 193, 255, 0.35);
        }
        .timeline-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }
        .timeline-game-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: var(--font-xs);
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 14px;
            letter-spacing: 0.3px;
        }
        .badge-lol {
            background: rgba(200, 169, 81, 0.15);
            color: #D4B86A;
            border: 1px solid rgba(200, 169, 81, 0.3);
        }
        .badge-dota {
            background: rgba(229, 75, 46, 0.15);
            color: #F06048;
            border: 1px solid rgba(229, 75, 46, 0.3);
        }
        .badge-cs2 {
            background: rgba(222, 155, 53, 0.15);
            color: #E8B34A;
            border: 1px solid rgba(222, 155, 53, 0.3);
        }
        .badge-valorant {
            background: rgba(255, 70, 85, 0.15);
            color: #FF6B78;
            border: 1px solid rgba(255, 70, 85, 0.3);
        }
        .badge-hok {
            background: rgba(59, 193, 255, 0.15);
            color: #5CCFFF;
            border: 1px solid rgba(59, 193, 255, 0.3);
        }
        .timeline-date {
            font-size: var(--font-xs);
            color: var(--text-muted);
            font-family: var(--font-mono);
        }
        .timeline-version {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.3px;
        }
        .timeline-desc {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        .timeline-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
        }
        .timeline-tag {
            font-size: var(--font-xs);
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.06);
            white-space: nowrap;
        }

        /* Impact Analysis Cards */
        .impact-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: all var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .impact-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .impact-card .impact-icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
        .impact-icon-orange {
            background: rgba(240, 78, 35, 0.15);
            color: var(--accent-orange);
        }
        .impact-icon-cyan {
            background: rgba(0, 229, 255, 0.12);
            color: var(--accent-cyan);
        }
        .impact-icon-purple {
            background: rgba(160, 100, 255, 0.14);
            color: #B88CFF;
        }
        .impact-card h4 {
            font-size: var(--font-h3);
            font-weight: 600;
            color: #fff;
            margin: 0;
            letter-spacing: -0.2px;
        }
        .impact-card p {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        .impact-meta-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: auto;
        }
        .impact-meta-item {
            font-size: var(--font-xs);
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .impact-meta-item .val {
            color: var(--accent-cyan);
            font-weight: 600;
            font-family: var(--font-mono);
        }

        /* Hero Ranking Table */
        .table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
        }
        .table-custom {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: var(--font-sm);
        }
        .table-custom thead th {
            background: var(--bg-elevated);
            color: var(--text-muted);
            font-weight: 600;
            font-size: var(--font-xs);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
            text-align: left;
        }
        .table-custom tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-secondary);
            vertical-align: middle;
            white-space: nowrap;
        }
        .table-custom tbody tr {
            transition: background var(--transition-fast);
        }
        .table-custom tbody tr:hover {
            background: rgba(255, 255, 255, 0.025);
        }
        .table-custom tbody tr:last-child td {
            border-bottom: none;
        }
        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: var(--font-xs);
            font-family: var(--font-mono);
        }
        .rank-1 {
            background: rgba(255, 215, 0, 0.2);
            color: #FFD700;
        }
        .rank-2 {
            background: rgba(192, 192, 192, 0.2);
            color: #C0C0C0;
        }
        .rank-3 {
            background: rgba(205, 127, 50, 0.2);
            color: #CD7F32;
        }
        .rank-other {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
        }
        .trend-up {
            color: #4ADE80;
            font-weight: 600;
        }
        .trend-down {
            color: #F87171;
            font-weight: 600;
        }
        .trend-stable {
            color: var(--text-muted);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            padding: var(--spacing-2xl) 0;
            text-align: center;
            overflow: hidden;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 48px 32px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--shadow-card);
        }
        .cta-inner h3 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        .cta-inner p {
            font-size: var(--font-body);
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: var(--accent-orange);
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
            text-decoration: none;
        }
        .btn-primary-custom:hover {
            background: #FF5A35;
            box-shadow: var(--shadow-orange-glow);
            transform: translateY(-2px);
            color: #fff;
            text-decoration: none;
        }
        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 26px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
            text-decoration: none;
        }
        .btn-outline-custom:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            text-decoration: none;
        }
        .btn-sm-custom {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 16px;
            font-size: var(--font-xs);
            font-weight: 500;
            color: var(--accent-cyan);
            background: rgba(0, 229, 255, 0.08);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 16px;
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-sm-custom:hover {
            background: rgba(0, 229, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }

        /* Reviews Section */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: all var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .review-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            color: var(--accent-cyan);
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .review-tag {
            font-size: var(--font-xs);
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.04);
            padding: 2px 8px;
            border-radius: 10px;
        }
        .review-stars {
            color: #F5A623;
            font-size: 12px;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.6;
            flex-grow: 1;
        }
        .review-date {
            font-size: var(--font-xs);
            color: var(--text-muted);
            font-family: var(--font-mono);
        }

        /* FAQ Accordion */
        .accordion-faq .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-faq .accordion-header button {
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 18px 20px;
            box-shadow: none;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background var(--transition-fast);
        }
        .accordion-faq .accordion-header button::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan);
            flex-shrink: 0;
        }
        .accordion-faq .accordion-header button:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .accordion-faq .accordion-header button:not(.collapsed) {
            background: rgba(0, 229, 255, 0.05);
            border-bottom: 1px solid var(--border-subtle);
        }
        .accordion-faq .accordion-header button:focus {
            box-shadow: none;
            outline: 2px solid var(--accent-cyan);
            outline-offset: -2px;
        }
        .accordion-faq .accordion-body {
            padding: 18px 20px;
            color: var(--text-secondary);
            font-size: var(--font-body);
            line-height: 1.7;
            background: rgba(11, 12, 16, 0.3);
        }
        .accordion-faq .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }

        /* Footer */
        .footer-section {
            background: var(--bg-card);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 28px;
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: var(--font-sm);
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            font-size: var(--font-xs);
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom span {
            white-space: nowrap;
        }

        /* Divider */
        .divider-glow {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
            margin: 10px 0 20px;
            border-radius: 2px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container-custom {
                max-width: 960px;
            }
            .hero-title {
                font-size: 32px;
            }
            .section-title {
                font-size: 24px;
            }
        }
        @media (max-width: 992px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-stats-row {
                gap: 12px;
            }
            .hero-stat-capsule {
                padding: 10px 14px;
                min-width: 90px;
            }
            .hero-stat-capsule .stat-value {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .timeline-wrapper {
                padding-left: 24px;
            }
            .timeline-item {
                padding: 16px 18px;
            }
            .timeline-item::before {
                left: -18px;
                width: 12px;
                height: 12px;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 400px;
            }
            .hero-content {
                padding: 50px 0 40px;
                gap: 16px;
            }
            .hero-title {
                font-size: 24px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-stats-row {
                gap: 8px;
            }
            .hero-stat-capsule {
                padding: 8px 12px;
                min-width: 75px;
            }
            .hero-stat-capsule .stat-value {
                font-size: 18px;
            }
            .section-block {
                padding: 48px 0;
            }
            .section-title {
                font-size: 21px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .cta-inner {
                padding: 32px 20px;
            }
            .cta-inner h3 {
                font-size: 22px;
            }
            .impact-card {
                padding: 20px;
            }
            .table-custom {
                font-size: var(--font-xs);
            }
            .table-custom thead th,
            .table-custom tbody td {
                padding: 10px 12px;
            }
            .review-card {
                padding: 16px;
            }
        }
        @media (max-width: 576px) {
            .hero-stats-row {
                flex-wrap: wrap;
                gap: 6px;
            }
            .hero-stat-capsule {
                flex: 1 1 calc(50% - 6px);
                min-width: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            .timeline-wrapper {
                padding-left: 18px;
            }
            .timeline-wrapper::before {
                left: 7px;
            }
            .timeline-item::before {
                left: -13px;
                width: 10px;
                height: 10px;
                top: 20px;
            }
            .timeline-item {
                padding: 14px 14px;
                margin-bottom: 20px;
            }
            .timeline-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }
            .timeline-version {
                font-size: 16px;
            }
            .hero-title {
                font-size: 22px;
            }
            .hero-subtitle {
                font-size: 13px;
            }
            .section-title {
                font-size: 19px;
            }
            .container-custom {
                padding-left: 14px;
                padding-right: 14px;
            }
            .nav-inner {
                padding: 0 14px;
            }
        }
