/* roulang page: index */
:root {
            --deep-indigo: #1A1F3B;
            --cyan-accent: #00E0D4;
            --energy-orange: #FF4D4F;
            --bg-light: #F4F6FC;
            --card-white: #FFFFFF;
            --dark-footer: #0F1429;
            --text-primary: #1A1F3B;
            --text-secondary: #5A6072;
            --text-weak: #8B90A0;
            --border-light: #E8EBF2;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-card: 0 8px 24px rgba(15, 20, 41, 0.06);
            --shadow-hover: 0 14px 32px rgba(15, 20, 41, 0.12);
            --shadow-lg: 0 20px 48px rgba(15, 20, 41, 0.10);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-cn: 'PingFang SC', 'Noto Sans SC', 'Source Han Sans CN', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            --font-num: 'Inter', 'SF Mono', 'Menlo', 'Consolas', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-cn);
            background: var(--bg-light);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            font-weight: 400;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }
        a:hover {
            color: var(--cyan-accent);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            outline: none;
            font-family: inherit;
            transition: var(--transition-smooth);
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--cyan-accent);
            outline-offset: 3px;
            border-radius: 4px;
        }
        input {
            font-family: inherit;
        }
        ul,
        ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            line-height: 1.3;
        }

        .container {
            max-width: 1320px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== HEADER & NAVIGATION ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(26, 31, 59, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(15, 20, 41, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: 16px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: -0.5px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .brand-logo .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--cyan-accent) 0%, #00B8A9 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #0F1429;
            flex-shrink: 0;
        }
        .brand-logo .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #FFFFFF;
        }
        .brand-logo .logo-dot {
            color: var(--cyan-accent);
        }
        .header-meta {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
        }
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            color: #B0B8D0;
            white-space: nowrap;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--energy-orange);
            border-radius: 50%;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 77, 79, 0);
            }
        }
        .header-search {
            position: relative;
            width: 180px;
        }
        .header-search input {
            width: 100%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 7px 32px 7px 14px;
            font-size: 13px;
            color: #FFFFFF;
            outline: none;
            transition: var(--transition-fast);
        }
        .header-search input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .header-search input:focus {
            border-color: var(--cyan-accent);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.1);
        }
        .header-search .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            pointer-events: none;
        }

        .nav-channels-row {
            display: flex;
            align-items: center;
            gap: 0;
            height: 42px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .nav-channels-row::-webkit-scrollbar {
            display: none;
        }
        .nav-channel-link {
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 18px;
            font-size: 14px;
            font-weight: 500;
            color: #B0B8D0;
            white-space: nowrap;
            position: relative;
            transition: var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-channel-link:hover {
            color: #FFFFFF;
        }
        .nav-channel-link.active {
            color: var(--cyan-accent);
            font-weight: 600;
        }
        .nav-channel-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            right: 12px;
            height: 3px;
            background: var(--cyan-accent);
            border-radius: 3px 3px 0 0;
        }
        .nav-channel-link .nav-badge {
            margin-left: 6px;
            font-size: 10px;
            background: var(--energy-orange);
            color: #fff;
            padding: 2px 7px;
            border-radius: 10px;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Mobile bottom nav */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            background: rgba(15, 20, 41, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 6px 4px env(safe-area-inset-bottom, 6px) 4px;
        }
        .mobile-bottom-nav .mobile-nav-scroll {
            display: flex;
            gap: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 4px;
        }
        .mobile-bottom-nav .mobile-nav-scroll::-webkit-scrollbar {
            display: none;
        }
        .mobile-nav-item {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            padding: 8px 13px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 500;
            color: #8B90A0;
            transition: var(--transition-fast);
            white-space: nowrap;
            min-width: 56px;
            text-align: center;
        }
        .mobile-nav-item i {
            font-size: 16px;
        }
        .mobile-nav-item.active {
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.08);
        }
        .mobile-nav-item:hover {
            color: #FFFFFF;
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            background: linear-gradient(160deg, #0F1429 0%, #1A1F3B 35%, #141A30 70%, #0F1429 100%);
            overflow: hidden;
            padding: 60px 0 80px;
            min-height: 580px;
            display: flex;
            align-items: center;
        }
        .hero-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.18;
            z-index: 0;
        }
        .hero-grid-lines {
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.015) 59px, rgba(255, 255, 255, 0.015) 60px),
                repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, 0.015) 59px, rgba(255, 255, 255, 0.015) 60px);
            pointer-events: none;
        }
        .hero-content-wrapper {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-left {
            max-width: 560px;
        }
        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(0, 224, 212, 0.1);
            border: 1px solid rgba(0, 224, 212, 0.25);
            color: var(--cyan-accent);
            font-size: 13px;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .hero-badge.hot {
            background: rgba(255, 77, 79, 0.12);
            border-color: rgba(255, 77, 79, 0.3);
            color: var(--energy-orange);
            animation: pulse-badge 2s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.3);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 77, 79, 0);
            }
        }
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #FFFFFF;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero-title .highlight {
            color: var(--cyan-accent);
        }
        .hero-subtitle {
            font-size: 17px;
            color: #B0B8D0;
            line-height: 1.6;
            margin-bottom: 28px;
            max-width: 480px;
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-primary-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cyan-accent);
            color: #0F1429;
            font-weight: 600;
            font-size: 15px;
            padding: 13px 26px;
            border-radius: var(--radius-sm);
            border: none;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-primary-cyan:hover {
            background: #00F0E4;
            color: #0F1429;
            box-shadow: 0 0 20px rgba(0, 224, 212, 0.35);
            transform: translateY(-2px);
        }
        .btn-outline-light-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 15px;
            padding: 13px 26px;
            border-radius: var(--radius-sm);
            border: 2px solid rgba(255, 255, 255, 0.35);
            transition: var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-outline-light-custom:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.6);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
        }

        .hero-right-dashboard {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-end;
        }
        .hero-data-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            width: 260px;
            transition: var(--transition-smooth);
            position: relative;
        }
        .hero-data-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(0, 224, 212, 0.35);
            transform: translateX(-4px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
        }
        .hero-data-card .data-label {
            font-size: 12px;
            color: #8B90A0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .hero-data-card .data-value {
            font-family: var(--font-num);
            font-size: 36px;
            font-weight: 700;
            color: var(--cyan-accent);
            line-height: 1;
        }
        .hero-data-card .data-sub {
            font-size: 13px;
            color: #B0B8D0;
            margin-top: 4px;
        }
        .hero-data-card.card-offset-1 {
            margin-right: 40px;
        }
        .hero-data-card.card-offset-2 {
            margin-right: 80px;
        }
        .hero-data-card .pulse-glow {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 8px;
            height: 8px;
            background: var(--cyan-accent);
            border-radius: 50%;
            animation: pulse-glow-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-glow-dot {
            0%,
            100% {
                box-shadow: 0 0 4px 2px rgba(0, 224, 212, 0.4);
            }
            50% {
                box-shadow: 0 0 16px 6px rgba(0, 224, 212, 0.7);
            }
        }

        /* ===== SECTION COMMONS ===== */
        .section-block {
            padding: 80px 0;
        }
        .section-block.section-alt {
            background: #FFFFFF;
        }
        .section-block.section-dark {
            background: #0F1429;
            color: #FFFFFF;
        }
        .section-title-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
        }
        .section-dark .section-title {
            color: #FFFFFF;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-top: 4px;
        }
        .section-dark .section-subtitle {
            color: #B0B8D0;
        }
        .section-more-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--cyan-accent);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            transition: var(--transition-fast);
        }
        .section-more-link:hover {
            color: #00F0E4;
            gap: 10px;
        }
        .section-more-link i {
            font-size: 11px;
        }

        /* ===== STATS RIBBON ===== */
        .stats-ribbon {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            padding: 22px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            border: 1px solid transparent;
        }
        .stat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-top: 3px solid var(--cyan-accent);
        }
        .stat-card .stat-icon {
            font-size: 28px;
            color: var(--cyan-accent);
            margin-bottom: 10px;
        }
        .stat-card .stat-value {
            font-family: var(--font-num);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 4px;
        }
        .stat-card .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .stat-card .stat-update {
            font-size: 11px;
            color: var(--text-weak);
            margin-top: 3px;
        }

        /* ===== GAME CATEGORY GRID ===== */
        .game-cat-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .game-cat-card {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            cursor: pointer;
            border: 2px solid transparent;
            text-align: center;
        }
        .game-cat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--cyan-accent);
        }
        .game-cat-card .cat-img-wrap {
            height: 120px;
            overflow: hidden;
            position: relative;
            background: #1A1F3B;
        }
        .game-cat-card .cat-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
            transition: var(--transition-smooth);
        }
        .game-cat-card:hover .cat-img-wrap img {
            opacity: 1;
            transform: scale(1.04);
        }
        .game-cat-card .cat-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 20, 41, 0.7) 0%, transparent 60%);
        }
        .game-cat-card .cat-body {
            padding: 16px 12px;
        }
        .game-cat-card .cat-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 3px;
        }
        .game-cat-card .cat-count {
            font-size: 12px;
            color: var(--text-weak);
        }

        /* ===== LIVE MATCHES SCROLL ===== */
        .live-matches-scroll {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
            padding-bottom: 8px;
        }
        .live-matches-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .live-matches-scroll::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 10px;
        }
        .live-match-card {
            flex-shrink: 0;
            width: 320px;
            background: #FFFFFF;
            border-radius: var(--radius-md);
            padding: 18px;
            box-shadow: var(--shadow-card);
            border-left: 4px solid var(--cyan-accent);
            transition: var(--transition-smooth);
            position: relative;
        }
        .live-match-card.status-live {
            border-left-color: var(--energy-orange);
        }
        .live-match-card.status-upcoming {
            border-left-color: var(--cyan-accent);
        }
        .live-match-card.status-done {
            border-left-color: #B0B8D0;
        }
        .live-match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .live-match-card .match-status-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            margin-bottom: 8px;
        }
        .live-match-card .match-status-badge.live-badge {
            background: rgba(255, 77, 79, 0.12);
            color: var(--energy-orange);
            animation: pulse-badge 1.8s ease-in-out infinite;
        }
        .live-match-card .match-status-badge.upcoming-badge {
            background: rgba(0, 224, 212, 0.1);
            color: var(--cyan-accent);
        }
        .live-match-card .match-status-badge.done-badge {
            background: #f0f1f4;
            color: #8B90A0;
        }
        .live-match-card .match-game {
            font-size: 12px;
            color: var(--text-weak);
            margin-bottom: 6px;
        }
        .live-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .live-match-card .match-score {
            font-family: var(--font-num);
            font-size: 22px;
            font-weight: 700;
            color: var(--cyan-accent);
            min-width: 50px;
            text-align: center;
        }
        .live-match-card.status-live .match-score {
            color: var(--energy-orange);
        }
        .live-match-card .match-time {
            font-size: 12px;
            color: var(--text-weak);
        }

        /* ===== MATCH TABLE ===== */
        .match-table-wrap {
            background: #FFFFFF;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .match-table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .match-table-wrap thead th {
            background: #1A1F3B;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 13px;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
        }
        .match-table-wrap tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }
        .match-table-wrap tbody tr {
            transition: var(--transition-fast);
        }
        .match-table-wrap tbody tr:hover {
            background: #F8FAFD;
        }
        .match-table-wrap .status-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
        }
        .status-tag.live {
            background: rgba(255, 77, 79, 0.1);
            color: var(--energy-orange);
        }
        .status-tag.upcoming {
            background: rgba(0, 224, 212, 0.1);
            color: #00B8A9;
        }
        .status-tag.done {
            background: #f0f1f4;
            color: #8B90A0;
        }
        .match-table-wrap .score-col {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }
        .match-table-wrap .btn-sm-data {
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 16px;
            background: var(--cyan-accent);
            color: #0F1429;
            font-weight: 600;
            border: none;
            white-space: nowrap;
            transition: var(--transition-fast);
        }
        .match-table-wrap .btn-sm-data:hover {
            background: #00F0E4;
            box-shadow: 0 0 10px rgba(0, 224, 212, 0.3);
        }

        /* ===== TEAM RANKING ===== */
        .team-ranking-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
        }
        .team-rank-card {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            border: 2px solid transparent;
            position: relative;
        }
        .team-rank-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--cyan-accent);
        }
        .team-rank-card .rank-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--cyan-accent);
            color: #0F1429;
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 224, 212, 0.3);
        }
        .team-rank-card .team-logo-placeholder {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A1F3B 0%, #2A3055 100%);
            margin: 10px auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--cyan-accent);
        }
        .team-rank-card .team-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .team-rank-card .team-region {
            font-size: 12px;
            color: var(--text-weak);
            margin-bottom: 6px;
        }
        .team-rank-card .team-winrate {
            font-family: var(--font-num);
            font-size: 20px;
            font-weight: 700;
            color: var(--cyan-accent);
        }

        /* ===== NEWS CARDS ===== */
        .news-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .news-card {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
            border: 2px solid transparent;
        }
        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--cyan-accent);
        }
        .news-card .news-img {
            height: 140px;
            overflow: hidden;
            background: #1A1F3B;
        }
        .news-card .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
            opacity: 0.9;
        }
        .news-card:hover .news-img img {
            opacity: 1;
            transform: scale(1.04);
        }
        .news-card .news-body {
            padding: 16px;
        }
        .news-card .news-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(0, 224, 212, 0.1);
            color: #00B8A9;
            margin-bottom: 8px;
        }
        .news-card .news-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .news-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }
        .news-card .news-time {
            font-size: 11px;
            color: var(--text-weak);
        }

        /* ===== HEAT DISTRIBUTION ===== */
        .heat-distro-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .heat-bar-card {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            padding: 20px 22px;
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: var(--transition-smooth);
        }
        .heat-bar-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateX(3px);
        }
        .heat-bar-card .heat-icon {
            font-size: 36px;
            color: var(--cyan-accent);
            flex-shrink: 0;
        }
        .heat-bar-card .heat-info {
            flex: 1;
            min-width: 0;
        }
        .heat-bar-card .heat-game-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .heat-bar-card .heat-bar-track {
            height: 8px;
            background: #E8EBF2;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 4px;
        }
        .heat-bar-card .heat-bar-fill {
            height: 100%;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--cyan-accent) 0%, #00B8A9 100%);
            transition: width 0.8s ease;
        }
        .heat-bar-card .heat-stats {
            font-size: 12px;
            color: var(--text-weak);
            display: flex;
            justify-content: space-between;
        }

        /* ===== REVIEWS ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .review-card {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
        }
        .review-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A1F3B 0%, #3A4068 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan-accent);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .review-card .review-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .review-card .review-tag {
            font-size: 11px;
            color: var(--text-weak);
        }
        .review-card .review-stars {
            color: #FFB800;
            font-size: 13px;
            margin-bottom: 8px;
        }
        .review-card .review-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .review-card .review-time {
            font-size: 11px;
            color: var(--text-weak);
        }

        /* ===== FAQ ===== */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .faq-item {
            background: #FFFFFF;
            border-radius: var(--radius-md);
            padding: 20px 22px;
            box-shadow: var(--shadow-card);
            border-left: 3px solid var(--cyan-accent);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-hover);
            border-left-color: #00B8A9;
        }
        .faq-item .faq-q {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .faq-item .faq-q i {
            color: var(--cyan-accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .faq-item .faq-a {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            padding-left: 26px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #1A1F3B 0%, #0F1429 100%);
            padding: 64px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section .cta-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        .cta-section .cta-content {
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-title {
            font-size: 36px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }
        .cta-section .cta-sub {
            font-size: 16px;
            color: #B0B8D0;
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .cta-btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #0F1429;
            color: #B0B8D0;
            padding: 50px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
            gap: 30px;
            margin-bottom: 36px;
        }
        .footer-brand .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-brand .footer-desc {
            font-size: 13px;
            color: #8B90A0;
            line-height: 1.6;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #8B90A0;
            transition: var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--cyan-accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 18px 0;
            font-size: 12px;
            color: #6B7088;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            justify-content: center;
            text-align: center;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: #8B90A0;
        }
        .footer-bottom a:hover {
            color: var(--cyan-accent);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .stats-ribbon {
                grid-template-columns: repeat(3, 1fr);
            }
            .game-cat-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .team-ranking-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .news-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-content-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .hero-title {
                font-size: 38px;
            }
            .hero-data-card {
                width: 220px;
            }
        }
        @media (max-width: 992px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-right-dashboard {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: stretch;
                justify-content: center;
            }
            .hero-data-card {
                width: 200px;
                flex-shrink: 0;
            }
            .hero-data-card.card-offset-1,
            .hero-data-card.card-offset-2 {
                margin-right: 0;
            }
            .hero-title {
                font-size: 34px;
            }
            .stats-ribbon {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-cat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .team-ranking-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .heat-distro-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-channels-row {
                gap: 0;
            }
            .nav-channel-link {
                padding: 0 12px;
                font-size: 13px;
            }
            .header-search {
                width: 140px;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                position: sticky;
                top: 0;
            }
            .nav-channels-row {
                display: none;
            }
            .mobile-bottom-nav {
                display: block;
            }
            body {
                padding-bottom: 75px;
            }
            .hero-section {
                padding: 40px 0 50px;
                min-height: auto;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-right-dashboard {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-data-card {
                width: 100%;
            }
            .stats-ribbon {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-value {
                font-size: 24px;
            }
            .game-cat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .team-ranking-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .news-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .match-table-wrap {
                overflow-x: auto;
            }
            .match-table-wrap table {
                min-width: 700px;
                font-size: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .section-block {
                padding: 48px 0;
            }
            .section-title {
                font-size: 24px;
            }
            .cta-section .cta-title {
                font-size: 26px;
            }
            .header-top-row {
                height: 48px;
            }
            .brand-logo {
                font-size: 18px;
            }
            .brand-logo .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 15px;
            }
            .header-search {
                display: none;
            }
            .live-indicator {
                font-size: 11px;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 24px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-cta-row {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary-cyan,
            .btn-outline-light-custom {
                width: 100%;
                justify-content: center;
                font-size: 14px;
                padding: 12px 20px;
            }
            .stats-ribbon {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .game-cat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .team-ranking-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .section-title {
                font-size: 20px;
            }
            .live-match-card {
                width: 260px;
            }
        }

/* roulang page: category2 */
:root {
            --deep-indigo: #1A1F3B;
            --darker-indigo: #0F1429;
            --cyan-accent: #00E0D4;
            --cyan-glow: rgba(0, 224, 212, 0.3);
            --energy-red: #FF4D4F;
            --red-glow: rgba(255, 77, 79, 0.25);
            --bg-page: #F4F6FC;
            --bg-card: #FFFFFF;
            --text-primary: #1A1F3B;
            --text-secondary: #5A6070;
            --text-muted: #8B919E;
            --border-light: #E8ECF2;
            --border-soft: #DDE2EA;
            --shadow-card: 0 8px 24px rgba(15, 20, 41, 0.06);
            --shadow-card-hover: 0 16px 40px rgba(15, 20, 41, 0.10);
            --shadow-card-cyan: 0 12px 32px rgba(0, 224, 212, 0.08);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.25s ease;
            --font-cn: 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', '思源黑体', system-ui, -apple-system, sans-serif;
            --font-num: 'Inter', 'SF Mono', 'Menlo', 'Monaco', monospace;
            --container-max: 1320px;
            --section-gap: 96px;
            --card-gap: 24px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-cn);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-page);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        body .en-num,
        body .stat-num,
        body .data-value {
            font-family: var(--font-num);
            letter-spacing: -0.02em;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--cyan-accent);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }

        input {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ============ HEADER ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: var(--deep-indigo);
            box-shadow: 0 2px 16px rgba(15, 20, 41, 0.18);
            transition: all var(--transition-smooth);
        }

        .site-header.scrolled {
            background: rgba(15, 20, 41, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: 20px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #fff;
            font-weight: 700;
            font-size: 22px;
            white-space: nowrap;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }

        .brand-logo:hover {
            color: var(--cyan-accent);
        }

        .logo-icon {
            color: var(--cyan-accent);
            font-size: 24px;
            display: flex;
            align-items: center;
            animation: logoPulse 2.4s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%,
            100% {
                opacity: 1;
                text-shadow: 0 0 8px rgba(0, 224, 212, 0.5);
            }
            50% {
                opacity: 0.78;
                text-shadow: 0 0 18px rgba(0, 224, 212, 0.85);
            }
        }

        .logo-text {
            letter-spacing: -0.3px;
        }

        .logo-dot {
            color: var(--cyan-accent);
            font-weight: 800;
        }

        .header-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            color: #BCC3D0;
            white-space: nowrap;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cyan-accent);
            animation: liveBlink 1.4s ease-in-out infinite;
            box-shadow: 0 0 6px var(--cyan-glow);
        }

        @keyframes liveBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.25;
            }
        }

        .header-search {
            position: relative;
            display: flex;
            align-items: center;
        }

        .header-search input {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 20px;
            padding: 8px 36px 8px 14px;
            font-size: 13px;
            color: #fff;
            width: 180px;
            transition: all var(--transition-smooth);
        }

        .header-search input::placeholder {
            color: #8B919E;
        }
        .header-search input:focus {
            border-color: var(--cyan-accent);
            background: rgba(255, 255, 255, 0.11);
            width: 220px;
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.08);
        }

        .search-icon {
            position: absolute;
            right: 12px;
            color: #8B919E;
            font-size: 13px;
            pointer-events: none;
        }

        .nav-channels-row {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-bottom: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .nav-channels-row::-webkit-scrollbar {
            display: none;
        }

        .nav-channel-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #BCC3D0;
            border-radius: var(--radius-sm);
            white-space: nowrap;
            position: relative;
            transition: all var(--transition-fast);
        }

        .nav-channel-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-channel-link.active {
            color: #fff;
            font-weight: 600;
        }

        .nav-channel-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--cyan-accent);
            border-radius: 3px 3px 0 0;
        }

        .nav-badge {
            display: inline-block;
            background: var(--energy-red);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 10px;
            letter-spacing: 0.4px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 var(--red-glow);
            }
            50% {
                box-shadow: 0 0 10px 3px var(--red-glow);
            }
        }

        /* ============ HERO ============ */
        .category-hero {
            background: linear-gradient(170deg, #0F1429 0%, #1A1F3B 30%, #1e2545 60%, #0F1429 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 64px;
            min-height: 420px;
            display: flex;
            align-items: center;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
            pointer-events: none;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 224, 212, 0.3), rgba(0, 224, 212, 0.55), rgba(0, 224, 212, 0.3), transparent);
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-text-block h1 {
            font-size: 40px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.4px;
            line-height: 1.25;
            margin-bottom: 16px;
        }

        .hero-text-block h1 .highlight {
            color: var(--cyan-accent);
        }

        .hero-text-block .hero-subtitle {
            font-size: 16px;
            color: #BCC3D0;
            line-height: 1.65;
            margin-bottom: 20px;
            max-width: 420px;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.13);
            color: #D0D6E4;
            font-size: 12px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 20px;
            transition: all var(--transition-fast);
        }

        .hero-tag:hover {
            border-color: var(--cyan-accent);
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.06);
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-primary-cyan {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--cyan-accent);
            color: #0F1429;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 14px rgba(0, 224, 212, 0.18);
        }

        .btn-primary-cyan:hover {
            background: #00f5e8;
            box-shadow: 0 6px 22px rgba(0, 224, 212, 0.32);
            transform: translateY(-2px);
            color: #0F1429;
        }

        .btn-outline-indigo {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all var(--transition-smooth);
        }

        .btn-outline-indigo:hover {
            border-color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.06);
            color: var(--cyan-accent);
            transform: translateY(-2px);
        }

        .hero-dash-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .hero-dash-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
            backdrop-filter: blur(2px);
        }

        .hero-dash-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(0, 224, 212, 0.35);
            box-shadow: 0 8px 28px rgba(0, 224, 212, 0.07);
            transform: translateX(3px);
        }

        .dash-stat-num {
            font-family: var(--font-num);
            font-size: 34px;
            font-weight: 700;
            color: var(--cyan-accent);
            line-height: 1;
            min-width: 70px;
            text-align: center;
        }

        .dash-stat-info {
            flex: 1;
        }

        .dash-stat-label {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 2px;
        }

        .dash-stat-desc {
            font-size: 12px;
            color: #8B919E;
        }

        .dash-stat-badge {
            display: inline-block;
            background: var(--energy-red);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 10px;
            margin-left: 6px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        /* ============ SECTIONS COMMON ============ */
        .section-block {
            padding: 80px 0;
        }

        .section-block.section-alt {
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }

        .section-header .section-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-header .section-update {
            display: inline-block;
            font-size: 12px;
            color: var(--text-muted);
            background: #EEF1F7;
            border-radius: 20px;
            padding: 4px 14px;
            margin-top: 8px;
        }

        .section-header .section-update .pulse-dot-sm {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan-accent);
            margin-right: 5px;
            animation: liveBlink 1.4s ease-in-out infinite;
        }

        /* ============ STATS PANEL ============ */
        .stats-panel-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--card-gap);
        }

        .stat-panel-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .stat-panel-card:hover {
            box-shadow: var(--shadow-card-cyan);
            border-color: var(--cyan-accent);
            transform: translateY(-3px);
        }

        .stat-panel-card .stat-icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 22px;
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.07);
        }

        .stat-panel-card .stat-big-num {
            font-family: var(--font-num);
            font-size: 38px;
            font-weight: 700;
            color: var(--deep-indigo);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-panel-card .stat-label-sm {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .stat-panel-card .stat-trend-up {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            color: #00b894;
            background: rgba(0, 184, 148, 0.08);
            padding: 3px 10px;
            border-radius: 12px;
            margin-top: 8px;
        }

        /* ============ TEAM RANKING GRID ============ */
        .team-ranking-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--card-gap);
        }

        .team-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            cursor: pointer;
        }

        .team-card:hover {
            box-shadow: var(--shadow-card-cyan);
            border-color: var(--cyan-accent);
            transform: translateY(-4px);
        }

        .team-card-cover {
            height: 140px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .team-card-cover .team-rank-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--deep-indigo);
            color: var(--cyan-accent);
            font-weight: 700;
            font-size: 14px;
            padding: 6px 14px;
            border-radius: 20px;
            font-family: var(--font-num);
            letter-spacing: 0.5px;
        }

        .team-card-cover .team-rank-badge.rank-top3 {
            background: var(--cyan-accent);
            color: #0F1429;
            box-shadow: 0 4px 16px rgba(0, 224, 212, 0.35);
        }

        .team-card-body {
            padding: 18px 20px;
        }

        .team-card-body .team-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .team-card-body .team-region {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .team-mini-stats {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .team-mini-stats span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .team-mini-stats .win-rate {
            color: #00b894;
            font-weight: 600;
        }

        .team-card-body .btn-sm-outline {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--cyan-accent);
            border: 1px solid var(--cyan-accent);
            border-radius: 20px;
            padding: 5px 16px;
            transition: all var(--transition-fast);
        }

        .team-card-body .btn-sm-outline:hover {
            background: var(--cyan-accent);
            color: #0F1429;
        }

        /* ============ PLAYER HIGHLIGHTS ============ */
        .player-highlights-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--card-gap);
        }

        .player-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
        }

        .player-card:hover {
            box-shadow: var(--shadow-card-cyan);
            border-color: var(--cyan-accent);
            transform: translateY(-3px);
        }

        .player-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            margin: 0 auto 14px;
            background-size: cover;
            background-position: center;
            border: 3px solid var(--border-light);
            transition: border-color var(--transition-fast);
        }

        .player-card:hover .player-avatar {
            border-color: var(--cyan-accent);
        }

        .player-card .player-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .player-card .player-role {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .player-card .player-stat-row {
            display: flex;
            justify-content: center;
            gap: 18px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .player-card .player-stat-row .p-val {
            font-weight: 700;
            color: var(--deep-indigo);
        }

        /* ============ MATCH ANALYSIS TABLE ============ */
        .match-analysis-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: 4px;
        }

        .match-analysis-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 750px;
            font-size: 14px;
        }

        .match-analysis-table thead th {
            background: #F8FAFD;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            padding: 14px 16px;
            text-align: left;
            border-bottom: 2px solid var(--border-light);
            white-space: nowrap;
        }

        .match-analysis-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
            color: var(--text-primary);
        }

        .match-analysis-table tbody tr {
            transition: background var(--transition-fast);
        }

        .match-analysis-table tbody tr:hover {
            background: #FAFBFC;
        }

        .match-analysis-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .team-cell .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .team-dot.dot-blue {
            background: #3B82F6;
        }
        .team-dot.dot-purple {
            background: #8B5CF6;
        }
        .team-dot.dot-cyan {
            background: var(--cyan-accent);
        }
        .team-dot.dot-orange {
            background: #F59E0B;
        }
        .team-dot.dot-red {
            background: var(--energy-red);
        }

        .map-tag {
            display: inline-block;
            background: #EEF1F7;
            color: var(--text-secondary);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 4px;
        }

        .score-highlight {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 15px;
            color: var(--deep-indigo);
        }

        .btn-table-action {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.06);
            border-radius: 16px;
            padding: 6px 14px;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-table-action:hover {
            background: var(--cyan-accent);
            color: #0F1429;
        }

        /* ============ REVIEWS ============ */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--card-gap);
        }

        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
        }

        .review-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-soft);
            transform: translateY(-2px);
        }

        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #E8ECF2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-muted);
            flex-shrink: 0;
            font-weight: 600;
        }

        .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: #F59E0B;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .review-date {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ============ FAQ ============ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-card);
            border-left: 4px solid var(--cyan-accent);
            transition: all var(--transition-smooth);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-card-cyan);
            border-left-color: #00f5e8;
        }

        .faq-item .faq-q {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .faq-item .faq-a {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ CTA ============ */
        .cta-strip {
            background: var(--deep-indigo);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(15, 20, 41, 0.22);
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.08;
            z-index: 0;
        }

        .cta-strip>* {
            position: relative;
            z-index: 1;
        }

        .cta-strip h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .cta-strip p {
            font-size: 15px;
            color: #BCC3D0;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-strip .btn-primary-cyan {
            font-size: 16px;
            padding: 14px 32px;
            border-radius: var(--radius-md);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--darker-indigo);
            color: #BCC3D0;
            padding: 56px 0 28px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-desc {
            font-size: 13px;
            color: #8B919E;
            line-height: 1.65;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-col ul li {
            margin-bottom: 7px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: #8B919E;
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--cyan-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #6B7280;
            line-height: 1.8;
        }

        .footer-bottom a {
            color: #8B919E;
            margin: 0 8px;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--cyan-accent);
        }

        .footer-bottom .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-text-block h1 {
                font-size: 32px;
            }
            .stats-panel-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .team-ranking-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .player-highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-top-row {
                height: 48px;
                gap: 10px;
            }
            .brand-logo {
                font-size: 18px;
            }
            .logo-icon {
                font-size: 20px;
            }
            .header-search input {
                width: 120px;
                font-size: 12px;
                padding: 7px 32px 7px 10px;
            }
            .header-search input:focus {
                width: 150px;
            }
            .live-indicator {
                font-size: 10px;
                gap: 4px;
            }
            .live-dot {
                width: 6px;
                height: 6px;
            }
            .nav-channels-row {
                gap: 0;
                padding-bottom: 0;
            }
            .nav-channel-link {
                font-size: 12px;
                padding: 8px 12px;
            }
            .nav-channel-link.active::after {
                left: 10px;
                right: 10px;
                height: 2px;
            }
            .category-hero {
                padding: 36px 0 44px;
                min-height: auto;
            }
            .hero-text-block h1 {
                font-size: 26px;
            }
            .hero-dash-card {
                padding: 14px 16px;
                gap: 10px;
            }
            .dash-stat-num {
                font-size: 26px;
                min-width: 50px;
            }
            .section-block {
                padding: 48px 0;
            }
            .section-header h2 {
                font-size: 24px;
            }
            .stats-panel-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .stat-panel-card {
                padding: 20px 16px;
            }
            .stat-panel-card .stat-big-num {
                font-size: 28px;
            }
            .team-ranking-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .player-highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .match-analysis-table-wrap {
                border-radius: var(--radius-md);
            }
            .match-analysis-table thead th,
            .match-analysis-table tbody td {
                padding: 10px 12px;
                font-size: 12px;
            }
            .cta-strip {
                padding: 32px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-strip h2 {
                font-size: 22px;
            }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary-cyan,
            .btn-outline-indigo {
                width: 100%;
                justify-content: center;
                font-size: 14px;
                padding: 10px 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .header-top-row {
                flex-wrap: wrap;
                height: auto;
                padding: 8px 0;
            }
            .hero-text-block h1 {
                font-size: 22px;
            }
            .hero-text-block .hero-subtitle {
                font-size: 14px;
            }
            .stats-panel-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .player-highlights-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .section-header h2 {
                font-size: 21px;
            }
            .team-card-cover {
                height: 110px;
            }
            .hero-dash-cards {
                gap: 10px;
            }
            .dash-stat-num {
                font-size: 22px;
                min-width: 44px;
            }
            .dash-stat-label {
                font-size: 12px;
            }
            .faq-item {
                padding: 16px;
            }
            .faq-item .faq-q {
                font-size: 14px;
            }
            .review-card {
                padding: 18px;
            }
            .nav-channel-link {
                font-size: 11px;
                padding: 7px 10px;
            }
        }

/* roulang page: category1 */
:root {
            --deep-indigo: #1A1F3B;
            --dark-bg: #0F1429;
            --cyan-accent: #00E0D4;
            --cyan-glow: rgba(0, 224, 212, 0.3);
            --energy-orange: #FF4D4F;
            --bg-global: #F4F6FC;
            --bg-card: #FFFFFF;
            --text-primary: #1A1F3B;
            --text-secondary: #5A6072;
            --text-muted: #8B92A5;
            --border-light: #E8ECF3;
            --shadow-card: 0 8px 24px rgba(15, 20, 41, 0.06);
            --shadow-hover: 0 16px 40px rgba(15, 20, 41, 0.12);
            --shadow-lg: 0 24px 56px rgba(15, 20, 41, 0.10);
            --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);
            --font-heading: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', system-ui, sans-serif;
            --font-body: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', system-ui, sans-serif;
            --font-mono: 'Inter', 'SF Mono', 'Consolas', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-global);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--cyan-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (max-width: 1400px) {
            .container {
                max-width: 1140px;
            }
        }
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
            }
        }
        @media (max-width: 992px) {
            .container {
                max-width: 720px;
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        @media (max-width: 768px) {
            .container {
                max-width: 100%;
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(15, 20, 41, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: 16px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 22px;
            color: #ffffff;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .brand-logo:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--cyan-accent) 0%, #00B8A9 100%);
            border-radius: var(--radius-sm);
            color: var(--deep-indigo);
            font-size: 17px;
        }
        .logo-text {
            letter-spacing: 0.5px;
        }
        .logo-dot {
            color: var(--cyan-accent);
        }
        .header-meta {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #c0c8d8;
            white-space: nowrap;
        }
        .live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--cyan-accent);
            animation: pulse-dot 1.6s ease-in-out infinite;
            box-shadow: 0 0 8px var(--cyan-glow);
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.35;
                transform: scale(1.6);
            }
        }
        .header-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 20px;
            padding: 6px 14px;
            gap: 8px;
            transition: all var(--transition-fast);
        }
        .header-search:focus-within {
            border-color: var(--cyan-accent);
            background: rgba(255, 255, 255, 0.10);
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.08);
        }
        .header-search input {
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 13px;
            width: 160px;
        }
        .header-search input::placeholder {
            color: var(--text-muted);
        }
        .search-icon {
            color: var(--text-muted);
            font-size: 14px;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .header-search:focus-within .search-icon {
            color: var(--cyan-accent);
        }
        @media (max-width: 768px) {
            .header-search {
                display: none;
            }
            .live-indicator {
                font-size: 11px;
                gap: 5px;
            }
            .live-dot {
                width: 7px;
                height: 7px;
            }
            .brand-logo {
                font-size: 18px;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
                border-radius: 6px;
            }
            .header-top-row {
                height: 48px;
            }
        }

        /* Nav channels */
        .nav-channels-row {
            display: flex;
            align-items: center;
            gap: 2px;
            padding-bottom: 0;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-channels-row::-webkit-scrollbar {
            display: none;
        }
        .nav-channel-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #b0b8c8;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all var(--transition-fast);
            position: relative;
            cursor: pointer;
            flex-shrink: 0;
        }
        .nav-channel-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.03);
        }
        .nav-channel-link.active {
            color: var(--cyan-accent);
            border-bottom-color: var(--cyan-accent);
            font-weight: 600;
        }
        .nav-badge {
            display: inline-block;
            background: var(--energy-orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 3px;
            letter-spacing: 0.5px;
            animation: badge-pulse 2s ease-in-out infinite;
        }
        @keyframes badge-pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        @media (max-width: 768px) {
            .nav-channels-row {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: rgba(15, 20, 41, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                z-index: 1060;
                gap: 0;
                justify-content: flex-start;
                padding: 4px 8px;
                overflow-x: auto;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
            .nav-channel-link {
                font-size: 12px;
                padding: 10px 12px;
                border-bottom: none;
                border-radius: 20px;
                margin: 2px;
            }
            .nav-channel-link.active {
                background: rgba(0, 224, 212, 0.12);
                border-bottom: none;
                color: var(--cyan-accent);
            }
            body {
                padding-bottom: 70px;
            }
        }

        /* ========== HERO ========== */
        .page-hero {
            position: relative;
            background: linear-gradient(170deg, #0F1429 0%, #1A1F3B 40%, #1a2240 100%);
            padding: 64px 0 72px;
            overflow: hidden;
            color: #ffffff;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 224, 212, 0.25), transparent);
            opacity: 0.5;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-text h1 {
            font-family: var(--font-heading);
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin: 0 0 16px;
            color: #ffffff;
        }
        .hero-text h1 span {
            color: var(--cyan-accent);
        }
        .hero-subtitle {
            font-size: 17px;
            line-height: 1.6;
            color: #c0c8d8;
            margin: 0 0 24px;
            max-width: 480px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.07);
            color: #c0c8d8;
            border: 1px solid rgba(255, 255, 255, 0.10);
            transition: all var(--transition-fast);
        }
        .hero-tag.hot {
            background: rgba(255, 77, 79, 0.15);
            border-color: rgba(255, 77, 79, 0.35);
            color: #ff8082;
        }
        .hero-tag:hover {
            background: rgba(0, 224, 212, 0.10);
            border-color: rgba(0, 224, 212, 0.3);
            color: var(--cyan-accent);
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--cyan-accent);
            color: #0F1429;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-cyan:hover {
            background: #00f0e4;
            box-shadow: 0 0 20px var(--cyan-glow);
            transform: translateY(-2px);
            color: #0F1429;
        }
        .btn-outline-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-outline-white:hover {
            border-color: var(--cyan-accent);
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.06);
            transform: translateY(-2px);
        }
        .hero-dashboard {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .dashboard-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
            backdrop-filter: blur(4px);
        }
        .dashboard-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(0, 224, 212, 0.25);
            transform: translateX(4px);
        }
        .dashboard-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .dashboard-card-icon.live {
            background: rgba(255, 77, 79, 0.2);
            color: var(--energy-orange);
        }
        .dashboard-card-icon.today {
            background: rgba(0, 224, 212, 0.15);
            color: var(--cyan-accent);
        }
        .dashboard-card-icon.top {
            background: rgba(255, 180, 50, 0.18);
            color: #ffb832;
        }
        .dashboard-card-info .dash-num {
            font-family: var(--font-mono);
            font-size: 30px;
            font-weight: 700;
            color: var(--cyan-accent);
            line-height: 1.1;
            animation: num-glow 3s ease-in-out infinite;
        }
        @keyframes num-glow {
            0%,
            100% {
                text-shadow: 0 0 8px rgba(0, 224, 212, 0.3);
            }
            50% {
                text-shadow: 0 0 18px rgba(0, 224, 212, 0.6);
            }
        }
        .dashboard-card-info .dash-label {
            font-size: 13px;
            color: #8B92A5;
            margin-top: 2px;
        }
        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 36px;
            }
            .hero-text h1 {
                font-size: 34px;
            }
            .hero-dashboard {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 12px;
            }
            .dashboard-card {
                flex: 1 1 140px;
                min-width: 140px;
                padding: 14px 16px;
                gap: 10px;
            }
            .dashboard-card-info .dash-num {
                font-size: 24px;
            }
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 40px 0 48px;
            }
            .hero-text h1 {
                font-size: 28px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .hero-dashboard {
                flex-direction: column;
                gap: 10px;
            }
            .dashboard-card {
                flex: 1 1 auto;
                min-width: auto;
            }
            .btn-cyan,
            .btn-outline-white {
                padding: 11px 20px;
                font-size: 14px;
            }
        }

        /* ========== SECTION TITLES ========== */
        .section-title-block {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-title-block h2 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px;
            letter-spacing: -0.3px;
        }
        .section-title-block .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
        }
        .section-title-block .update-time {
            display: inline-block;
            margin-top: 10px;
            font-size: 13px;
            color: var(--text-muted);
            background: rgba(0, 224, 212, 0.06);
            padding: 4px 12px;
            border-radius: 20px;
        }
        .section-title-block .update-time i {
            color: var(--cyan-accent);
            margin-right: 4px;
        }
        @media (max-width: 768px) {
            .section-title-block h2 {
                font-size: 26px;
            }
            .section-title-block {
                margin-bottom: 32px;
            }
        }

        /* ========== LIVE SCORES STRIP ========== */
        .live-scores-strip {
            padding: 60px 0;
            background: #ffffff;
        }
        .scores-scroll-wrapper {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #d0d5e0 transparent;
            padding-bottom: 12px;
        }
        .scores-scroll-wrapper::-webkit-scrollbar {
            height: 5px;
        }
        .scores-scroll-wrapper::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 10px;
        }
        .scores-scroll-wrapper::-webkit-scrollbar-thumb {
            background: #d0d5e0;
            border-radius: 10px;
        }
        .score-card {
            flex: 0 0 340px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-top: 3px solid var(--cyan-accent);
        }
        .score-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .score-game-tag {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(0, 224, 212, 0.08);
            color: #009c94;
        }
        .score-status {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .score-status.live {
            background: rgba(255, 77, 79, 0.10);
            color: var(--energy-orange);
        }
        .score-status.upcoming {
            background: rgba(0, 224, 212, 0.08);
            color: #009c94;
        }
        .score-status.finished {
            background: rgba(139, 146, 165, 0.10);
            color: var(--text-muted);
        }
        .live-breath-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--energy-orange);
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        .score-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .score-team {
            text-align: center;
            flex: 1;
        }
        .score-team-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8ecf3 0%, #d5dae3 100%);
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-secondary);
            font-weight: 700;
        }
        .score-team-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .score-vs-area {
            text-align: center;
            flex-shrink: 0;
        }
        .score-big {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 2px;
        }
        .score-big.live-color {
            color: var(--energy-orange);
        }
        .score-meta {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }
        .score-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-light);
            padding-top: 10px;
        }
        .score-event-name {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .score-link {
            font-size: 12px;
            font-weight: 600;
            color: var(--cyan-accent);
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .score-link:hover {
            color: #00b8a9;
        }
        @media (max-width: 768px) {
            .score-card {
                flex: 0 0 280px;
                padding: 14px;
                gap: 10px;
            }
            .score-big {
                font-size: 22px;
            }
            .score-team-avatar {
                width: 38px;
                height: 38px;
                font-size: 15px;
            }
            .score-team-name {
                font-size: 12px;
            }
            .live-scores-strip {
                padding: 40px 0;
            }
        }

        /* ========== HOT MATCHES GRID ========== */
        .hot-matches-grid-section {
            padding: 60px 0;
            background: var(--bg-global);
        }
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .match-grid-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            border: 1px solid var(--border-light);
        }
        .match-grid-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-top: 3px solid var(--cyan-accent);
        }
        .match-card-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .match-card-img .status-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .status-badge.live-badge {
            background: var(--energy-orange);
            color: #fff;
            animation: badge-pulse 2s ease-in-out infinite;
        }
        .status-badge.upcoming-badge {
            background: var(--cyan-accent);
            color: #0F1429;
        }
        .status-badge.done-badge {
            background: #8B92A5;
            color: #fff;
        }
        .match-card-body {
            padding: 18px 20px;
        }
        .match-card-body .match-league {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 6px;
            text-transform: uppercase;
        }
        .match-card-body h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 8px;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .match-card-teams {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .match-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-light);
            padding-top: 10px;
        }
        @media (max-width: 992px) {
            .matches-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }
        @media (max-width: 768px) {
            .matches-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .match-card-img {
                height: 140px;
            }
            .match-card-body h3 {
                font-size: 16px;
            }
            .hot-matches-grid-section {
                padding: 40px 0;
            }
        }

        /* ========== STATS RIBBON ========== */
        .stats-ribbon {
            padding: 48px 0;
            background: #ffffff;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            padding: 24px 16px;
            background: var(--bg-global);
            border-radius: var(--radius-md);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
        }
        .stat-item:hover {
            border-color: var(--cyan-accent);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }
        .stat-num {
            font-family: var(--font-mono);
            font-size: 42px;
            font-weight: 700;
            color: var(--cyan-accent);
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .stat-desc {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .stat-num {
                font-size: 34px;
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-num {
                font-size: 28px;
            }
            .stat-item {
                padding: 16px 10px;
            }
        }

        /* ========== GAME CATEGORY ENTRY ========== */
        .game-category-section {
            padding: 60px 0;
            background: var(--bg-global);
        }
        .category-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .category-entry-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            text-align: center;
            border: 1px solid var(--border-light);
        }
        .category-entry-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .category-card-icon-wrap {
            width: 100%;
            height: 130px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .category-card-icon-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(15, 20, 41, 0.45);
        }
        .category-card-icon-wrap span {
            position: relative;
            z-index: 1;
            font-size: 40px;
            color: #ffffff;
        }
        .category-entry-card .card-label {
            padding: 16px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
        }
        .category-entry-card .card-count {
            font-size: 12px;
            color: var(--text-muted);
            padding-bottom: 14px;
        }
        @media (max-width: 992px) {
            .category-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 520px) {
            .category-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .category-card-icon-wrap {
                height: 100px;
            }
            .category-entry-card .card-label {
                font-size: 13px;
                padding: 12px;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-section {
            padding: 60px 0;
            background: #ffffff;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .review-card {
            background: var(--bg-global);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .review-card:hover {
            box-shadow: var(--shadow-card);
            border-color: #d0d8e8;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A1F3B 0%, #2a3050 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan-accent);
            font-size: 16px;
            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: #ffb832;
            font-size: 13px;
            letter-spacing: 1px;
        }
        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .review-time {
            font-size: 11px;
            color: var(--text-muted);
        }
        @media (max-width: 992px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }
        @media (max-width: 768px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .reviews-section {
                padding: 40px 0;
            }
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 60px 0;
            background: var(--bg-global);
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .faq-item {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 20px 22px;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .faq-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 16px;
            bottom: 16px;
            width: 3px;
            background: var(--cyan-accent);
            border-radius: 0 3px 3px 0;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-card);
            border-color: #d0d8e8;
        }
        .faq-q {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .faq-a {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            background: var(--bg-global);
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            margin-top: 8px;
        }
        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .faq-section {
                padding: 40px 0;
            }
            .faq-item {
                padding: 16px;
            }
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: 64px 0;
            background: linear-gradient(160deg, #0F1429 0%, #1A1F3B 100%);
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.06;
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-inner h2 {
            font-family: var(--font-heading);
            font-size: 34px;
            font-weight: 700;
            margin: 0 0 12px;
        }
        .cta-inner p {
            font-size: 16px;
            color: #c0c8d8;
            margin: 0 0 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .cta-section {
                padding: 44px 0;
            }
            .cta-inner h2 {
                font-size: 26px;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0F1429;
            color: #b0b8c8;
            padding: 56px 0 0;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 30px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-logo {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .footer-desc {
            font-size: 13px;
            color: #8B92A5;
            line-height: 1.7;
            max-width: 260px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #8B92A5;
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: var(--cyan-accent);
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            font-size: 12px;
            color: #6b7280;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: #8B92A5;
            margin: 0 6px;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--cyan-accent);
        }
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 24px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .footer-desc {
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .site-footer {
                padding: 40px 0 0;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
        }

        /* ========== UTILS ========== */
        .text-cyan {
            color: var(--cyan-accent);
        }
        .section-spacer {
            padding: 60px 0;
        }
        @media (max-width: 768px) {
            .section-spacer {
                padding: 40px 0;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

/* roulang page: category4 */
:root {
            --dark-bg: #1A1F3B;
            --deeper-bg: #0F1429;
            --cyan-accent: #00E0D4;
            --energy-orange: #FF4D4F;
            --surface-bg: #F4F6FC;
            --card-white: #FFFFFF;
            --text-primary: #1A1F3B;
            --text-secondary: #5B6080;
            --text-muted: #8B8FA8;
            --text-on-dark: #E8EAF0;
            --border-light: #E2E5F0;
            --border-subtle: #D5D8E8;
            --shadow-card: 0 8px 24px rgba(15, 20, 41, 0.06);
            --shadow-card-hover: 0 16px 40px rgba(15, 20, 41, 0.12);
            --shadow-elevated: 0 20px 48px rgba(15, 20, 41, 0.14);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --radius-full: 50px;
            --spacing-xs: 6px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-2xl: 72px;
            --spacing-3xl: 100px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.25s ease;
            --transition-slow: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            --font-heading: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --font-body: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --font-mono: 'Inter', 'SF Mono', 'Consolas', monospace;
            --container-max: 1320px;
            --nav-height-desktop: 112px;
            --nav-height-mobile: 56px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--surface-bg);
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--cyan-accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all var(--transition-smooth);
        }

        input {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 1400px) {
            .container {
                max-width: 1140px;
            }
        }
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
            }
        }
        @media (max-width: 992px) {
            .container {
                max-width: 720px;
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        @media (max-width: 768px) {
            .container {
                max-width: 100%;
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(26, 31, 59, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
            transition: all var(--transition-smooth);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: var(--spacing-md);
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            flex-shrink: 0;
            color: #fff;
            transition: opacity var(--transition-fast);
        }
        .brand-logo:hover {
            color: #fff;
            opacity: 0.88;
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--cyan-accent) 0%, #00B8A9 100%);
            color: var(--deeper-bg);
            font-size: 18px;
            flex-shrink: 0;
            box-shadow: 0 0 16px rgba(0, 224, 212, 0.35);
        }
        .logo-text {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.3px;
            color: #fff;
            white-space: nowrap;
        }
        .logo-dot {
            color: var(--cyan-accent);
            font-weight: 900;
        }

        .header-meta {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 500;
            color: #B0B8D0;
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.04);
            padding: 6px 13px;
            border-radius: var(--radius-full);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--energy-orange);
            animation: livePulse 1.6s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 77, 79, 0);
            }
        }

        .header-search {
            position: relative;
            display: flex;
            align-items: center;
        }
        .header-search input {
            width: 180px;
            padding: 8px 36px 8px 14px;
            border-radius: var(--radius-full);
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 13px;
            transition: all var(--transition-smooth);
        }
        .header-search input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .header-search input:focus {
            width: 220px;
            border-color: var(--cyan-accent);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.12);
        }
        .search-icon {
            position: absolute;
            right: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            pointer-events: none;
        }

        .nav-channels-row {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-bottom: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-channels-row::-webkit-scrollbar {
            display: none;
        }

        .nav-channel-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 9px 16px;
            font-size: 14px;
            font-weight: 600;
            color: #B0B8D0;
            border-radius: var(--radius-full);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.1px;
        }
        .nav-channel-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-channel-link.active {
            color: #fff;
            background: rgba(0, 224, 212, 0.12);
            box-shadow: inset 0 -3px 0 0 var(--cyan-accent);
            border-radius: var(--radius-full) var(--radius-full) 0 0;
        }
        .nav-badge {
            font-size: 10px;
            font-weight: 700;
            background: var(--energy-orange);
            color: #fff;
            padding: 2px 7px;
            border-radius: var(--radius-full);
            letter-spacing: 0.5px;
            animation: livePulse 2s ease-in-out infinite;
        }

        @media (max-width: 992px) {
            .header-search input {
                width: 130px;
            }
            .header-search input:focus {
                width: 160px;
            }
            .nav-channel-link {
                padding: 7px 11px;
                font-size: 13px;
            }
            .live-indicator {
                font-size: 11px;
                padding: 5px 10px;
            }
            .logo-text {
                font-size: 19px;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                position: fixed;
                bottom: 0;
                top: auto;
                background: rgba(15, 20, 41, 0.98);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                border-bottom: none;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
            }
            .header-top-row {
                display: none;
            }
            .nav-channels-row {
                justify-content: space-around;
                padding: 6px 4px 8px;
                gap: 0;
                overflow-x: auto;
            }
            .nav-channel-link {
                flex-direction: column;
                font-size: 10px;
                padding: 6px 7px;
                gap: 3px;
                border-radius: var(--radius-sm);
                text-align: center;
                min-width: 52px;
            }
            .nav-channel-link.active {
                border-radius: var(--radius-sm);
                box-shadow: inset 0 -2px 0 0 var(--cyan-accent);
                background: rgba(0, 224, 212, 0.1);
            }
            .nav-badge {
                font-size: 8px;
                padding: 1px 5px;
            }
            body {
                padding-bottom: 70px;
            }
        }
        @media (max-width: 520px) {
            .nav-channel-link {
                font-size: 9px;
                padding: 5px 5px;
                min-width: 42px;
            }
        }

        /* ========== HERO ========== */
        .page-hero {
            position: relative;
            background: linear-gradient(170deg, #0F1429 0%, #1A1F3B 40%, #1E2445 100%);
            padding: var(--spacing-3xl) 0 var(--spacing-2xl);
            overflow: hidden;
            min-height: 520px;
            display: flex;
            align-items: center;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 224, 212, 0.25), transparent);
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
        }
        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: var(--spacing-md);
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            background: rgba(0, 224, 212, 0.1);
            color: var(--cyan-accent);
            border: 1px solid rgba(0, 224, 212, 0.25);
            letter-spacing: 0.3px;
        }
        .hero-badge.live-badge {
            background: rgba(255, 77, 79, 0.15);
            color: var(--energy-orange);
            border-color: rgba(255, 77, 79, 0.3);
            animation: livePulse 2s ease-in-out infinite;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 44px;
            font-weight: 800;
            letter-spacing: -0.6px;
            color: #fff;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
        }
        .hero-title .highlight {
            color: var(--cyan-accent);
            position: relative;
        }
        .hero-subtitle {
            font-size: 17px;
            color: #B0B8D0;
            line-height: 1.65;
            margin-bottom: var(--spacing-lg);
            max-width: 480px;
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
        }
        .btn-primary-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 700;
            border-radius: var(--radius-md);
            background: var(--cyan-accent);
            color: var(--deeper-bg);
            border: none;
            transition: all var(--transition-smooth);
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .btn-primary-cyan:hover {
            background: #00F5E8;
            color: var(--deeper-bg);
            box-shadow: 0 0 20px rgba(0, 224, 212, 0.4);
            transform: translateY(-2px);
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 700;
            border-radius: var(--radius-md);
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.35);
            transition: all var(--transition-smooth);
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-visual {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .hero-dashboard-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            backdrop-filter: blur(6px);
            transition: all var(--transition-smooth);
        }
        .hero-dashboard-card:hover {
            border-color: rgba(0, 224, 212, 0.4);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }
        .dashboard-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .dashboard-card-label {
            font-size: 12px;
            font-weight: 600;
            color: #B0B8D0;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .dashboard-card-value {
            font-family: var(--font-mono);
            font-size: 30px;
            font-weight: 800;
            color: var(--cyan-accent);
            letter-spacing: -1px;
        }
        .dashboard-card-sub {
            font-size: 12px;
            color: #8B8FA8;
        }
        .dashboard-mini-row {
            display: flex;
            gap: 12px;
        }
        .dashboard-mini-row .hero-dashboard-card {
            flex: 1;
            min-width: 0;
        }

        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .hero-title {
                font-size: 34px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .page-hero {
                min-height: auto;
                padding: var(--spacing-xl) 0 var(--spacing-lg);
            }
            .dashboard-mini-row {
                flex-wrap: wrap;
            }
            .dashboard-mini-row .hero-dashboard-card {
                flex: 1 1 45%;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 26px;
                letter-spacing: -0.3px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .btn-primary-cyan,
            .btn-outline-light {
                padding: 11px 20px;
                font-size: 13px;
            }
            .dashboard-card-value {
                font-size: 24px;
            }
            .page-hero {
                padding: var(--spacing-lg) 0;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: var(--spacing-2xl) 0;
        }
        .section-block.alt-bg {
            background: #fff;
        }
        .section-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--cyan-accent);
            margin-bottom: var(--spacing-xs);
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            margin-bottom: var(--spacing-sm);
            line-height: 1.25;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.7;
            margin-bottom: var(--spacing-lg);
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
            }
            .section-desc {
                font-size: 14px;
            }
            .section-block {
                padding: var(--spacing-xl) 0;
            }
        }

        /* ========== LIVE CARDS GRID ========== */
        .live-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .live-card {
            background: var(--card-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            position: relative;
        }
        .live-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: rgba(0, 224, 212, 0.3);
            border-top: 3px solid var(--cyan-accent);
        }
        .live-card-image {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #1A1F3B;
        }
        .live-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .live-card:hover .live-card-image img {
            transform: scale(1.05);
        }
        .live-status-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            letter-spacing: 0.3px;
            z-index: 2;
        }
        .live-status-tag.living {
            background: var(--energy-orange);
            color: #fff;
            animation: livePulse 1.8s ease-in-out infinite;
        }
        .live-status-tag.upcoming {
            background: var(--cyan-accent);
            color: var(--deeper-bg);
        }
        .live-status-tag.replay-available {
            background: #6C7293;
            color: #fff;
        }
        .live-card-body {
            padding: var(--spacing-md);
        }
        .live-card-game {
            font-size: 11px;
            font-weight: 600;
            color: var(--cyan-accent);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 4px;
        }
        .live-card-title {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .live-card-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .live-card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .live-card-action {
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 600;
            color: var(--cyan-accent);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .live-card-action:hover {
            gap: 8px;
            color: #00B8A9;
        }

        @media (max-width: 992px) {
            .live-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 600px) {
            .live-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .live-card-title {
                font-size: 15px;
            }
        }

        /* ========== TIMELINE ========== */
        .replay-timeline {
            position: relative;
            padding-left: 0;
        }
        .timeline-item {
            display: flex;
            gap: 20px;
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .timeline-item:hover {
            background: rgba(0, 224, 212, 0.03);
            padding-left: 10px;
            border-radius: var(--radius-md);
        }
        .timeline-time {
            flex-shrink: 0;
            width: 90px;
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 700;
            color: var(--cyan-accent);
            padding-top: 2px;
        }
        .timeline-content {
            flex: 1;
            min-width: 0;
        }
        .timeline-game-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 3px;
        }
        .timeline-title {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 3px;
        }
        .timeline-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .timeline-replay-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 700;
            border-radius: var(--radius-full);
            background: rgba(0, 224, 212, 0.08);
            color: var(--cyan-accent);
            border: 1px solid rgba(0, 224, 212, 0.25);
            transition: all var(--transition-fast);
            white-space: nowrap;
            align-self: center;
        }
        .timeline-replay-btn:hover {
            background: var(--cyan-accent);
            color: var(--deeper-bg);
            border-color: var(--cyan-accent);
        }
        @media (max-width: 768px) {
            .timeline-item {
                flex-wrap: wrap;
                gap: 8px;
            }
            .timeline-time {
                width: 100%;
                font-size: 12px;
            }
            .timeline-replay-btn {
                margin-top: 6px;
            }
        }

        /* ========== GUIDE CARDS ========== */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .guide-card {
            background: var(--card-white);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg) var(--spacing-md);
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
        }
        .guide-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: rgba(0, 224, 212, 0.25);
        }
        .guide-icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(0, 224, 212, 0.1);
            color: var(--cyan-accent);
            font-size: 24px;
            margin-bottom: var(--spacing-sm);
            transition: all var(--transition-smooth);
        }
        .guide-card:hover .guide-icon-circle {
            background: var(--cyan-accent);
            color: #fff;
        }
        .guide-card h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .guide-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }
        @media (max-width: 992px) {
            .guide-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .guide-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== STATS ROW ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: var(--card-white);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .stat-number {
            font-family: var(--font-mono);
            font-size: 38px;
            font-weight: 800;
            color: var(--cyan-accent);
            letter-spacing: -1px;
            line-height: 1;
        }
        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
            font-weight: 500;
        }
        @media (max-width: 992px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .stat-number {
                font-size: 30px;
            }
        }
        @media (max-width: 520px) {
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-number {
                font-size: 26px;
            }
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .review-card {
            background: var(--card-white);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border-left: 4px solid transparent;
        }
        .review-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-left-color: var(--cyan-accent);
            transform: translateY(-2px);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A1F3B 0%, #3A4070 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-primary);
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-muted);
            background: var(--surface-bg);
            padding: 2px 8px;
            border-radius: var(--radius-full);
        }
        .review-stars {
            color: #F5A623;
            font-size: 13px;
            margin-bottom: 6px;
        }
        .review-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 0;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 8px;
        }
        @media (max-width: 992px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ ========== */
        .faq-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-light);
            padding: var(--spacing-md) 0;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            background: rgba(0, 224, 212, 0.02);
            padding-left: 12px;
        }
        .faq-question {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .faq-question::before {
            content: '';
            flex-shrink: 0;
            width: 4px;
            height: 20px;
            background: var(--cyan-accent);
            border-radius: 2px;
            margin-top: 3px;
        }
        .faq-answer {
            font-size: 14px;
            color: var(--text-secondary);
            padding: 8px 0 0 18px;
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open {
            background: rgba(0, 224, 212, 0.03);
            border-radius: var(--radius-md);
            padding-left: 12px;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, #0F1429 0%, #1A1F3B 50%, #1E3050 100%);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl) var(--spacing-lg);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 224, 212, 0.2);
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(0, 224, 212, 0.06);
            pointer-events: none;
        }
        .cta-banner h3 {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: var(--spacing-sm);
            position: relative;
            z-index: 1;
        }
        .cta-banner p {
            font-size: 16px;
            color: #B0B8D0;
            margin-bottom: var(--spacing-lg);
            position: relative;
            z-index: 1;
        }
        .cta-banner .btn-primary-cyan {
            position: relative;
            z-index: 1;
            font-size: 16px;
            padding: 15px 36px;
        }
        @media (max-width: 768px) {
            .cta-banner h3 {
                font-size: 22px;
            }
            .cta-banner p {
                font-size: 14px;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--deeper-bg);
            color: #B0B8D0;
            padding: var(--spacing-2xl) 0 var(--spacing-md);
            margin-top: var(--spacing-2xl);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-xl);
        }
        .footer-logo {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: var(--spacing-sm);
        }
        .footer-desc {
            font-size: 13px;
            color: #8B8FA8;
            line-height: 1.7;
            margin-bottom: 0;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.3px;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #8B8FA8;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--cyan-accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: var(--spacing-md);
            text-align: center;
            font-size: 12px;
            color: #6C7293;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: #8B8FA8;
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--cyan-accent);
        }
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-sm);
            }
            .footer-col h4 {
                font-size: 13px;
            }
            .footer-col ul li a {
                font-size: 12px;
            }
        }

        /* ========== UTILS ========== */
        .text-cyan {
            color: var(--cyan-accent);
        }
        .text-orange {
            color: var(--energy-orange);
        }
        .fw-800 {
            font-weight: 800;
        }
        .gap-3 {
            gap: 1rem;
        }
        .mb-0 {
            margin-bottom: 0 !important;
        }

/* roulang page: category3 */
:root {
            --deep-indigo: #1A1F3B;
            --dark-surface: #0F1429;
            --cyan-accent: #00E0D4;
            --cyan-glow: rgba(0, 224, 212, 0.3);
            --energy-red: #FF4D4F;
            --energy-red-glow: rgba(255, 77, 79, 0.35);
            --bg-page: #F4F6FC;
            --bg-card: #FFFFFF;
            --bg-faq-expanded: #EDF1F9;
            --text-primary: #1A1F3B;
            --text-secondary: #5A5F7A;
            --text-muted: #8B8FA8;
            --text-on-dark: #E8EAF0;
            --border-light: #E2E6F0;
            --border-card: #E8EBF3;
            --shadow-card: 0 8px 24px rgba(15, 20, 41, 0.06);
            --shadow-card-hover: 0 14px 36px rgba(15, 20, 41, 0.12);
            --shadow-nav: 0 2px 16px rgba(15, 20, 41, 0.08);
            --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);
            --container-max: 1320px;
            --section-gap: 96px;
            --card-gap: 24px;
            --font-h1: 48px;
            --font-h2: 32px;
            --font-h3: 20px;
            --font-body: 16px;
            --font-metric: 36px;
            --font-tag: 13px;
        }

        *,
        *::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: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Source Han Sans CN', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
            font-size: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-page);
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--cyan-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Container */
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== HEADER ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-nav);
            transition: all var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(26, 31, 59, 0.96);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .site-header.scrolled .brand-logo .logo-text,
        .site-header.scrolled .nav-channel-link,
        .site-header.scrolled .live-indicator span,
        .site-header.scrolled .header-search input {
            color: #E8EAF0;
        }
        .site-header.scrolled .header-search input {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.18);
        }
        .site-header.scrolled .header-search input::placeholder {
            color: rgba(232, 234, 240, 0.5);
        }
        .site-header.scrolled .nav-channel-link.active {
            color: var(--cyan-accent);
        }
        .site-header.scrolled .live-dot {
            box-shadow: 0 0 8px var(--cyan-accent);
        }

        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 56px;
            gap: 20px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 22px;
            color: var(--deep-indigo);
            white-space: nowrap;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }
        .brand-logo:hover {
            color: var(--cyan-accent);
        }
        .logo-icon {
            color: var(--cyan-accent);
            font-size: 24px;
            display: flex;
            align-items: center;
        }
        .logo-dot {
            color: var(--cyan-accent);
            font-weight: 800;
        }
        .header-meta {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
        }
        .live-indicator {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: var(--font-tag);
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .live-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--cyan-accent);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 2px var(--cyan-accent);
                opacity: 1;
            }
            50% {
                box-shadow: 0 0 10px var(--cyan-glow);
                opacity: 0.65;
            }
        }
        .header-search {
            position: relative;
        }
        .header-search input {
            width: 200px;
            height: 36px;
            padding: 0 36px 0 14px;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-primary);
            background: var(--bg-card);
            transition: all var(--transition-fast);
            outline: none;
        }
        .header-search input:focus {
            border-color: var(--cyan-accent);
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.08);
            width: 240px;
        }
        .header-search input::placeholder {
            color: var(--text-muted);
        }
        .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            pointer-events: none;
        }

        /* Nav Channels Row */
        .nav-channels-row {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-bottom: 8px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-channels-row::-webkit-scrollbar {
            display: none;
        }
        .nav-channel-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            white-space: nowrap;
            position: relative;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-channel-link:hover {
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.04);
        }
        .nav-channel-link.active {
            color: var(--cyan-accent);
            font-weight: 600;
        }
        .nav-channel-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--cyan-accent);
            border-radius: 0 0 3px 3px;
            transition: all var(--transition-fast);
        }
        .nav-badge {
            display: inline-block;
            background: var(--energy-red);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 10px;
            letter-spacing: 0.5px;
            animation: badge-pulse 2s ease-in-out infinite;
        }
        @keyframes badge-pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            background: linear-gradient(160deg, #0F1429 0%, #1A1F3B 40%, #1E2548 100%);
            padding: 72px 0 64px;
            position: relative;
            overflow: hidden;
            color: #E8EAF0;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 224, 212, 0.25), transparent);
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: var(--font-h1);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            color: #FFFFFF;
            margin-bottom: 16px;
        }
        .hero-text h1 .highlight {
            color: var(--cyan-accent);
            position: relative;
        }
        .hero-text .hero-subtitle {
            font-size: 17px;
            color: #C4C8D8;
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: var(--font-tag);
            font-weight: 500;
            background: rgba(255, 255, 255, 0.06);
            color: #C4C8D8;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition-fast);
        }
        .hero-tag:hover {
            background: rgba(0, 224, 212, 0.12);
            border-color: rgba(0, 224, 212, 0.3);
            color: var(--cyan-accent);
        }
        .hero-tag.hot {
            background: rgba(255, 77, 79, 0.15);
            border-color: rgba(255, 77, 79, 0.35);
            color: #FF8082;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-cyan {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--cyan-accent);
            color: #0F1429;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .btn-cyan:hover {
            background: #00F0E4;
            color: #0F1429;
            box-shadow: 0 0 16px var(--cyan-glow);
            transform: translateY(-2px);
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: transparent;
            color: #E8EAF0;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-sm);
            border: 2px solid rgba(232, 234, 240, 0.35);
            cursor: pointer;
            transition: all var(--transition-fast);
            text-decoration: none;
        }
        .btn-outline-light:hover {
            border-color: var(--cyan-accent);
            color: var(--cyan-accent);
            background: rgba(0, 224, 212, 0.06);
            transform: translateY(-2px);
        }
        .hero-visual {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .hero-data-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all var(--transition-fast);
            backdrop-filter: blur(4px);
        }
        .hero-data-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(0, 224, 212, 0.3);
            transform: translateX(4px);
        }
        .hero-data-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .hero-data-icon.cyan-bg {
            background: rgba(0, 224, 212, 0.15);
            color: var(--cyan-accent);
        }
        .hero-data-icon.red-bg {
            background: rgba(255, 77, 79, 0.15);
            color: var(--energy-red);
        }
        .hero-data-icon.blue-bg {
            background: rgba(100, 140, 255, 0.15);
            color: #80A0FF;
        }
        .hero-data-info .data-value {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            color: #FFFFFF;
            line-height: 1.2;
        }
        .hero-data-info .data-label {
            font-size: 12px;
            color: #8B8FA8;
            font-weight: 500;
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-block.section-alt {
            background: #FFFFFF;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-size: var(--font-h2);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .section-header .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
        .section-label {
            display: inline-block;
            font-size: var(--font-tag);
            font-weight: 600;
            color: var(--cyan-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        /* ========== METRICS ROW ========== */
        .metrics-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--card-gap);
        }
        .metric-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-card);
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }
        .metric-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-top: 2px solid var(--cyan-accent);
        }
        .metric-card .metric-icon {
            font-size: 28px;
            color: var(--cyan-accent);
            margin-bottom: 10px;
        }
        .metric-card .metric-value {
            font-size: var(--font-metric);
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            color: var(--deep-indigo);
            line-height: 1.2;
        }
        .metric-card .metric-label {
            font-size: var(--font-tag);
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 4px;
        }
        .metric-card .metric-update {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ========== FEATURE CARDS GRID ========== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--card-gap);
        }
        .feature-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-card);
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
            border-top: 3px solid var(--cyan-accent);
        }
        .feature-card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .feature-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .feature-card:hover .feature-card-img img {
            transform: scale(1.04);
        }
        .feature-card-img .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 5px 12px;
            border-radius: 16px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            background: var(--energy-red);
            z-index: 1;
        }
        .feature-card-img .card-badge.cyan {
            background: var(--cyan-accent);
            color: #0F1429;
        }
        .feature-card-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .feature-card-body h3 {
            font-size: var(--font-h3);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .feature-card-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }
        .feature-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-muted);
        }
        .feature-card-meta .meta-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan-accent);
        }

        /* ========== NEWS LIST ========== */
        .news-list-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--card-gap);
        }
        .news-item-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-card);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .news-item-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-left: 3px solid var(--cyan-accent);
        }
        .news-item-left {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }
        .news-item-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item-right {
            flex: 1;
            min-width: 0;
        }
        .news-item-right h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .news-item-right .news-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-tags {
            display: flex;
            gap: 8px;
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .news-tag {
            font-size: 11px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 12px;
            background: #EDF1F9;
            color: var(--text-secondary);
        }
        .news-tag.accent {
            background: rgba(0, 224, 212, 0.1);
            color: #009B92;
        }

        /* ========== TIMELINE ========== */
        .timeline-section {
            position: relative;
        }
        .timeline-list {
            position: relative;
            padding-left: 32px;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--cyan-accent) 0%, rgba(0, 224, 212, 0.2) 100%);
            border-radius: 1px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding-left: 28px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -21px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--cyan-accent);
            border: 3px solid #fff;
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.2);
            z-index: 1;
        }
        .timeline-item .timeline-date {
            font-size: 12px;
            font-weight: 600;
            color: var(--cyan-accent);
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .timeline-item .timeline-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .timeline-item .timeline-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .timeline-item .timeline-game-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 500;
            padding: 2px 8px;
            border-radius: 10px;
            background: rgba(26, 31, 59, 0.06);
            color: var(--text-secondary);
            margin-left: 8px;
        }

        /* ========== TESTIMONIALS ========== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--card-gap);
        }
        .testimonial-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-card);
            transition: all var(--transition-fast);
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .testimonial-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1A1F3B, #3A4A7A);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .testimonial-user .user-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .testimonial-user .user-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .testimonial-stars {
            color: #F5C518;
            font-size: 13px;
            margin-bottom: 8px;
        }
        .testimonial-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .testimonial-time {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 10px;
        }

        /* ========== FAQ ========== */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-card);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--cyan-accent);
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: color var(--transition-fast);
            user-select: none;
        }
        .faq-question:hover {
            color: var(--cyan-accent);
        }
        .faq-q-icon {
            color: var(--cyan-accent);
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .faq-answer {
            padding: 0 22px 18px 52px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
            background: var(--bg-faq-expanded);
            border-top: 1px solid var(--border-light);
            margin: 0;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question {
            color: var(--cyan-accent);
        }
        .faq-item.open {
            border-color: var(--cyan-accent);
            box-shadow: 0 0 0 3px rgba(0, 224, 212, 0.05);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #1A1F3B 0%, #0F1429 100%);
            padding: 64px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-inner h2 {
            font-size: 30px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }
        .cta-inner p {
            color: #C4C8D8;
            font-size: 16px;
            margin-bottom: 28px;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0F1429;
            color: #C4C8D8;
            padding: 56px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-brand .footer-logo {
            font-size: 20px;
            font-weight: 700;
            color: #E8EAF0;
            margin-bottom: 10px;
        }
        .footer-desc {
            font-size: 13px;
            color: #8B8FA8;
            line-height: 1.7;
            max-width: 280px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #E8EAF0;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #8B8FA8;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--cyan-accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #6B6F88;
            line-height: 2;
        }
        .footer-bottom a {
            color: #8B8FA8;
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--cyan-accent);
        }
        .footer-bottom .footer-links-row {
            margin-bottom: 6px;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            :root {
                --font-h1: 38px;
                --font-h2: 26px;
                --section-gap: 64px;
                --font-metric: 28px;
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-tags {
                justify-content: center;
            }
            .hero-visual {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-data-card {
                flex: 1;
                min-width: 180px;
            }
            .metrics-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-list-block {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            :root {
                --font-h1: 30px;
                --font-h2: 22px;
                --section-gap: 48px;
                --font-metric: 24px;
                --card-gap: 16px;
            }
            .header-top-row {
                height: 48px;
                gap: 10px;
            }
            .header-search input {
                width: 140px;
            }
            .header-search input:focus {
                width: 160px;
            }
            .live-indicator {
                display: none;
            }
            .nav-channels-row {
                gap: 0;
                padding-bottom: 6px;
            }
            .nav-channel-link {
                padding: 7px 11px;
                font-size: 12px;
            }
            .hero-section {
                padding: 48px 0 40px;
            }
            .hero-data-card {
                min-width: 140px;
                padding: 14px 16px;
            }
            .hero-data-info .data-value {
                font-size: 22px;
            }
            .metrics-row {
                grid-template-columns: 1fr 1fr;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .timeline-list {
                padding-left: 20px;
            }
            .timeline-list::before {
                left: 9px;
            }
            .timeline-item {
                padding-left: 20px;
            }
            .timeline-item::before {
                left: -15px;
                width: 10px;
                height: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .cta-inner h2 {
                font-size: 24px;
            }
            .section-header h2 {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --font-h1: 26px;
                --font-h2: 20px;
                --section-gap: 36px;
                --font-metric: 20px;
            }
            .header-search input {
                width: 100px;
                font-size: 11px;
            }
            .header-search input:focus {
                width: 120px;
            }
            .brand-logo {
                font-size: 18px;
            }
            .logo-icon {
                font-size: 20px;
            }
            .hero-visual {
                flex-direction: column;
            }
            .hero-data-card {
                min-width: auto;
            }
            .metrics-row {
                grid-template-columns: 1fr;
            }
            .btn-cyan,
            .btn-outline-light {
                padding: 11px 20px;
                font-size: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .testimonial-card {
                padding: 16px;
            }
            .feature-card-img {
                height: 160px;
            }
            .nav-channel-link {
                padding: 6px 8px;
                font-size: 11px;
            }
            .nav-channel-link.active::after {
                left: 8px;
                right: 8px;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                padding: 4px 10px;
                font-size: 11px;
            }
        }
