/* roulang page: index */
:root {
            --bg-primary: #0D1117;
            --bg-secondary: #080C10;
            --bg-card: rgba(22, 27, 34, 0.85);
            --bg-card-solid: #161B22;
            --bg-table-row: #1B2128;
            --text-title: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --accent-orange: #FF6A3D;
            --accent-orange-light: #FF8A5C;
            --accent-green: #2EED9E;
            --border-subtle: rgba(255, 106, 61, 0.15);
            --border-medium: rgba(255, 106, 61, 0.4);
            --border-strong: rgba(255, 106, 61, 0.5);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.6);
            --shadow-card-hover: 0px 12px 32px rgba(0, 0, 0, 0.8);
            --shadow-glow: 0 0 18px rgba(255, 106, 61, 0.6);
            --shadow-glow-strong: 0 0 28px rgba(255, 106, 61, 0.85);
            --font-title: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --font-body: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 56px;
            --brand-row-height: 48px;
            --section-gap: 64px;
            --container-max: 1280px;
        }

        *,
        *::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.6;
            color: var(--text-body);
            background-color: var(--bg-primary);
            min-height: 100vh;
            overflow-x: hidden;
            letter-spacing: 0.01em;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        input {
            font-family: inherit;
            outline: none;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* ========== CONTAINER ========== */
        .custom-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .custom-container {
                padding: 0 16px;
            }
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: rgba(13, 17, 23, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 106, 61, 0.1);
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(8, 12, 16, 0.96);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--brand-row-height);
            padding: 0 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 22px;
            letter-spacing: 0.5px;
            color: #F0F3F8;
            text-shadow: 0 0 12px rgba(255, 106, 61, 0.35);
            white-space: nowrap;
        }
        .brand-logo .logo-main {
            font-style: italic;
            letter-spacing: 1.2px;
        }
        .brand-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.8px;
            color: var(--accent-orange);
            background: rgba(255, 106, 61, 0.1);
            padding: 2px 7px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 106, 61, 0.2);
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 6px 14px;
            gap: 8px;
            transition: border-color var(--transition-fast), background var(--transition-fast);
        }
        .search-box:hover,
        .search-box:focus-within {
            border-color: var(--accent-orange);
            background: rgba(255, 106, 61, 0.05);
        }
        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-body);
            font-size: 13px;
            width: 150px;
            outline: none;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box .search-icon {
            color: var(--text-muted);
            font-size: 14px;
            transition: color var(--transition-fast);
        }
        .search-box:focus-within .search-icon {
            color: var(--accent-orange);
        }
        .user-avatar-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
            transition: border-color var(--transition-fast);
            cursor: pointer;
        }
        .user-avatar-placeholder:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        /* Channel Nav */
        .channel-nav {
            display: flex;
            align-items: center;
            height: var(--nav-height);
            padding: 0 24px;
            gap: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .channel-nav a {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            white-space: nowrap;
            border-radius: var(--radius-sm);
            position: relative;
            transition: color var(--transition-fast), background var(--transition-fast);
            letter-spacing: 0.02em;
        }
        .channel-nav a:hover {
            color: #fff;
            background: rgba(255, 106, 61, 0.06);
        }
        .channel-nav a.active {
            color: #fff;
            font-weight: 600;
        }
        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 15px;
            right: 15px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.7);
        }
        .trend-capsule {
            margin-left: auto;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 106, 61, 0.08);
            border: 1px solid rgba(255, 106, 61, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--accent-orange-light);
            cursor: pointer;
            transition: background var(--transition-fast), border-color var(--transition-fast);
            white-space: nowrap;
        }
        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.14);
            border-color: var(--border-medium);
        }
        .trend-capsule .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 237, 158, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(46, 237, 158, 0);
            }
        }

        /* Mobile nav toggle */
        .mobile-nav-toggle {
            display: none;
            background: transparent;
            color: #fff;
            font-size: 22px;
            border: none;
            padding: 6px 10px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            .channel-nav {
                display: none;
                flex-wrap: wrap;
                height: auto;
                padding: 8px 16px;
                gap: 2px;
            }
            .channel-nav.open {
                display: flex;
            }
            .channel-nav a {
                font-size: 13px;
                padding: 6px 12px;
            }
            .trend-capsule {
                margin-left: 0;
                margin-top: 4px;
            }
            .search-box input {
                width: 90px;
                font-size: 12px;
            }
            .brand-logo {
                font-size: 18px;
            }
            .brand-logo .logo-sub {
                font-size: 9px;
                padding: 1px 5px;
            }
        }
        @media (max-width: 520px) {
            .brand-row {
                padding: 0 12px;
            }
            .search-box {
                padding: 4px 10px;
                gap: 4px;
            }
            .search-box input {
                width: 60px;
            }
            .brand-logo {
                font-size: 16px;
            }
            .user-avatar-placeholder {
                width: 26px;
                height: 26px;
                font-size: 11px;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            padding: 60px 0 50px;
            overflow: hidden;
            background: var(--bg-primary);
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
            opacity: 0.25;
            z-index: 0;
            filter: saturate(0.6) brightness(0.7);
        }
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(255, 106, 61, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 40%, rgba(46, 237, 158, 0.04) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
        }
        .hero-left {
            padding-right: 24px;
        }
        .hero-left h1 {
            font-family: var(--font-title);
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.15;
            color: var(--text-title);
            margin-bottom: 16px;
        }
        .hero-left h1 .highlight {
            color: var(--accent-orange);
            text-shadow: 0 0 30px rgba(255, 106, 61, 0.5);
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--text-body);
            margin-bottom: 24px;
            line-height: 1.55;
            max-width: 480px;
        }
        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5C 100%);
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            box-shadow: var(--shadow-glow);
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-glow-strong);
            transform: scale(1.02);
            color: #fff;
        }
        .btn-primary:active {
            transform: scale(0.98);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            font-size: 15px;
            font-weight: 600;
            color: var(--accent-orange);
            background: transparent;
            border: 1px solid var(--border-strong);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.03em;
        }
        .btn-secondary:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent-orange);
            color: #fff;
        }
        .btn-sm {
            padding: 6px 14px;
            font-size: 12px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .btn-sm-outline {
            background: transparent;
            border: 1px solid rgba(255, 106, 61, 0.4);
            color: var(--accent-orange-light);
            font-size: 12px;
        }
        .btn-sm-outline:hover {
            background: rgba(255, 106, 61, 0.12);
            border-color: var(--accent-orange);
            color: #fff;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            background: rgba(255, 106, 61, 0.08);
            border: 1px solid rgba(255, 106, 61, 0.18);
            color: var(--accent-orange-light);
            transition: all var(--transition-fast);
            cursor: default;
        }
        .hero-tag.online-count {
            border-color: rgba(46, 237, 158, 0.3);
            color: var(--accent-green);
            background: rgba(46, 237, 158, 0.06);
        }
        /* Hero right - live dashboard */
        .hero-dashboard {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            min-height: 280px;
        }
        .dashboard-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dashboard-title .live-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }
        .dashboard-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 13px;
        }
        .dashboard-item:last-child {
            border-bottom: none;
        }
        .dashboard-label {
            color: var(--text-muted);
            font-size: 12px;
        }
        .dashboard-value {
            font-weight: 600;
            color: #fff;
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
            font-family: 'Inter', 'SF Mono', monospace;
        }
        .dashboard-value.big {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-orange);
            letter-spacing: -0.5px;
        }
        .dashboard-value.green {
            color: var(--accent-green);
        }
        .match-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 13px;
        }
        .match-mini .team {
            font-weight: 600;
            color: #fff;
            font-size: 12px;
        }
        .match-mini .score {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-orange);
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
        }
        .match-mini .map-name {
            font-size: 11px;
            color: var(--text-muted);
        }
        .match-mini .live-dot-sm {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-green);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 36px 0 32px;
            }
            .hero-left h1 {
                font-size: 32px;
                letter-spacing: -0.3px;
            }
            .hero-subtitle {
                font-size: 15px;
                max-width: 100%;
            }
            .hero-left {
                padding-right: 0;
                margin-bottom: 24px;
            }
            .hero-dashboard {
                min-height: auto;
            }
            .btn-primary,
            .btn-secondary {
                padding: 11px 20px;
                font-size: 14px;
            }
        }
        @media (max-width: 520px) {
            .hero-left h1 {
                font-size: 26px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-cta-group {
                flex-direction: column;
                gap: 8px;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-block.alt-bg {
            background: rgba(8, 12, 16, 0.5);
        }
        .section-title {
            font-family: var(--font-title);
            font-size: 30px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 600px;
            line-height: 1.55;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
            }
            .section-desc {
                font-size: 14px;
                margin-bottom: 24px;
            }
            .section-block {
                padding: 40px 0;
            }
        }

        /* ========== GLASS CARD ========== */
        .glass-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 18px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .glass-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
        }
        .glass-card .card-icon {
            font-size: 28px;
            color: var(--accent-orange);
            margin-bottom: 12px;
        }
        .glass-card .card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 6px;
        }
        .glass-card .card-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            flex-grow: 1;
        }
        .glass-card .card-stat {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent-orange);
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
            letter-spacing: -0.5px;
            margin: 8px 0;
        }
        .glass-card .card-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .glass-card.cover-card {
            padding: 0;
            overflow: hidden;
        }
        .glass-card.cover-card .card-img-wrap {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        .glass-card.cover-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .glass-card.cover-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .glass-card.cover-card .card-body {
            padding: 16px 18px;
        }

        /* ========== METRICS ROW ========== */
        .metrics-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .metric-item {
            flex: 1;
            min-width: 130px;
            text-align: center;
            padding: 18px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all var(--transition-smooth);
        }
        .metric-item:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .metric-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent-orange);
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
            letter-spacing: -0.3px;
        }
        .metric-value.green {
            color: var(--accent-green);
        }
        .metric-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.03em;
        }

        /* ========== TABLE STYLES ========== */
        .custom-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .custom-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 700px;
        }
        .custom-table thead th {
            background: var(--bg-card-solid);
            color: var(--text-muted);
            font-weight: 600;
            padding: 12px 14px;
            text-align: left;
            font-size: 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(255, 106, 61, 0.2);
            white-space: nowrap;
        }
        .custom-table tbody td {
            padding: 11px 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
        }
        .custom-table tbody tr {
            transition: background var(--transition-fast);
        }
        .custom-table tbody tr:nth-child(even) {
            background: rgba(27, 33, 40, 0.5);
        }
        .custom-table tbody tr:hover {
            background: rgba(255, 106, 61, 0.05);
        }
        .custom-table .team-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #fff;
        }
        .custom-table .team-logo-placeholder {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--text-muted);
        }
        .custom-table .rank-change {
            font-weight: 600;
            font-size: 13px;
        }
        .custom-table .rank-change.up {
            color: var(--accent-green);
        }
        .custom-table .rank-change.down {
            color: var(--text-muted);
        }

        /* ========== TIMELINE ========== */
        .timeline-list {
            position: relative;
            padding-left: 24px;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255, 106, 61, 0.2);
            border-radius: 1px;
        }
        .timeline-item {
            position: relative;
            padding: 14px 0 14px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 20px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-orange);
            box-shadow: 0 0 8px rgba(255, 106, 61, 0.5);
        }
        .timeline-date {
            font-size: 12px;
            color: var(--accent-orange-light);
            font-weight: 500;
            margin-bottom: 4px;
        }
        .timeline-title {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-title);
        }
        .timeline-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-top: 3px;
        }

        /* ========== REVIEW CARDS ========== */
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .review-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--accent-orange);
            font-size: 14px;
            flex-shrink: 0;
        }
        .review-name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .review-tag {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-stars {
            color: var(--accent-orange);
            font-size: 12px;
            margin-left: auto;
        }
        .review-body {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
            flex-grow: 1;
        }

        /* ========== FAQ ========== */
        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            background: var(--bg-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: var(--border-subtle);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-title);
            transition: color var(--transition-fast);
            user-select: none;
        }
        .faq-question:hover {
            color: var(--accent-orange);
        }
        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-orange);
            font-size: 14px;
            flex-shrink: 0;
            transition: all var(--transition-smooth);
        }
        .faq-item.open .faq-icon {
            background: var(--accent-orange);
            color: #fff;
            box-shadow: 0 0 14px rgba(255, 106, 61, 0.5);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 18px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 18px 16px;
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.7;
            margin: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            text-align: center;
            padding: 56px 0;
            background: radial-gradient(ellipse at center, rgba(255, 106, 61, 0.06) 0%, transparent 70%);
        }
        .cta-section .cta-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 10px;
        }
        .cta-section .cta-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 460px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            color: #fff;
            font-size: 14px;
            transition: border-color var(--transition-fast);
        }
        .cta-form input:focus {
            border-color: var(--accent-orange);
        }
        .cta-form input::placeholder {
            color: var(--text-muted);
        }
        .cta-form .btn-primary {
            flex-shrink: 0;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-secondary);
            padding: 48px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.04em;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 20px 0;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        /* ========== ANIMATIONS ========== */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-in {
            animation: countUp 0.6s ease-out forwards;
        }

        /* ========== FOUNDATION OVERRIDES ========== */
        .grid-x>.cell {
            padding-left: 12px;
            padding-right: 12px;
        }
        .grid-x {
            margin-left: -12px;
            margin-right: -12px;
        }
        @media (max-width: 768px) {
            .grid-x>.cell {
                padding-left: 8px;
                padding-right: 8px;
            }
            .grid-x {
                margin-left: -8px;
                margin-right: -8px;
            }
        }
        .foundation-card-override {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

/* roulang page: category1 */
:root {
            --bg-deep: #0D1117;
            --bg-card: rgba(22, 27, 34, 0.85);
            --bg-card-solid: #161B22;
            --bg-table-stripe: #1B2128;
            --accent-orange: #FF6A3D;
            --accent-orange-light: #FF8A5C;
            --accent-green: #2EED9E;
            --text-title: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 106, 61, 0.15);
            --border-medium: rgba(255, 106, 61, 0.35);
            --border-strong: rgba(255, 106, 61, 0.55);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.6);
            --shadow-card-hover: 0px 12px 32px rgba(0, 0, 0, 0.75);
            --shadow-glow-orange: 0 0 18px rgba(255, 106, 61, 0.6);
            --shadow-glow-strong: 0 0 28px rgba(255, 106, 61, 0.8);
            --font-title: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --font-body: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background-color: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--accent-orange);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select {
            font-family: inherit;
            outline: none;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .custom-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .custom-container {
                padding: 0 16px;
            }
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 23, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 106, 61, 0.12);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-main {
            font-family: var(--font-title);
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 1.5px;
            color: #FFFFFF;
            text-shadow: 0 0 12px rgba(255, 106, 61, 0.5);
            line-height: 1;
            white-space: nowrap;
        }

        .logo-sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--accent-orange);
            letter-spacing: 1px;
            white-space: nowrap;
            text-transform: uppercase;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(22, 27, 34, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 7px 16px;
            gap: 8px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .search-box:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 0 12px rgba(255, 106, 61, 0.3);
        }

        .search-box i {
            color: var(--text-muted);
            font-size: 13px;
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-body);
            font-size: 13px;
            width: 140px;
            outline: none;
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .user-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--bg-table-stripe);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .user-avatar:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 0 8px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            flex-wrap: nowrap;
        }

        .channel-nav::-webkit-scrollbar {
            display: none;
        }

        .channel-nav a {
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 7px 13px;
            border-radius: 6px;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.3px;
        }

        .channel-nav a:hover {
            color: var(--text-title);
            background: rgba(255, 106, 61, 0.06);
        }

        .channel-nav a.active {
            color: #FFFFFF;
            font-weight: 600;
        }

        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2.5px;
            background: var(--accent-orange);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.7);
        }

        .trend-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 106, 61, 0.1);
            border: 1px solid rgba(255, 106, 61, 0.25);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 12px;
            color: var(--accent-orange-light);
            white-space: nowrap;
            margin-left: auto;
            cursor: pointer;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.18);
            border-color: var(--accent-orange);
        }

        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.5s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 237, 158, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(46, 237, 158, 0);
            }
        }

        @media (max-width: 768px) {
            .search-box input {
                width: 80px;
            }
            .channel-nav a {
                font-size: 13px;
                padding: 6px 10px;
            }
            .trend-capsule {
                font-size: 11px;
                padding: 5px 10px;
            }
            .logo-main {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .brand-row {
                flex-wrap: wrap;
                gap: 8px;
            }
            .search-box input {
                width: 60px;
                font-size: 12px;
            }
            .channel-nav {
                gap: 1px;
                padding: 2px 0 6px;
            }
            .channel-nav a {
                font-size: 12px;
                padding: 5px 8px;
            }
            .trend-capsule {
                font-size: 10px;
                padding: 4px 8px;
                margin-left: 4px;
            }
        }

        /* ========== PAGE HERO ========== */
        .page-hero {
            position: relative;
            padding: 80px 0 60px;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-attachment: fixed;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 106, 61, 0.15);
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.65) 0%, rgba(13, 17, 23, 0.92) 100%);
            z-index: 1;
        }

        .page-hero .hero-inner {
            position: relative;
            z-index: 2;
        }

        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 106, 61, 0.15);
            border: 1px solid rgba(255, 106, 61, 0.3);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 13px;
            color: var(--accent-orange-light);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .page-hero .hero-badge .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .page-hero h1 {
            font-family: var(--font-title);
            font-size: 46px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-title);
            margin: 0 0 16px;
            line-height: 1.2;
        }

        .page-hero .hero-subtitle {
            font-size: 17px;
            color: var(--text-body);
            max-width: 600px;
            margin: 0 0 28px;
            line-height: 1.7;
        }

        .page-hero .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-bottom: 24px;
        }

        .page-hero .hero-stat {
            text-align: left;
        }

        .page-hero .hero-stat .stat-num {
            font-family: var(--font-title);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-orange);
            font-feature-settings: "tnum";
            letter-spacing: -0.5px;
        }

        .page-hero .hero-stat .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .page-hero .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .page-hero .hero-tags span {
            font-size: 12px;
            padding: 6px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-body);
            transition: all var(--transition-fast);
        }

        .page-hero .hero-tags span:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange-light);
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 50px 0 36px;
            }
            .page-hero h1 {
                font-size: 32px;
            }
            .page-hero .hero-subtitle {
                font-size: 15px;
            }
            .page-hero .hero-stats-row {
                gap: 16px;
            }
            .page-hero .hero-stat .stat-num {
                font-size: 24px;
            }
        }

        @media (max-width: 520px) {
            .page-hero {
                padding: 36px 0 28px;
                background-attachment: scroll;
            }
            .page-hero h1 {
                font-size: 26px;
            }
            .page-hero .hero-stats-row {
                gap: 12px;
            }
            .page-hero .hero-stat .stat-num {
                font-size: 20px;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: 56px 0;
        }

        .section-block.alt-bg {
            background: rgba(22, 27, 34, 0.4);
            border-top: 1px solid rgba(255, 106, 61, 0.08);
            border-bottom: 1px solid rgba(255, 106, 61, 0.08);
        }

        .section-title {
            font-family: var(--font-title);
            font-size: 28px;
            font-weight: 600;
            color: var(--text-title);
            margin: 0 0 8px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0 0 32px;
        }

        .section-header {
            margin-bottom: 32px;
        }

        .section-header .title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .section-header .view-all {
            font-size: 13px;
            color: var(--accent-orange);
            font-weight: 500;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .section-header .view-all:hover {
            color: var(--accent-orange-light);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .section-block {
                padding: 36px 0;
            }
            .section-title {
                font-size: 22px;
            }
        }

        /* ========== FILTER BAR ========== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            margin-bottom: 28px;
        }

        .filter-bar .filter-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            white-space: nowrap;
        }

        .filter-bar select {
            background: var(--bg-table-stripe);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-body);
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            transition: all var(--transition-fast);
            min-width: 120px;
        }

        .filter-bar select:hover,
        .filter-bar select:focus {
            border-color: var(--accent-orange);
        }

        .filter-bar .btn-filter {
            padding: 8px 18px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
        }

        .btn-filter-primary {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
            color: #fff;
            box-shadow: 0 0 12px rgba(255, 106, 61, 0.4);
        }

        .btn-filter-primary:hover {
            box-shadow: 0 0 20px rgba(255, 106, 61, 0.7);
            transform: scale(1.03);
        }

        .btn-filter-reset {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .btn-filter-reset:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange-light);
        }

        @media (max-width: 768px) {
            .filter-bar {
                gap: 8px;
                padding: 12px 14px;
            }
            .filter-bar select {
                min-width: 90px;
                font-size: 12px;
                padding: 7px 10px;
            }
        }

        /* ========== MAIN LAYOUT ========== */
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 28px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr 280px;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ========== MATCH TABLE ========== */
        .match-table-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }

        .match-table-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-title);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .match-table-header .header-icon {
            color: var(--accent-orange);
            font-size: 16px;
        }

        .match-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .match-item {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: all var(--transition-fast);
            gap: 16px;
            flex-wrap: wrap;
            cursor: pointer;
        }

        .match-item:hover {
            background: rgba(255, 106, 61, 0.04);
        }

        .match-item:last-child {
            border-bottom: none;
        }

        .match-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            min-width: 70px;
        }

        .status-live {
            color: var(--accent-green);
        }

        .status-live .status-indicator {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        .status-upcoming {
            color: var(--accent-orange);
        }

        .status-upcoming .status-indicator {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
        }

        .status-finished {
            color: var(--text-muted);
        }

        .status-finished .status-indicator {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--text-muted);
        }

        .match-event {
            font-size: 12px;
            color: var(--text-muted);
            white-space: nowrap;
            min-width: 90px;
            font-weight: 500;
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 200px;
        }

        .match-team {
            font-weight: 600;
            color: var(--text-title);
            font-size: 14px;
            white-space: nowrap;
        }

        .match-score {
            font-family: var(--font-title);
            font-size: 18px;
            font-weight: 700;
            color: var(--text-title);
            font-feature-settings: "tnum";
            letter-spacing: 1px;
            padding: 0 8px;
            white-space: nowrap;
        }

        .match-vs {
            color: var(--text-muted);
            font-size: 12px;
            white-space: nowrap;
        }

        .match-maps {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }

        .map-badge {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
        }

        .match-prize {
            font-size: 12px;
            color: var(--accent-orange-light);
            font-weight: 500;
            white-space: nowrap;
            min-width: 70px;
            text-align: right;
        }

        .match-action {
            flex-shrink: 0;
        }

        .btn-watch {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.35);
        }

        .btn-watch:hover {
            box-shadow: 0 0 20px rgba(255, 106, 61, 0.65);
            transform: scale(1.04);
            color: #fff;
        }

        @media (max-width: 768px) {
            .match-item {
                padding: 12px 14px;
                gap: 8px;
            }
            .match-teams {
                min-width: 140px;
                gap: 6px;
            }
            .match-score {
                font-size: 16px;
            }
            .match-team {
                font-size: 13px;
            }
            .match-event {
                min-width: 60px;
                font-size: 11px;
            }
            .match-prize {
                min-width: auto;
            }
        }

        @media (max-width: 520px) {
            .match-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
                padding: 12px;
            }
            .match-teams {
                width: 100%;
                justify-content: space-between;
            }
            .match-action {
                align-self: flex-end;
            }
        }

        /* ========== SIDEBAR ========== */
        .sidebar-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            padding: 20px;
            margin-bottom: 20px;
        }

        .sidebar-card h4 {
            font-family: var(--font-title);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-title);
            margin: 0 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h4 i {
            color: var(--accent-orange);
        }

        .hot-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hot-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            cursor: pointer;
            transition: all var(--transition-fast);
            font-size: 13px;
        }

        .hot-list li:hover {
            color: var(--accent-orange-light);
        }

        .hot-list li:last-child {
            border-bottom: none;
        }

        .hot-rank {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 15px;
            color: var(--accent-orange);
            min-width: 24px;
            text-align: center;
            font-feature-settings: "tnum";
        }

        .hot-rank.silver {
            color: #C0C0C0;
        }

        .hot-rank.bronze {
            color: #CD7F32;
        }

        .hot-info {
            flex: 1;
            min-width: 0;
        }

        .hot-name {
            font-weight: 500;
            color: var(--text-title);
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-meta {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .hot-change {
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
        }

        .hot-change.up {
            color: var(--accent-green);
        }

        .hot-change.down {
            color: #E74C3C;
        }

        /* ========== STATS RIBBON ========== */
        .stats-ribbon {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: default;
        }

        .stat-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .stat-card .stat-icon {
            font-size: 26px;
            color: var(--accent-orange);
            margin-bottom: 8px;
        }

        .stat-card .stat-value {
            font-family: var(--font-title);
            font-size: 28px;
            font-weight: 700;
            color: var(--text-title);
            font-feature-settings: "tnum";
            letter-spacing: -0.5px;
        }

        .stat-card .stat-label-sm {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .stats-ribbon {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 14px;
            }
            .stat-card .stat-value {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .stats-ribbon {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-medium);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-title);
            font-size: 15px;
            user-select: none;
            transition: all var(--transition-fast);
        }

        .faq-question .faq-icon {
            color: var(--accent-orange);
            font-size: 18px;
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            background: rgba(22, 27, 34, 0.5);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }
            .faq-answer {
                font-size: 13px;
                padding: 0 16px;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
        }

        /* ========== CTA ========== */
        .cta-block {
            background: linear-gradient(135deg, rgba(255, 106, 61, 0.08) 0%, rgba(13, 17, 23, 0.9) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 44px 36px;
            text-align: center;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .cta-block::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.06);
            pointer-events: none;
        }

        .cta-block h3 {
            font-family: var(--font-title);
            font-size: 26px;
            font-weight: 600;
            color: var(--text-title);
            margin: 0 0 10px;
            position: relative;
            z-index: 1;
        }

        .cta-block p {
            font-size: 15px;
            color: var(--text-body);
            margin: 0 0 24px;
            position: relative;
            z-index: 1;
        }

        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-orange);
            position: relative;
            z-index: 1;
        }

        .btn-cta-primary:hover {
            box-shadow: var(--shadow-glow-strong);
            transform: scale(1.04);
            color: #fff;
        }

        .btn-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            background: transparent;
            color: var(--accent-orange);
            border: 1.5px solid var(--border-medium);
            cursor: pointer;
            transition: all var(--transition-smooth);
            margin-left: 12px;
            position: relative;
            z-index: 1;
        }

        .btn-cta-secondary:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent-orange);
        }

        @media (max-width: 768px) {
            .cta-block {
                padding: 30px 20px;
            }
            .cta-block h3 {
                font-size: 20px;
            }
            .btn-cta-primary,
            .btn-cta-secondary {
                padding: 12px 24px;
                font-size: 14px;
            }
            .btn-cta-secondary {
                margin-left: 8px;
            }
        }

        @media (max-width: 520px) {
            .cta-block .btn-row {
                display: flex;
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .btn-cta-secondary {
                margin-left: 0;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #080C10;
            padding: 48px 0 0;
            border-top: 1px solid rgba(255, 106, 61, 0.1);
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-col h4 {
            font-family: var(--font-title);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-title);
            margin: 0 0 14px;
            letter-spacing: 0.5px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: all var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            padding: 20px 0 28px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 4px 0;
            line-height: 1.6;
        }

        .footer-bottom a {
            color: var(--text-muted);
            font-size: 12px;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--accent-orange);
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .site-footer {
                padding: 32px 0 0;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .footer-col h4 {
                font-size: 13px;
            }
            .footer-col a {
                font-size: 12px;
            }
        }

        /* ========== UTILITY ========== */
        .text-orange {
            color: var(--accent-orange);
        }
        .text-green {
            color: var(--accent-green);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 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: category2 */
:root {
            --bg-deep: #0D1117;
            --bg-card: rgba(22, 27, 34, 0.85);
            --bg-card-solid: #161B22;
            --accent-orange: #FF6A3D;
            --accent-orange-light: #FF8A5C;
            --accent-green: #2EED9E;
            --accent-green-dim: rgba(46, 237, 158, 0.18);
            --text-title: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 106, 61, 0.15);
            --border-medium: rgba(255, 106, 61, 0.35);
            --border-bright: rgba(255, 106, 61, 0.55);
            --table-stripe: #1B2128;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 14px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.6);
            --shadow-hover: 0px 12px 32px rgba(0, 0, 0, 0.75);
            --shadow-orange: 0 0 18px rgba(255, 106, 61, 0.55);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', monospace;
            --font-sans: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --spacing-xs: 6px;
            --spacing-sm: 12px;
            --spacing-md: 20px;
            --spacing-lg: 32px;
            --spacing-xl: 48px;
            --spacing-2xl: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background-color: var(--bg-deep);
            overflow-x: hidden;
            min-height: 100vh;
            font-feature-settings: "tnum" off;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }

        input,
        select {
            font-family: inherit;
            outline: none;
        }

        .custom-container {
            max-width: 1260px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 768px) {
            .custom-container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 23, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 106, 61, 0.1);
            transition: background var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 10px;
            padding-bottom: 10px;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 6px;
            flex-shrink: 0;
        }

        .logo-main {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.3px;
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 106, 61, 0.4);
            line-height: 1;
            font-style: italic;
        }

        .logo-sub {
            font-size: 10px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .search-input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input-wrap input {
            width: 180px;
            height: 34px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(22, 27, 34, 0.6);
            color: var(--text-body);
            padding: 0 36px 0 14px;
            font-size: 13px;
            transition: all var(--transition-smooth);
        }

        .search-input-wrap input:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.25);
            width: 210px;
            color: #fff;
        }

        .search-input-wrap .search-icon {
            position: absolute;
            right: 12px;
            color: var(--text-muted);
            font-size: 13px;
            pointer-events: none;
            transition: color var(--transition-fast);
        }

        .search-input-wrap input:focus+.search-icon {
            color: var(--accent-orange);
        }

        .avatar-placeholder {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(107, 114, 128, 0.35);
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            padding-top: 6px;
            padding-bottom: 10px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            position: relative;
        }

        .channel-nav::-webkit-scrollbar {
            display: none;
        }

        .channel-nav a {
            display: inline-block;
            padding: 7px 15px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .channel-nav a:hover {
            color: #fff;
            background: rgba(255, 106, 61, 0.08);
        }

        .channel-nav a.active {
            color: #fff;
            font-weight: 600;
        }

        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 1px;
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.7);
        }

        .trend-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            font-size: 13px;
            color: var(--accent-orange);
            background: rgba(255, 106, 61, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(255, 106, 61, 0.2);
            white-space: nowrap;
            flex-shrink: 0;
            margin-left: auto;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.16);
            border-color: rgba(255, 106, 61, 0.4);
        }

        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 4px var(--accent-orange);
            }
            50% {
                box-shadow: 0 0 14px var(--accent-orange), 0 0 24px rgba(255, 106, 61, 0.5);
            }
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            padding: 6px 8px;
            border-radius: 4px;
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 1024px) {
            .channel-nav {
                gap: 2px;
            }
            .channel-nav a {
                padding: 7px 10px;
                font-size: 13px;
            }
            .trend-capsule {
                font-size: 11px;
                padding: 6px 10px;
                gap: 4px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                padding-top: 8px;
                padding-bottom: 8px;
            }
            .logo-main {
                font-size: 20px;
            }
            .logo-sub {
                font-size: 9px;
            }
            .search-input-wrap input {
                width: 130px;
                height: 30px;
                font-size: 12px;
            }
            .search-input-wrap input:focus {
                width: 150px;
            }
            .avatar-placeholder {
                width: 28px;
                height: 28px;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .channel-nav {
                display: none;
                flex-wrap: nowrap;
                padding-top: 4px;
                padding-bottom: 8px;
            }
            .channel-nav.open {
                display: flex;
            }
            .trend-capsule {
                margin-left: 0;
                font-size: 11px;
                padding: 5px 9px;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                gap: 8px;
            }
            .search-input-wrap input {
                width: 100px;
                font-size: 11px;
            }
            .search-input-wrap input:focus {
                width: 120px;
            }
            .logo-main {
                font-size: 18px;
            }
            .logo-sub {
                display: none;
            }
            .channel-nav a {
                padding: 6px 8px;
                font-size: 12px;
            }
            .channel-nav a.active::after {
                left: 8px;
                right: 8px;
            }
        }

        /* ========== HERO ========== */
        .channel-hero {
            position: relative;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.75) 0%, rgba(13, 17, 23, 0.92) 70%, var(--bg-deep) 100%),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 420px;
            display: flex;
            align-items: center;
            padding: var(--spacing-2xl) 0 var(--spacing-xl);
            border-bottom: 1px solid var(--border-subtle);
        }

        .channel-hero .hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--spacing-xl);
        }

        .channel-hero .hero-text {
            flex: 1;
            min-width: 280px;
        }

        .channel-hero .hero-label {
            display: inline-block;
            padding: 5px 14px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--accent-orange);
            background: rgba(255, 106, 61, 0.1);
            border: 1px solid rgba(255, 106, 61, 0.3);
            border-radius: 20px;
            margin-bottom: var(--spacing-md);
            text-transform: uppercase;
        }

        .channel-hero h1 {
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
            line-height: 1.15;
            margin: 0 0 var(--spacing-sm);
        }

        .channel-hero .hero-desc {
            font-size: 17px;
            color: var(--text-body);
            line-height: 1.7;
            max-width: 550px;
            margin-bottom: var(--spacing-lg);
        }

        .channel-hero .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: var(--spacing-lg);
        }

        .channel-hero .hero-tags span {
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-body);
            background: rgba(22, 27, 34, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            white-space: nowrap;
        }

        .channel-hero .hero-tags span.highlight {
            color: var(--accent-orange);
            border-color: rgba(255, 106, 61, 0.35);
            background: rgba(255, 106, 61, 0.08);
        }

        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-md);
            flex: 0 0 340px;
            min-width: 280px;
        }

        .hero-stat-card {
            flex: 1;
            min-width: 150px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: all var(--transition-smooth);
        }

        .hero-stat-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .hero-stat-card .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.5px;
        }

        .hero-stat-card .stat-value.green {
            color: var(--accent-green);
        }

        .hero-stat-card .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .channel-hero {
                min-height: auto;
                padding: var(--spacing-xl) 0 var(--spacing-lg);
            }
            .channel-hero h1 {
                font-size: 30px;
            }
            .channel-hero .hero-desc {
                font-size: 15px;
            }
            .hero-stats-row {
                flex: 1 1 100%;
                gap: var(--spacing-sm);
            }
            .hero-stat-card .stat-value {
                font-size: 26px;
            }
        }

        @media (max-width: 520px) {
            .channel-hero h1 {
                font-size: 26px;
            }
            .hero-stat-card {
                padding: var(--spacing-sm);
            }
            .hero-stat-card .stat-value {
                font-size: 22px;
            }
        }

        /* ========== SECTION STYLES ========== */
        .section-block {
            padding: var(--spacing-2xl) 0;
        }

        .section-block.section-tight {
            padding: var(--spacing-xl) 0;
        }

        .section-block.section-alt {
            background: rgba(22, 27, 34, 0.35);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-xs);
            letter-spacing: -0.3px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: var(--spacing-lg);
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-lg);
        }

        .section-header .view-all {
            font-size: 13px;
            color: var(--accent-orange);
            font-weight: 500;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }

        .section-header .view-all:hover {
            color: var(--accent-orange-light);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        /* ========== FILTER BAR ========== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            padding: var(--spacing-md);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            margin-bottom: var(--spacing-lg);
        }

        .filter-bar label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .filter-bar select {
            padding: 8px 28px 8px 12px;
            font-size: 13px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(22, 27, 34, 0.8);
            color: var(--text-body);
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            transition: border-color var(--transition-fast);
            min-width: 120px;
        }

        .filter-bar select:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 6px rgba(255, 106, 61, 0.2);
        }

        .filter-bar .filter-btn {
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: var(--accent-orange);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            box-shadow: 0 0 12px rgba(255, 106, 61, 0.35);
        }

        .filter-bar .filter-btn:hover {
            background: var(--accent-orange-light);
            box-shadow: 0 0 20px rgba(255, 106, 61, 0.55);
            transform: scale(1.03);
        }

        .filter-bar .reset-btn {
            padding: 8px 14px;
            font-size: 12px;
            border-radius: var(--radius-sm);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-muted);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .filter-bar .reset-btn:hover {
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        @media (max-width: 768px) {
            .filter-bar {
                gap: 8px;
                padding: var(--spacing-sm);
            }
            .filter-bar select {
                min-width: 100px;
                font-size: 12px;
                padding: 7px 24px 7px 10px;
            }
            .filter-bar .filter-btn {
                padding: 7px 14px;
                font-size: 12px;
            }
        }

        /* ========== PLAYER TABLE ========== */
        .player-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
        }

        .player-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            font-size: 14px;
        }

        .player-table thead th {
            background: rgba(13, 17, 23, 0.9);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 106, 61, 0.2);
            white-space: nowrap;
            position: sticky;
            top: 0;
        }

        .player-table tbody tr {
            transition: background var(--transition-fast);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .player-table tbody tr:nth-child(even) {
            background: rgba(27, 33, 40, 0.5);
        }

        .player-table tbody tr:hover {
            background: rgba(255, 106, 61, 0.06);
        }

        .player-table tbody td {
            padding: 13px 12px;
            color: var(--text-body);
            white-space: nowrap;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        .player-table .rank-col {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            width: 50px;
            text-align: center;
        }

        .player-table .rank-col.top3 {
            color: var(--accent-orange);
            font-size: 16px;
        }

        .player-table .player-col {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 180px;
        }

        .player-table .player-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
            background: var(--table-stripe);
        }

        .player-table .player-name {
            font-weight: 600;
            color: #fff;
            font-size: 14px;
            letter-spacing: 0.2px;
        }

        .player-table .player-team {
            font-size: 11px;
            color: var(--text-muted);
        }

        .player-table .rating-value {
            font-weight: 700;
            font-size: 15px;
        }

        .player-table .rating-value.elite {
            color: var(--accent-green);
        }

        .player-table .rating-value.great {
            color: #FFD166;
        }

        .player-table .rating-value.good {
            color: #fff;
        }

        .player-table .adr-value {
            font-weight: 600;
        }

        .player-table .adr-value.high {
            color: var(--accent-green);
        }

        .player-table .kast-value {
            font-weight: 500;
        }

        .player-table .fpr-value {
            font-weight: 600;
            color: var(--accent-orange);
        }

        .player-table .detail-link {
            font-size: 12px;
            color: var(--accent-orange);
            font-weight: 500;
            padding: 5px 12px;
            border: 1px solid rgba(255, 106, 61, 0.4);
            border-radius: 14px;
            transition: all var(--transition-fast);
            display: inline-block;
            cursor: pointer;
        }

        .player-table .detail-link:hover {
            background: rgba(255, 106, 61, 0.15);
            border-color: var(--accent-orange);
            color: #fff;
        }

        @media (max-width: 768px) {
            .player-table {
                min-width: 650px;
                font-size: 12px;
            }
            .player-table thead th {
                padding: 10px 8px;
                font-size: 11px;
            }
            .player-table tbody td {
                padding: 10px 8px;
                font-size: 12px;
            }
            .player-table .player-avatar {
                width: 28px;
                height: 28px;
            }
            .player-table .player-name {
                font-size: 12px;
            }
        }

        /* ========== HOT PLAYERS SIDEBAR ========== */
        .hot-players-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .hot-players-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: var(--radius-sm);
            margin-bottom: 6px;
            background: rgba(22, 27, 34, 0.5);
            border: 1px solid transparent;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .hot-players-list li:hover {
            background: rgba(22, 27, 34, 0.85);
            border-color: var(--border-subtle);
            transform: translateX(3px);
        }

        .hot-players-list .hot-rank {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-muted);
            width: 28px;
            text-align: center;
            flex-shrink: 0;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        .hot-players-list li:nth-child(1) .hot-rank,
        .hot-players-list li:nth-child(2) .hot-rank,
        .hot-players-list li:nth-child(3) .hot-rank {
            color: var(--accent-orange);
        }

        .hot-players-list .hot-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.12);
            flex-shrink: 0;
            background: var(--table-stripe);
        }

        .hot-players-list .hot-info {
            flex: 1;
            min-width: 0;
        }

        .hot-players-list .hot-name {
            font-weight: 600;
            color: #fff;
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-players-list .hot-team {
            font-size: 11px;
            color: var(--text-muted);
        }

        .hot-players-list .hot-rating {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-green);
            flex-shrink: 0;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        /* ========== PLAYER SPOTLIGHT CARDS ========== */
        .spotlight-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            transition: all var(--transition-smooth);
            cursor: pointer;
            height: 100%;
        }

        .spotlight-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .spotlight-card .spot-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 106, 61, 0.35);
            flex-shrink: 0;
            background: var(--table-stripe);
        }

        .spotlight-card .spot-info {
            flex: 1;
            min-width: 0;
        }

        .spotlight-card .spot-name {
            font-weight: 700;
            font-size: 17px;
            color: #fff;
        }

        .spotlight-card .spot-team {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .spotlight-card .spot-stats {
            display: flex;
            gap: 14px;
            margin-top: 6px;
            font-size: 12px;
            color: var(--text-body);
        }

        .spotlight-card .spot-stats span {
            font-weight: 600;
            color: var(--accent-orange);
        }

        @media (max-width: 768px) {
            .spotlight-card {
                padding: var(--spacing-sm);
                gap: var(--spacing-sm);
            }
            .spotlight-card .spot-avatar {
                width: 48px;
                height: 48px;
            }
            .spotlight-card .spot-name {
                font-size: 15px;
            }
        }

        /* ========== BUTTONS ========== */
        .btn-primary {
            display: inline-block;
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-orange);
            transition: all var(--transition-smooth);
            text-align: center;
            letter-spacing: 0.2px;
        }

        .btn-primary:hover {
            box-shadow: 0 0 28px rgba(255, 106, 61, 0.75);
            transform: scale(1.03);
            color: #fff;
        }

        .btn-secondary {
            display: inline-block;
            padding: 12px 26px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-orange);
            background: transparent;
            border: 1px solid var(--border-bright);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-smooth);
            text-align: center;
        }

        .btn-secondary:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent-orange);
            color: #fff;
        }

        /* ========== FAQ ========== */
        .faq-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: #fff;
            transition: color var(--transition-fast);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--accent-orange);
        }

        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--accent-orange);
            flex-shrink: 0;
            transition: all var(--transition-smooth);
        }

        .faq-item.open .faq-icon {
            background: var(--accent-orange);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 40px;
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 40px 16px;
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 14px;
                padding: 14px 0;
            }
            .faq-answer {
                padding: 0 36px;
                font-size: 13px;
            }
            .faq-item.open .faq-answer {
                padding: 0 36px 14px;
            }
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(160deg, rgba(22, 27, 34, 0.9) 0%, rgba(13, 17, 23, 0.95) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-xl) var(--spacing-lg);
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-section h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-sm);
        }

        .cta-section p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: var(--spacing-lg);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #080C10;
            padding: var(--spacing-2xl) 0 0;
            border-top: 1px solid rgba(255, 106, 61, 0.1);
            margin-top: var(--spacing-2xl);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-lg);
            padding-bottom: var(--spacing-xl);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.3px;
        }

        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            padding: var(--spacing-lg) 0;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-bottom p {
            margin: 4px 0;
        }

        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--accent-orange);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--spacing-md);
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
            .cta-section {
                padding: var(--spacing-lg) var(--spacing-md);
            }
            .cta-section h2 {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-sm);
            }
            .footer-col h4 {
                font-size: 13px;
            }
            .footer-col a {
                font-size: 11px;
            }
        }

        /* ========== GLASS CARD GENERIC ========== */
        .glass-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .glass-card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        /* ========== UTILITY ========== */
        .text-orange {
            color: var(--accent-orange);
        }
        .text-green {
            color: var(--accent-green);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .text-white {
            color: #fff;
        }
        .mb-sm {
            margin-bottom: var(--spacing-sm);
        }
        .mb-md {
            margin-bottom: var(--spacing-md);
        }
        .mb-lg {
            margin-bottom: var(--spacing-lg);
        }
        .mt-sm {
            margin-top: var(--spacing-sm);
        }
        .mt-md {
            margin-top: var(--spacing-md);
        }
        .mt-lg {
            margin-top: var(--spacing-lg);
        }

        @media (max-width: 768px) {
            .hide-mobile {
                display: none !important;
            }
        }

/* roulang page: category3 */
:root {
            --bg-deep: #0D1117;
            --bg-card: rgba(22, 27, 34, 0.85);
            --bg-card-solid: #161B22;
            --bg-table-stripe: #1B2128;
            --bg-footer: #080C10;
            --accent-orange: #FF6A3D;
            --accent-orange-light: #FF8A5C;
            --accent-green: #2EED9E;
            --text-title: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 106, 61, 0.15);
            --border-medium: rgba(255, 106, 61, 0.35);
            --border-strong: rgba(255, 106, 61, 0.55);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.6);
            --shadow-hover: 0px 12px 32px rgba(0, 0, 0, 0.75);
            --shadow-glow: 0 0 18px rgba(255, 106, 61, 0.55);
            --shadow-glow-strong: 0 0 28px rgba(255, 106, 61, 0.7);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', monospace;
            --font-sans: 'Inter', 'SF Pro Display', 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background-color: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-orange);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select {
            font-family: inherit;
            font-size: inherit;
            outline: none;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        ul,
        ol {
            list-style: none;
        }
        table {
            border-collapse: collapse;
            width: 100%;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 23, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 106, 61, 0.1);
            transition: background var(--transition-smooth);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-shrink: 0;
        }
        .logo-main {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 1.5px;
            color: #FFFFFF;
            text-shadow: 0 0 8px rgba(255, 106, 61, 0.35);
            line-height: 1;
            font-style: italic;
        }
        .logo-sub {
            font-size: 11px;
            color: var(--accent-orange);
            letter-spacing: 2px;
            font-weight: 500;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 7px 14px;
            gap: 8px;
            transition: border-color var(--transition-fast);
        }
        .search-box:hover,
        .search-box:focus-within {
            border-color: var(--accent-orange);
        }
        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-body);
            font-size: 13px;
            width: 140px;
            outline: none;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box i {
            color: var(--text-muted);
            font-size: 13px;
            transition: color var(--transition-fast);
        }
        .search-box:hover i {
            color: var(--accent-orange);
        }
        .avatar-placeholder {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            flex-shrink: 0;
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .channel-nav a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.3px;
        }
        .channel-nav a:hover {
            color: var(--text-title);
            background: rgba(255, 106, 61, 0.06);
        }
        .channel-nav a.active {
            color: #FFFFFF;
            font-weight: 600;
        }
        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.7);
        }
        .trend-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 106, 61, 0.1);
            border: 1px solid rgba(255, 106, 61, 0.2);
            border-radius: 20px;
            font-size: 12px;
            color: var(--accent-orange);
            white-space: nowrap;
            flex-shrink: 0;
            cursor: pointer;
            transition: all var(--transition-fast);
            margin-left: auto;
        }
        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.18);
            border-color: rgba(255, 106, 61, 0.4);
        }
        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.6s infinite;
            display: inline-block;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 4px var(--accent-orange);
            }
            50% {
                box-shadow: 0 0 12px var(--accent-orange), 0 0 20px rgba(255, 106, 61, 0.5);
            }
        }

        /* ========== CONTAINER ========== */
        .custom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HERO ========== */
        .page-hero {
            position: relative;
            padding: 60px 0 50px;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.4) 0%, rgba(13, 17, 23, 0.9) 60%, var(--bg-deep) 100%),
                url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
            background-blend-mode: overlay;
            border-bottom: 1px solid rgba(255, 106, 61, 0.08);
            min-height: 300px;
            display: flex;
            align-items: center;
        }
        .page-hero .custom-container {
            width: 100%;
        }
        .hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 32px;
        }
        .hero-text {
            flex: 1 1 420px;
            min-width: 280px;
        }
        .hero-badge {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(255, 106, 61, 0.15);
            border: 1px solid rgba(255, 106, 61, 0.3);
            border-radius: 20px;
            font-size: 12px;
            color: var(--accent-orange);
            letter-spacing: 1px;
            font-weight: 500;
            margin-bottom: 16px;
        }
        .hero-text h1 {
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--text-title);
            line-height: 1.2;
            margin-bottom: 14px;
        }
        .hero-text h1 span {
            color: var(--accent-orange);
        }
        .hero-text .hero-sub {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 540px;
        }
        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5C 100%);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-glow);
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-glow-strong);
            transform: scale(1.02);
            color: #FFFFFF;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: transparent;
            border: 1px solid rgba(255, 106, 61, 0.5);
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-md);
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
            cursor: pointer;
        }
        .btn-outline:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--border-strong);
            color: var(--accent-orange);
        }
        .hero-stats-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }
        .hero-stat-tag {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            font-size: 11.5px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .hero-stat-tag strong {
            color: var(--accent-orange);
            font-weight: 600;
        }

        /* ========== METRICS STRIP ========== */
        .metrics-strip {
            padding: 30px 0;
            background: rgba(22, 27, 34, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .metrics-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
        }
        .metric-item {
            flex: 1 1 130px;
            min-width: 120px;
            text-align: center;
            padding: 18px 14px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .metric-item:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .metric-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-orange);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
            letter-spacing: -1px;
            line-height: 1.1;
        }
        .metric-value.green {
            color: var(--accent-green);
        }
        .metric-label {
            font-size: 12.5px;
            color: var(--text-muted);
            margin-top: 6px;
            letter-spacing: 0.4px;
        }

        /* ========== MAIN LAYOUT ========== */
        .main-section {
            padding: 50px 0;
        }
        .section-header {
            margin-bottom: 30px;
        }
        .section-header h2 {
            font-size: 26px;
            font-weight: 600;
            color: var(--text-title);
            letter-spacing: -0.3px;
            margin-bottom: 6px;
        }
        .section-header .section-sub {
            font-size: 14px;
            color: var(--text-muted);
        }
        .content-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .content-main {
            flex: 1 1 680px;
            min-width: 0;
        }
        .content-sidebar {
            flex: 0 0 300px;
            min-width: 260px;
        }

        /* ========== FILTER BAR ========== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            padding: 16px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            margin-bottom: 24px;
        }
        .filter-bar select {
            padding: 9px 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            color: var(--text-body);
            font-size: 13px;
            cursor: pointer;
            transition: border-color var(--transition-fast);
            min-width: 140px;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 32px;
        }
        .filter-bar select:hover,
        .filter-bar select:focus {
            border-color: var(--accent-orange);
        }
        .filter-bar select option {
            background: var(--bg-card-solid);
            color: var(--text-body);
        }
        .filter-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .filter-reset {
            margin-left: auto;
            padding: 9px 16px;
            font-size: 12.5px;
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }
        .filter-reset:hover {
            color: var(--accent-orange);
            border-color: var(--border-medium);
        }

        /* ========== DATA TABLE ========== */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            background: var(--bg-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
        }
        .data-table {
            min-width: 750px;
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            font-feature-settings: "tnum";
        }
        .data-table thead th {
            background: rgba(22, 27, 34, 0.95);
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 12.5px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(255, 106, 61, 0.2);
            white-space: nowrap;
            position: sticky;
            top: 0;
        }
        .data-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-body);
            vertical-align: middle;
            white-space: nowrap;
        }
        .data-table tbody tr {
            transition: background var(--transition-fast);
        }
        .data-table tbody tr:nth-child(even) {
            background: rgba(27, 33, 40, 0.5);
        }
        .data-table tbody tr:hover {
            background: rgba(255, 106, 61, 0.06);
        }
        .data-table .rank-num {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-title);
            text-align: center;
            width: 50px;
        }
        .data-table .player-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-title);
        }
        .player-avatar-sm {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        .player-avatar-sm img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-tag {
            display: inline-block;
            padding: 4px 10px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 4px;
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.4px;
        }
        .rating-high {
            color: var(--accent-green);
            font-weight: 700;
            font-size: 15px;
        }
        .rating-mid {
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 14px;
        }
        .rating-avg {
            color: var(--text-body);
            font-weight: 500;
        }
        .change-up {
            color: var(--accent-green);
            font-weight: 600;
        }
        .change-down {
            color: #9CA3AF;
            font-weight: 500;
        }
        .change-flat {
            color: var(--text-muted);
        }
        .btn-sm {
            display: inline-block;
            padding: 6px 14px;
            font-size: 11.5px;
            font-weight: 500;
            border: 1px solid rgba(255, 106, 61, 0.4);
            color: var(--accent-orange);
            border-radius: 4px;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-sm:hover {
            background: rgba(255, 106, 61, 0.12);
            border-color: var(--border-strong);
            color: var(--accent-orange);
        }

        /* ========== HOT PLAYERS ========== */
        .hot-players {
            padding: 50px 0;
            background: rgba(22, 27, 34, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .player-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }
        .player-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .player-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .player-card-img {
            height: 150px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .player-card-img .overlay-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 10px;
            background: rgba(255, 106, 61, 0.85);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }
        .player-card-body {
            padding: 16px;
        }
        .player-card-body h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 4px;
        }
        .player-card-body .team-name-sm {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .player-card-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .pcs-item {
            text-align: center;
        }
        .pcs-item .pcs-val {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-orange);
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
        }
        .pcs-item .pcs-lbl {
            font-size: 10.5px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        /* ========== SIDEBAR ========== */
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: var(--shadow-card);
            margin-bottom: 20px;
        }
        .sidebar-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .hot-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .hot-list-item:last-child {
            border-bottom: none;
        }
        .hot-list-item:hover {
            background: rgba(255, 106, 61, 0.04);
            border-radius: 4px;
            padding-left: 6px;
            padding-right: 6px;
        }
        .hot-rank {
            font-weight: 700;
            font-size: 16px;
            color: var(--accent-orange);
            width: 28px;
            text-align: center;
            flex-shrink: 0;
            font-family: var(--font-mono);
            font-feature-settings: "tnum";
        }
        .hot-rank.silver {
            color: #C5CDD8;
        }
        .hot-rank.bronze {
            color: #CDA87E;
        }
        .hot-info {
            flex: 1;
            min-width: 0;
        }
        .hot-info .hot-name {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-title);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .hot-info .hot-team {
            font-size: 11px;
            color: var(--text-muted);
        }
        .hot-badge {
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 12px;
            font-weight: 500;
            white-space: nowrap;
        }
        .hot-badge.rising {
            background: rgba(46, 237, 158, 0.12);
            color: var(--accent-green);
        }
        .hot-badge.stable {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 50px 0;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: var(--border-medium);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-title);
            transition: color var(--transition-fast);
            user-select: none;
        }
        .faq-question:hover {
            color: var(--accent-orange);
        }
        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent-orange);
            font-size: 14px;
            font-weight: 700;
        }
        .faq-answer {
            padding: 0 20px 16px 60px;
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question {
            color: var(--accent-orange);
        }
        .faq-item.open {
            border-color: var(--border-medium);
            box-shadow: inset 0 0 0 1px rgba(255, 106, 61, 0.08);
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(180deg, rgba(22, 27, 34, 0.6) 0%, rgba(13, 17, 23, 0.95) 100%);
            border-top: 1px solid rgba(255, 106, 61, 0.08);
            border-bottom: 1px solid rgba(255, 106, 61, 0.08);
        }
        .cta-section h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 10px;
        }
        .cta-section p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-footer);
            padding: 48px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .footer-bottom {
            text-align: center;
            padding: 22px 0;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-text h1 {
                font-size: 34px;
            }
            .content-sidebar {
                flex: 1 1 100%;
                min-width: 100%;
            }
            .content-main {
                flex: 1 1 100%;
            }
            .content-grid {
                flex-direction: column;
            }
            .player-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .metrics-grid {
                gap: 12px;
            }
            .metric-value {
                font-size: 26px;
            }
            .channel-nav a {
                padding: 7px 10px;
                font-size: 12.5px;
            }
            .trend-capsule {
                font-size: 11px;
                padding: 5px 10px;
            }
        }
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 28px;
            }
            .hero-text .hero-sub {
                font-size: 15px;
            }
            .page-hero {
                padding: 40px 0 35px;
                min-height: auto;
            }
            .hero-content {
                flex-direction: column;
                gap: 20px;
            }
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .filter-bar select {
                width: 100%;
                min-width: auto;
            }
            .filter-reset {
                margin-left: 0;
                text-align: center;
            }
            .data-table {
                font-size: 12px;
                min-width: 600px;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 10px 8px;
            }
            .player-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .player-card-img {
                height: 120px;
            }
            .metrics-strip {
                padding: 20px 0;
            }
            .metric-item {
                padding: 12px 8px;
            }
            .metric-value {
                font-size: 22px;
            }
            .channel-nav {
                gap: 2px;
            }
            .channel-nav a {
                padding: 6px 8px;
                font-size: 11.5px;
            }
            .trend-capsule {
                display: none;
            }
            .header-top {
                flex-wrap: wrap;
                gap: 10px;
            }
            .search-box input {
                width: 100px;
            }
            .cta-section h3 {
                font-size: 22px;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .btn-primary,
            .btn-outline {
                padding: 10px 18px;
                font-size: 13px;
            }
        }
        @media (max-width: 520px) {
            .hero-text h1 {
                font-size: 24px;
            }
            .player-cards-grid {
                grid-template-columns: 1fr;
            }
            .metrics-grid {
                flex-direction: column;
                gap: 8px;
            }
            .metric-item {
                flex: 1 1 auto;
            }
            .channel-nav {
                gap: 0;
            }
            .channel-nav a {
                padding: 5px 7px;
                font-size: 10.5px;
            }
            .search-box {
                display: none;
            }
            .avatar-placeholder {
                width: 28px;
                height: 28px;
            }
            .logo-main {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .hero-cta-row {
                flex-direction: column;
                gap: 8px;
            }
            .hero-cta-row .btn-primary,
            .hero-cta-row .btn-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .faq-question {
                font-size: 13.5px;
                padding: 14px 14px;
            }
            .faq-answer {
                padding: 0 14px 14px 44px;
                font-size: 13px;
            }
        }

/* roulang page: category4 */
:root {
            --bg-deep: #0D1117;
            --bg-card: rgba(22, 27, 34, 0.75);
            --bg-card-solid: #161B22;
            --bg-footer: #080C10;
            --bg-table-alt: #1B2128;
            --accent: #FF6A3D;
            --accent-light: #FF8A5C;
            --accent-glow: rgba(255, 106, 61, 0.6);
            --accent-border: rgba(255, 106, 61, 0.18);
            --accent-border-hover: rgba(255, 106, 61, 0.45);
            --green: #2EED9E;
            --text-heading: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --text-dim: #4B5260;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 14px;
            --shadow-card: 0px 8px 28px rgba(0, 0, 0, 0.55);
            --shadow-hover: 0px 14px 38px rgba(0, 0, 0, 0.7);
            --shadow-glow: 0 0 22px rgba(255, 106, 61, 0.5);
            --transition-fast: 0.2s ease;
            --transition: 0.28s ease;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Menlo', monospace;
            --font-sans: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background-color: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: var(--text-body);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }
        input,
        select {
            font-family: inherit;
            outline: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-heading);
            margin: 0;
            line-height: 1.25;
            font-weight: 600;
        }
        p {
            margin: 0;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .custom-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 23, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 106, 61, 0.12);
            transition: background var(--transition);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-shrink: 0;
        }
        .logo-main {
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 106, 61, 0.35);
            font-style: italic;
            line-height: 1;
        }
        .logo-sub {
            font-size: 11px;
            color: var(--accent);
            letter-spacing: 1px;
            font-weight: 600;
            text-transform: uppercase;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(22, 27, 34, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 6px 14px;
            gap: 8px;
            transition: border-color var(--transition-fast);
        }
        .search-box:hover,
        .search-box:focus-within {
            border-color: var(--accent);
        }
        .search-box input {
            background: transparent;
            border: none;
            color: var(--text-body);
            font-size: 13px;
            width: 160px;
            padding: 2px 0;
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-box .fa-search {
            color: var(--text-muted);
            font-size: 13px;
        }
        .avatar-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-table-alt);
            border: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }
        .channel-nav {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 6px 0;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }
        .channel-nav a {
            display: inline-block;
            padding: 8px 15px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-muted);
            border-bottom: 2px solid transparent;
            transition: color var(--transition-fast), border-color var(--transition-fast);
            flex-shrink: 0;
            letter-spacing: 0.3px;
        }
        .channel-nav a:hover {
            color: var(--text-heading);
        }
        .channel-nav a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 106, 61, 0.35);
        }
        .trend-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 106, 61, 0.1);
            border: 1px solid rgba(255, 106, 61, 0.2);
            border-radius: 20px;
            padding: 5px 13px;
            font-size: 12px;
            color: var(--accent);
            margin-left: auto;
            flex-shrink: 0;
            cursor: pointer;
            transition: background var(--transition-fast);
        }
        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.18);
        }
        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 1.5s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 4px var(--accent);
            }
            50% {
                box-shadow: 0 0 14px var(--accent), 0 0 22px rgba(255, 106, 61, 0.6);
            }
        }

        /* ===== HERO ===== */
        .page-hero {
            position: relative;
            padding: 64px 0 56px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.55) 0%, rgba(13, 17, 23, 0.82) 60%, rgba(13, 17, 23, 0.96) 100%);
            z-index: 1;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(255, 106, 61, 0.08) 0%, transparent 60%);
            z-index: 2;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .hero-text {
            flex: 1 1 480px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 106, 61, 0.15);
            border: 1px solid rgba(255, 106, 61, 0.3);
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .hero-text h1 {
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: #fff;
            line-height: 1.15;
        }
        .hero-text h1 span {
            color: var(--accent);
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--text-body);
            margin-bottom: 24px;
            line-height: 1.55;
            max-width: 520px;
        }
        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 24px;
        }
        .hero-stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hero-stat-num {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            letter-spacing: -1px;
        }
        .hero-stat-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            border-radius: var(--radius);
            box-shadow: var(--shadow-glow);
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            letter-spacing: 0.4px;
        }
        .btn-primary:hover {
            box-shadow: 0 0 30px rgba(255, 106, 61, 0.75), 0 0 50px rgba(255, 106, 61, 0.3);
            transform: scale(1.03);
            color: #fff;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 11px 24px;
            font-size: 15px;
            font-weight: 600;
            color: var(--accent);
            background: transparent;
            border: 1px solid rgba(255, 106, 61, 0.5);
            border-radius: var(--radius);
            transition: all var(--transition);
            cursor: pointer;
            letter-spacing: 0.4px;
        }
        .btn-secondary:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent);
            color: var(--accent);
        }
        .hero-card-dashboard {
            flex: 0 0 340px;
            background: var(--bg-card);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-lg);
            padding: 22px;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: var(--shadow-card);
        }
        .hero-card-dashboard h4 {
            font-size: 14px;
            color: var(--accent);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .dashboard-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 13px;
        }
        .dashboard-row .dash-label {
            color: var(--text-muted);
        }
        .dashboard-row .dash-val {
            color: var(--text-heading);
            font-weight: 600;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }
        .dashboard-row .dash-val.live {
            color: var(--green);
        }
        .dash-live-indicator {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--green);
            margin-right: 6px;
            animation: pulse-dot 1.5s infinite;
        }

        /* ===== FILTER BAR ===== */
        .filter-bar {
            background: var(--bg-card-solid);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 16px 20px;
            margin-top: -20px;
            position: relative;
            z-index: 5;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            box-shadow: var(--shadow-card);
        }
        .filter-bar label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .filter-bar select,
        .filter-bar input {
            background: rgba(22, 27, 34, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-body);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            transition: border-color var(--transition-fast);
            min-width: 110px;
        }
        .filter-bar select:hover,
        .filter-bar input:hover,
        .filter-bar select:focus,
        .filter-bar input:focus {
            border-color: var(--accent);
        }
        .filter-bar .btn-filter-go {
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
            letter-spacing: 0.3px;
        }
        .filter-bar .btn-filter-go:hover {
            background: var(--accent-light);
            box-shadow: var(--shadow-glow);
        }
        .filter-bar .btn-reset {
            padding: 8px 16px;
            font-size: 13px;
            color: var(--text-muted);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .filter-bar .btn-reset:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* ===== MAIN LAYOUT ===== */
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 28px;
            align-items: start;
        }
        .content-primary {}
        .content-sidebar {}

        /* ===== REPLAY CARDS ===== */
        .section-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-title-row h2 {
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title-row h2 .fa-icon-accent {
            color: var(--accent);
            font-size: 20px;
        }
        .section-title-row .view-all {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .section-title-row .view-all:hover {
            color: var(--accent-light);
        }
        .replay-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .replay-card {
            background: var(--bg-card);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius);
            overflow: hidden;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .replay-card:hover {
            border-color: var(--accent-border-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .replay-card-img {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--bg-table-alt);
        }
        .replay-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }
        .replay-card:hover .replay-card-img img {
            transform: scale(1.04);
        }
        .replay-duration-badge {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            font-size: 11px;
            padding: 3px 9px;
            border-radius: 4px;
            font-weight: 500;
            letter-spacing: 0.4px;
        }
        .replay-live-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: var(--accent);
            color: #fff;
            font-size: 10px;
            padding: 3px 10px;
            border-radius: 4px;
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            animation: pulse-dot 1.5s infinite;
        }
        .replay-card-body {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .replay-event-tag {
            display: inline-block;
            font-size: 11px;
            color: var(--accent);
            background: rgba(255, 106, 61, 0.1);
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 500;
            letter-spacing: 0.3px;
            align-self: flex-start;
        }
        .replay-card-body h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-heading);
            line-height: 1.3;
        }
        .replay-matchup {
            font-size: 13px;
            color: var(--text-body);
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .replay-matchup .vs {
            color: var(--accent);
            font-weight: 700;
        }
        .replay-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 11px;
            color: var(--text-muted);
            align-items: center;
        }
        .replay-meta-row span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .replay-card-footer-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .btn-replay-watch {
            padding: 7px 16px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(255, 106, 61, 0.15);
            color: var(--accent);
            border: 1px solid rgba(255, 106, 61, 0.3);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .btn-replay-watch:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            box-shadow: 0 0 12px rgba(255, 106, 61, 0.4);
        }
        .replay-views {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== SIDEBAR ===== */
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--accent-border);
            border-radius: var(--radius);
            padding: 20px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            margin-bottom: 20px;
        }
        .sidebar-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.2px;
        }
        .sidebar-card h4 .fa-icon-accent {
            color: var(--accent);
        }
        .hot-list-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background var(--transition-fast);
            cursor: pointer;
        }
        .hot-list-item:last-child {
            border-bottom: none;
        }
        .hot-list-item:hover {
            background: rgba(255, 106, 61, 0.04);
            border-radius: var(--radius-sm);
            padding-left: 6px;
        }
        .hot-rank-num {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--bg-table-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .hot-rank-num.top3 {
            background: rgba(255, 106, 61, 0.2);
            color: var(--accent);
        }
        .hot-list-info {
            flex: 1;
            min-width: 0;
        }
        .hot-list-info .hot-title {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-heading);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .hot-list-info .hot-sub {
            font-size: 11px;
            color: var(--text-muted);
        }
        .hot-list-views {
            font-size: 11px;
            color: var(--accent);
            font-weight: 600;
            flex-shrink: 0;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        /* ===== TAGS CLOUD ===== */
        .tags-cloud-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-pill {
            display: inline-block;
            padding: 7px 16px;
            font-size: 12px;
            font-weight: 500;
            background: rgba(22, 27, 34, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            color: var(--text-body);
            cursor: pointer;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .tag-pill:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(255, 106, 61, 0.08);
        }
        .tag-pill.hot-tag {
            background: rgba(255, 106, 61, 0.12);
            border-color: rgba(255, 106, 61, 0.25);
            color: var(--accent);
        }

        /* ===== FAQ ===== */
        .faq-section {}
        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .faq-item:hover {
            border-color: var(--accent-border);
        }
        .faq-question {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-heading);
            user-select: none;
        }
        .faq-question .faq-icon {
            color: var(--accent);
            flex-shrink: 0;
            font-size: 15px;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition), padding var(--transition);
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 260px;
            padding: 0 20px 18px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(255, 106, 61, 0.1), rgba(255, 106, 61, 0.04));
            border: 1px solid var(--accent-border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }
        .cta-banner h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .cta-banner p {
            color: var(--text-muted);
            margin-bottom: 18px;
            font-size: 15px;
        }
        .cta-banner .btn-primary {
            font-size: 15px;
            padding: 13px 30px;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-footer);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 48px 0 0;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            margin-top: 36px;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            font-size: 12px;
        }
        .footer-bottom a:hover {
            color: var(--accent);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .main-content-area {
                grid-template-columns: 1fr 260px;
                gap: 20px;
            }
            .replay-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .hero-text h1 {
                font-size: 34px;
            }
            .hero-card-dashboard {
                flex: 0 0 280px;
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }
        }
        @media (max-width: 768px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                order: 3;
            }
            .replay-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .hero-content {
                flex-direction: column;
                gap: 24px;
            }
            .hero-card-dashboard {
                flex: 1 1 auto;
                width: 100%;
            }
            .hero-text h1 {
                font-size: 28px;
            }
            .hero-stats-row {
                gap: 14px;
            }
            .hero-stat-num {
                font-size: 22px;
            }
            .filter-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .filter-bar select,
            .filter-bar input {
                width: 100%;
            }
            .channel-nav {
                gap: 2px;
            }
            .channel-nav a {
                padding: 7px 10px;
                font-size: 12px;
            }
            .trend-capsule {
                font-size: 10px;
                padding: 4px 10px;
                margin-left: 6px;
            }
            .cta-banner {
                padding: 24px 18px;
            }
            .cta-banner h3 {
                font-size: 18px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .search-box input {
                width: 100px;
            }
            .logo-main {
                font-size: 18px;
            }
        }
        @media (max-width: 520px) {
            .custom-container {
                padding: 0 14px;
            }
            .hero-text h1 {
                font-size: 24px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-stats-row {
                gap: 8px;
            }
            .hero-stat-num {
                font-size: 18px;
            }
            .hero-stat-label {
                font-size: 10px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 10px 18px;
                font-size: 13px;
            }
            .replay-card-body h3 {
                font-size: 14px;
            }
            .section-title-row h2 {
                font-size: 19px;
            }
            .filter-bar {
                padding: 12px 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .footer-col h4 {
                font-size: 12px;
            }
            .footer-col a {
                font-size: 11px;
            }
            .footer-bottom {
                font-size: 10px;
            }
            .channel-nav a {
                padding: 6px 8px;
                font-size: 11px;
            }
            .trend-capsule {
                display: none;
            }
            .header-top {
                padding: 8px 0;
            }
            .search-box input {
                width: 70px;
            }
            .logo-main {
                font-size: 16px;
            }
            .logo-sub {
                font-size: 9px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-deep: #0D1117;
            --bg-card: rgba(22, 27, 34, 0.85);
            --bg-card-solid: #161B22;
            --bg-footer: #080C10;
            --accent-orange: #FF6A3D;
            --accent-orange-light: #FF8A5C;
            --accent-green: #2EED9E;
            --text-heading: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 106, 61, 0.15);
            --border-medium: rgba(255, 106, 61, 0.5);
            --table-stripe: #1B2128;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.6);
            --shadow-hover: 0px 12px 32px rgba(0, 0, 0, 0.75);
            --shadow-glow: 0 0 18px rgba(255, 106, 61, 0.6);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --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: 'SF Mono', 'Cascadia Code', 'Consolas', 'Menlo', monospace;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-2xl: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-body);
            background-color: var(--bg-deep);
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--accent-orange);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        .custom-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        @media(max-width:768px) {
            .custom-container {
                padding: 0 var(--spacing-sm);
            }
        }

        /* ========== HEADER & NAVIGATION ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 23, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 106, 61, 0.12);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            flex-wrap: wrap;
            gap: 12px;
        }

        .logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-main {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #FFFFFF;
            text-shadow: 0 0 12px rgba(255, 106, 61, 0.4);
            line-height: 1;
            font-style: italic;
        }

        .logo-sub {
            font-size: 11px;
            color: var(--accent-orange);
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .search-input-wrap {
            position: relative;
        }

        .search-input-wrap input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            padding: 8px 36px 8px 16px;
            color: var(--text-heading);
            font-size: 13px;
            width: 200px;
            transition: all var(--transition-smooth);
            outline: none;
        }

        .search-input-wrap input::placeholder {
            color: var(--text-muted);
        }
        .search-input-wrap input:focus {
            border-color: var(--accent-orange);
            box-shadow: 0 0 10px rgba(255, 106, 61, 0.25);
            width: 240px;
        }

        .search-input-wrap .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 13px;
            pointer-events: none;
            transition: color var(--transition-fast);
        }
        .search-input-wrap input:focus~.search-icon {
            color: var(--accent-orange);
        }

        .avatar-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 106, 61, 0.3);
            flex-shrink: 0;
            cursor: pointer;
            transition: border-color var(--transition-fast);
        }
        .avatar-placeholder:hover {
            border-color: var(--accent-orange);
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 4px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            flex-wrap: nowrap;
        }
        .channel-nav::-webkit-scrollbar {
            display: none;
        }

        .channel-nav a {
            display: inline-block;
            padding: 10px 15px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-body);
            white-space: nowrap;
            border-bottom: 2px solid transparent;
            transition: all var(--transition-smooth);
            flex-shrink: 0;
            position: relative;
        }
        .channel-nav a:hover {
            color: var(--accent-orange);
        }
        .channel-nav a.active {
            color: var(--accent-orange);
            border-bottom-color: var(--accent-orange);
            text-shadow: 0 0 14px rgba(255, 106, 61, 0.5);
        }

        .trend-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 106, 61, 0.1);
            border: 1px solid rgba(255, 106, 61, 0.25);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 12px;
            color: var(--accent-orange);
            white-space: nowrap;
            flex-shrink: 0;
            margin-left: 8px;
            cursor: pointer;
            transition: all var(--transition-smooth);
        }
        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.2);
            border-color: var(--accent-orange);
            box-shadow: 0 0 12px rgba(255, 106, 61, 0.35);
        }
        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: livePulse 1.4s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 237, 158, 0.7);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(46, 237, 158, 0);
            }
        }

        @media(max-width:1024px) {
            .search-input-wrap input {
                width: 150px;
            }
            .search-input-wrap input:focus {
                width: 180px;
            }
            .channel-nav a {
                padding: 10px 10px;
                font-size: 12px;
            }
            .trend-capsule {
                font-size: 11px;
                padding: 5px 10px;
                margin-left: 4px;
            }
        }
        @media(max-width:768px) {
            .brand-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .header-actions {
                width: 100%;
                justify-content: space-between;
            }
            .search-input-wrap input {
                width: 130px;
                font-size: 12px;
            }
            .search-input-wrap input:focus {
                width: 150px;
            }
            .channel-nav {
                gap: 0;
                padding: 2px 0;
            }
            .channel-nav a {
                padding: 8px 8px;
                font-size: 11px;
            }
            .trend-capsule {
                font-size: 10px;
                padding: 4px 8px;
            }
            .logo-main {
                font-size: 22px;
            }
        }
        @media(max-width:520px) {
            .search-input-wrap input {
                width: 100px;
            }
            .search-input-wrap input:focus {
                width: 120px;
            }
            .channel-nav a {
                padding: 7px 6px;
                font-size: 10px;
            }
            .trend-capsule {
                display: none;
            }
            .logo-main {
                font-size: 20px;
            }
            .logo-sub {
                font-size: 9px;
            }
        }

        /* ========== HERO SECTION ========== */
        .channel-hero {
            position: relative;
            padding: var(--spacing-xl) 0 var(--spacing-lg);
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            min-height: 380px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .channel-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.65) 0%, rgba(13, 17, 23, 0.88) 70%, #0D1117 100%);
            z-index: 1;
        }
        .channel-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(255, 106, 61, 0.13) 0%, transparent 65%),
                radial-gradient(ellipse at 70% 40%, rgba(46, 237, 158, 0.05) 0%, transparent 55%);
            z-index: 2;
            pointer-events: none;
        }
        .channel-hero .custom-container {
            position: relative;
            z-index: 3;
        }
        .channel-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: var(--spacing-lg);
        }
        .channel-hero-text {
            flex: 1 1 480px;
            min-width: 280px;
        }
        .channel-hero-text .ch-label {
            display: inline-block;
            background: rgba(255, 106, 61, 0.15);
            color: var(--accent-orange);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            margin-bottom: var(--spacing-sm);
            border: 1px solid rgba(255, 106, 61, 0.3);
        }
        .channel-hero-text h1 {
            font-family: var(--font-heading);
            font-size: 44px;
            font-weight: 700;
            color: var(--text-heading);
            letter-spacing: -0.5px;
            margin: 0 0 var(--spacing-sm);
            line-height: 1.2;
        }
        .channel-hero-text .hero-subtitle {
            font-size: 17px;
            color: var(--text-body);
            margin: 0 0 var(--spacing-md);
            max-width: 520px;
            line-height: 1.7;
        }
        .channel-hero-text .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: var(--spacing-md);
        }
        .channel-hero-text .hero-tags span {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 12px;
            color: var(--text-body);
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .channel-hero-text .hero-tags span:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            background: rgba(255, 106, 61, 0.08);
        }
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5C 100%);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 15px;
            padding: 13px 28px;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            text-decoration: none;
            box-shadow: var(--shadow-glow);
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: 0 0 28px rgba(255, 106, 61, 0.8);
            transform: scale(1.02);
            color: #FFFFFF;
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 15px;
            padding: 13px 28px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-medium);
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-secondary:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }
        .btn-sm {
            font-size: 12px;
            padding: 7px 16px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition-smooth);
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-sm-outline {
            background: transparent;
            border: 1px solid rgba(255, 106, 61, 0.5);
            color: var(--accent-orange);
            border-radius: var(--radius-sm);
        }
        .btn-sm-outline:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .channel-hero-card {
            flex: 0 0 340px;
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-card);
            min-width: 260px;
        }
        .channel-hero-card h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-heading);
            margin: 0 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .channel-hero-card h4 .dot-live {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: livePulse 1.4s ease-in-out infinite;
        }
        .hero-stat-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 13px;
            color: var(--text-body);
        }
        .hero-stat-row:last-child {
            border-bottom: none;
        }
        .hero-stat-val {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--accent-orange);
            font-size: 15px;
            font-feature-settings: "tnum";
        }
        .hero-stat-val.green {
            color: var(--accent-green);
        }

        @media(max-width:768px) {
            .channel-hero {
                min-height: auto;
                padding: var(--spacing-lg) 0 var(--spacing-md);
            }
            .channel-hero-text h1 {
                font-size: 30px;
            }
            .channel-hero-text .hero-subtitle {
                font-size: 15px;
            }
            .channel-hero-card {
                flex: 1 1 100%;
                min-width: 100%;
            }
        }
        @media(max-width:520px) {
            .channel-hero-text h1 {
                font-size: 26px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 11px 20px;
                font-size: 13px;
            }
        }

        /* ========== MAIN SECTIONS ========== */
        main {
            padding: 0;
        }
        .section {
            padding: var(--spacing-xl) 0;
        }
        .section-alt {
            background: rgba(22, 27, 34, 0.35);
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 600;
            color: var(--text-heading);
            margin: 0 0 8px;
            letter-spacing: -0.3px;
        }
        .section-header .sec-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Cards */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .glass-card:hover {
            border-color: rgba(255, 106, 61, 0.4);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .glass-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: rgba(255, 106, 61, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent-orange);
            margin-bottom: var(--spacing-sm);
            flex-shrink: 0;
        }
        .glass-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
            color: var(--text-heading);
            margin: 0 0 8px;
        }
        .glass-card p {
            font-size: 14px;
            color: var(--text-body);
            margin: 0 0 var(--spacing-sm);
            flex-grow: 1;
            line-height: 1.6;
        }
        .glass-card .card-img-wrap {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: var(--spacing-sm);
            aspect-ratio: 16 / 10;
            flex-shrink: 0;
        }
        .glass-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .glass-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        /* Steps / Timeline */
        .step-list {
            list-style: none;
            padding: 0;
            margin: 0;
            counter-reset: step;
        }
        .step-list li {
            counter-increment: step;
            display: flex;
            gap: var(--spacing-md);
            align-items: flex-start;
            padding: var(--spacing-md) 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
        }
        .step-list li:last-child {
            border-bottom: none;
        }
        .step-num {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5C 100%);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
        }
        .step-content h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--text-heading);
            margin: 0 0 4px;
        }
        .step-content p {
            font-size: 14px;
            color: var(--text-body);
            margin: 0;
            line-height: 1.6;
        }

        /* Table */
        .data-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 700px;
        }
        .data-table thead th {
            background: var(--bg-card-solid);
            color: var(--text-heading);
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            font-size: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(255, 106, 61, 0.3);
            white-space: nowrap;
        }
        .data-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-body);
            white-space: nowrap;
            font-feature-settings: "tnum";
        }
        .data-table tbody tr:nth-child(even) {
            background: var(--table-stripe);
        }
        .data-table tbody tr:hover {
            background: rgba(255, 106, 61, 0.06);
        }
        .data-table .badge-cell {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background: rgba(255, 106, 61, 0.15);
            color: var(--accent-orange);
        }
        .badge-green {
            background: rgba(46, 237, 158, 0.12);
            color: var(--accent-green);
        }

        /* FAQ */
        .faq-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .faq-list li {
            margin-bottom: 10px;
        }
        .faq-toggle {
            display: none;
        }
        .faq-label {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-heading);
            transition: all var(--transition-smooth);
            user-select: none;
        }
        .faq-label:hover {
            border-color: rgba(255, 106, 61, 0.4);
            background: rgba(22, 27, 34, 0.95);
        }
        .faq-label .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.15);
            color: var(--accent-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: all var(--transition-smooth);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: rgba(22, 27, 34, 0.5);
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            margin-top: -2px;
        }
        .faq-answer-inner {
            padding: 0 20px 0 60px;
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.7;
        }
        .faq-toggle:checked~.faq-answer {
            max-height: 300px;
            padding: 16px 0;
        }
        .faq-toggle:checked~.faq-label {
            border-color: rgba(255, 106, 61, 0.5);
            border-radius: var(--radius-md) var(--radius-md) 0 0;
        }
        .faq-toggle:checked~.faq-label .faq-icon {
            background: var(--accent-orange);
            color: #FFFFFF;
            transform: rotate(45deg);
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(180deg, rgba(255, 106, 61, 0.06) 0%, rgba(13, 17, 23, 0.9) 100%);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: var(--spacing-xl) 0;
            text-align: center;
        }
        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-heading);
            margin: 0 0 12px;
        }
        .cta-section p {
            font-size: 16px;
            color: var(--text-body);
            margin: 0 auto var(--spacing-md);
            max-width: 500px;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-footer);
            padding: var(--spacing-xl) 0 0;
            border-top: 2px solid rgba(255, 106, 61, 0.2);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: var(--spacing-md);
            padding-bottom: var(--spacing-lg);
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: var(--text-heading);
            margin: 0 0 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .footer-col a {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-orange);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: var(--spacing-md) 0;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 2;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--accent-orange);
        }
        @media(max-width:1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--spacing-sm);
            }
        }
        @media(max-width:768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .cta-section h2 {
                font-size: 24px;
            }
            .section-header h2 {
                font-size: 24px;
            }
        }

/* roulang page: category6 */
:root {
            --bg-deep: #0D1117;
            --bg-card: rgba(22, 27, 34, 0.85);
            --bg-card-solid: #161B22;
            --bg-footer: #080C10;
            --bg-table-alt: #1B2128;
            --accent-orange: #FF6A3D;
            --accent-orange-light: #FF8A5C;
            --accent-orange-glow: rgba(255, 106, 61, 0.6);
            --accent-green: #2EED9E;
            --text-heading: #F0F3F8;
            --text-body: #C5CDD8;
            --text-muted: #6B7280;
            --border-subtle: rgba(255, 106, 61, 0.15);
            --border-medium: rgba(255, 106, 61, 0.35);
            --border-strong: rgba(255, 106, 61, 0.5);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0px 8px 24px rgba(0, 0, 0, 0.6);
            --shadow-hover: 0px 12px 32px rgba(0, 0, 0, 0.75);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --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: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 3px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        button:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
        }

        input:focus-visible {
            outline: 2px solid var(--accent-orange);
            outline-offset: 2px;
        }

        .custom-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .custom-container {
                padding: 0 16px;
            }
        }

        /* ===== HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 23, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background var(--transition-smooth);
        }

        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            flex-wrap: nowrap;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-main {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: #FFFFFF;
            text-shadow: 0 0 12px rgba(255, 106, 61, 0.35);
            line-height: 1;
            font-style: italic;
        }

        .logo-sub {
            font-size: 0.7rem;
            font-weight: 500;
            color: var(--accent-orange);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .brand-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-box input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            padding: 7px 36px 7px 14px;
            color: var(--text-body);
            font-size: 0.8rem;
            width: 180px;
            transition: all var(--transition-smooth);
            height: 34px;
        }

        .search-box input::placeholder {
            color: var(--text-muted);
            font-size: 0.78rem;
        }

        .search-box input:focus {
            border-color: var(--accent-orange);
            background: rgba(255, 255, 255, 0.08);
            width: 220px;
            outline: none;
            box-shadow: 0 0 14px rgba(255, 106, 61, 0.25);
        }

        .search-icon {
            position: absolute;
            right: 12px;
            color: var(--text-muted);
            font-size: 0.85rem;
            pointer-events: none;
            transition: color var(--transition-fast);
        }

        .search-box input:focus~.search-icon {
            color: var(--accent-orange);
        }

        .user-avatar-placeholder {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.75rem;
            transition: border-color var(--transition-fast);
        }

        .user-avatar-placeholder:hover {
            border-color: var(--accent-orange);
        }

        .channel-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 0 8px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            position: relative;
            flex-wrap: nowrap;
        }

        .channel-nav::-webkit-scrollbar {
            display: none;
        }

        .channel-nav a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.02em;
        }

        .channel-nav a:hover {
            color: var(--text-heading);
            background: rgba(255, 255, 255, 0.04);
        }

        .channel-nav a.active {
            color: var(--accent-orange);
            font-weight: 600;
            background: rgba(255, 106, 61, 0.08);
        }

        .channel-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--accent-orange);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--accent-orange-glow);
        }

        .trend-capsule {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 106, 61, 0.1);
            border: 1px solid rgba(255, 106, 61, 0.2);
            border-radius: 16px;
            padding: 6px 13px;
            font-size: 0.75rem;
            color: var(--accent-orange-light);
            white-space: nowrap;
            flex-shrink: 0;
            margin-left: auto;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .trend-capsule:hover {
            background: rgba(255, 106, 61, 0.18);
            border-color: rgba(255, 106, 61, 0.4);
        }

        .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-orange);
            animation: pulse-dot 1.4s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 4px var(--accent-orange), 0 0 8px var(--accent-orange-glow);
            }
            50% {
                box-shadow: 0 0 10px var(--accent-orange), 0 0 22px var(--accent-orange-glow);
            }
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 1.4rem;
            color: var(--text-heading);
            cursor: pointer;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 1024px) {
            .channel-nav {
                gap: 2px;
            }
            .channel-nav a {
                padding: 6px 10px;
                font-size: 0.76rem;
            }
            .trend-capsule {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .search-box input {
                width: 140px;
                font-size: 0.75rem;
            }
            .search-box input:focus {
                width: 170px;
            }
        }

        @media (max-width: 768px) {
            .brand-row {
                padding: 8px 0;
                gap: 12px;
            }
            .logo-main {
                font-size: 1.25rem;
            }
            .logo-sub {
                font-size: 0.65rem;
            }
            .search-box input {
                width: 110px;
                padding: 6px 30px 6px 10px;
                font-size: 0.7rem;
                height: 30px;
            }
            .search-box input:focus {
                width: 140px;
            }
            .channel-nav {
                gap: 0;
                padding: 4px 0 6px;
            }
            .channel-nav a {
                padding: 5px 8px;
                font-size: 0.7rem;
                border-radius: 4px;
            }
            .channel-nav a.active::after {
                left: 8px;
                right: 8px;
                height: 1.5px;
            }
            .trend-capsule {
                font-size: 0.65rem;
                padding: 4px 8px;
                border-radius: 12px;
                gap: 4px;
            }
            .live-dot {
                width: 5px;
                height: 5px;
            }
            .user-avatar-placeholder {
                width: 26px;
                height: 26px;
                font-size: 0.65rem;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .channel-nav.collapsed-mobile {
                display: none;
            }
            .channel-nav.mobile-open {
                display: flex;
                flex-wrap: wrap;
                gap: 4px;
                padding: 8px 0;
            }
        }

        @media (max-width: 520px) {
            .brand-row {
                gap: 8px;
            }
            .logo-main {
                font-size: 1.1rem;
            }
            .logo-sub {
                font-size: 0.6rem;
            }
            .search-box input {
                width: 90px;
                font-size: 0.65rem;
                height: 28px;
                padding: 5px 26px 5px 8px;
            }
            .search-box input:focus {
                width: 110px;
            }
            .search-icon {
                right: 8px;
                font-size: 0.7rem;
            }
            .channel-nav a {
                padding: 4px 6px;
                font-size: 0.65rem;
            }
            .trend-capsule {
                font-size: 0.6rem;
                padding: 3px 6px;
            }
            .user-avatar-placeholder {
                width: 22px;
                height: 22px;
                font-size: 0.55rem;
            }
        }

        /* ===== HERO ===== */
        .channel-hero {
            position: relative;
            padding: 60px 0 50px;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            min-height: 360px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .channel-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.55) 0%, rgba(13, 17, 23, 0.82) 60%, rgba(13, 17, 23, 0.96) 100%);
            z-index: 1;
        }

        .channel-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 70% 40%, rgba(255, 106, 61, 0.12) 0%, transparent 60%);
            z-index: 2;
            pointer-events: none;
        }

        .channel-hero .custom-container {
            position: relative;
            z-index: 3;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 106, 61, 0.2);
            border: 1px solid rgba(255, 106, 61, 0.35);
            color: var(--accent-orange-light);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            margin-bottom: 18px;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-heading);
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .hero-content h1 .highlight {
            color: var(--accent-orange);
            text-shadow: 0 0 18px rgba(255, 106, 61, 0.4);
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            margin-bottom: 28px;
            line-height: 1.7;
            max-width: 560px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 22px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FF6A3D 0%, #FF8A5C 100%);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 26px;
            border-radius: var(--radius-md);
            box-shadow: 0 0 18px rgba(255, 106, 61, 0.55);
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            text-align: center;
            white-space: nowrap;
        }

        .btn-primary:hover {
            box-shadow: 0 0 28px rgba(255, 106, 61, 0.75);
            transform: scale(1.03);
            color: #fff;
        }

        .btn-primary:active {
            transform: scale(0.98);
            box-shadow: 0 0 14px rgba(255, 106, 61, 0.5);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 26px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 106, 61, 0.5);
            transition: all var(--transition-smooth);
            letter-spacing: 0.03em;
            text-align: center;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: var(--accent-orange);
            color: var(--accent-orange-light);
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-tag {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 5px 13px;
            border-radius: 16px;
            font-size: 0.78rem;
            color: var(--text-body);
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .hero-tag:hover {
            background: rgba(255, 106, 61, 0.1);
            border-color: rgba(255, 106, 61, 0.3);
            color: var(--accent-orange-light);
        }

        @media (max-width: 768px) {
            .channel-hero {
                padding: 40px 0 36px;
                min-height: 280px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .btn-primary,
            .btn-secondary {
                font-size: 0.85rem;
                padding: 10px 20px;
            }
            .hero-badge {
                font-size: 0.7rem;
                padding: 4px 10px;
            }
            .hero-tag {
                font-size: 0.7rem;
                padding: 4px 10px;
            }
        }

        @media (max-width: 520px) {
            .channel-hero {
                padding: 30px 0 28px;
                min-height: 220px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .hero-subtitle {
                font-size: 0.8rem;
                margin-bottom: 18px;
            }
            .hero-cta-group {
                gap: 10px;
            }
            .btn-primary,
            .btn-secondary {
                font-size: 0.78rem;
                padding: 8px 16px;
                border-radius: 6px;
            }
            .hero-tags {
                gap: 6px;
            }
            .hero-tag {
                font-size: 0.65rem;
                padding: 3px 8px;
            }
            .hero-badge {
                font-size: 0.65rem;
                padding: 3px 8px;
                margin-bottom: 12px;
            }
        }

        /* ===== SECTION COMMON ===== */
        .section-pad {
            padding: 56px 0;
        }

        @media (max-width: 768px) {
            .section-pad {
                padding: 36px 0;
            }
        }

        @media (max-width: 520px) {
            .section-pad {
                padding: 28px 0;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.4rem;
            }
            .section-header .section-subtitle {
                font-size: 0.82rem;
            }
            .section-header {
                margin-bottom: 28px;
            }
        }

        /* ===== STATS STRIP ===== */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }

        .stat-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .stat-item:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .stat-value {
            font-family: var(--font-mono);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--accent-orange);
            letter-spacing: 0.02em;
            font-feature-settings: "tnum";
            line-height: 1.1;
            margin-bottom: 4px;
        }

        .stat-value.green {
            color: var(--accent-green);
        }

        .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.03em;
        }

        @media (max-width: 1024px) {
            .stats-strip {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                margin-top: -20px;
            }
            .stat-value {
                font-size: 1.4rem;
            }
            .stat-label {
                font-size: 0.7rem;
            }
            .stat-item {
                padding: 14px 10px;
            }
        }

        @media (max-width: 768px) {
            .stats-strip {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                margin-top: -16px;
            }
            .stat-value {
                font-size: 1.2rem;
            }
            .stat-label {
                font-size: 0.65rem;
            }
            .stat-item {
                padding: 12px 8px;
                border-radius: var(--radius-sm);
            }
        }

        @media (max-width: 520px) {
            .stats-strip {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
                margin-top: -12px;
            }
            .stat-value {
                font-size: 1rem;
            }
            .stat-item {
                padding: 10px 6px;
            }
        }

        /* ===== FILTER BAR ===== */
        .filter-bar {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 16px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            margin-bottom: 36px;
        }

        .filter-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-heading);
            letter-spacing: 0.03em;
            white-space: nowrap;
            margin-right: 4px;
        }

        .filter-chip {
            padding: 6px 14px;
            font-size: 0.78rem;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--text-muted);
            background: transparent;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
            font-weight: 500;
        }

        .filter-chip:hover {
            border-color: var(--accent-orange);
            color: var(--text-heading);
            background: rgba(255, 106, 61, 0.06);
        }

        .filter-chip.active-filter {
            background: rgba(255, 106, 61, 0.18);
            border-color: var(--accent-orange);
            color: var(--accent-orange);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .filter-bar {
                gap: 6px;
                padding: 12px 14px;
                border-radius: var(--radius-sm);
                margin-bottom: 24px;
            }
            .filter-label {
                font-size: 0.72rem;
            }
            .filter-chip {
                font-size: 0.7rem;
                padding: 5px 10px;
                border-radius: 14px;
            }
        }

        @media (max-width: 520px) {
            .filter-bar {
                gap: 4px;
                padding: 10px 10px;
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .filter-bar::-webkit-scrollbar {
                display: none;
            }
            .filter-chip {
                font-size: 0.65rem;
                padding: 4px 8px;
                flex-shrink: 0;
            }
        }

        /* ===== TIMELINE ===== */
        .timeline-wrapper {
            position: relative;
            padding-left: 0;
        }

        .timeline-line {
            position: absolute;
            left: 28px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, rgba(255, 106, 61, 0.5) 0%, rgba(255, 106, 61, 0.08) 100%);
            border-radius: 1px;
        }

        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 28px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 18px;
            top: 6px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--bg-deep);
            border: 2px solid var(--accent-orange);
            box-shadow: 0 0 12px rgba(255, 106, 61, 0.35);
            z-index: 2;
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-dot::after {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-orange);
            transition: all var(--transition-smooth);
        }

        .timeline-item:hover .timeline-dot {
            box-shadow: 0 0 20px rgba(255, 106, 61, 0.6);
            border-color: var(--accent-orange-light);
        }

        .timeline-item:hover .timeline-dot::after {
            background: var(--accent-orange-light);
            width: 10px;
            height: 10px;
        }

        .timeline-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 22px 24px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .timeline-card:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .timeline-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }

        .timeline-date {
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .timeline-version-tag {
            display: inline-block;
            background: rgba(255, 106, 61, 0.15);
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 0.8rem;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.03em;
            font-family: var(--font-mono);
        }

        .timeline-card h3 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .timeline-summary {
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .timeline-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .timeline-tag {
            font-size: 0.7rem;
            padding: 3px 9px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
            white-space: nowrap;
        }

        .timeline-tag.map-tag {
            border-color: rgba(46, 237, 158, 0.3);
            color: var(--accent-green);
            background: rgba(46, 237, 158, 0.06);
        }

        .timeline-tag.weapon-tag {
            border-color: rgba(255, 106, 61, 0.3);
            color: var(--accent-orange-light);
            background: rgba(255, 106, 61, 0.06);
        }

        .timeline-link {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-orange);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 8px;
            transition: all var(--transition-fast);
        }

        .timeline-link:hover {
            color: var(--accent-orange-light);
            gap: 8px;
        }

        @media (max-width: 768px) {
            .timeline-item {
                padding-left: 46px;
                margin-bottom: 20px;
            }
            .timeline-line {
                left: 20px;
            }
            .timeline-dot {
                left: 11px;
                width: 18px;
                height: 18px;
            }
            .timeline-dot::after {
                width: 6px;
                height: 6px;
            }
            .timeline-card {
                padding: 16px;
            }
            .timeline-card h3 {
                font-size: 0.95rem;
            }
            .timeline-summary {
                font-size: 0.8rem;
            }
            .timeline-date {
                font-size: 0.72rem;
            }
            .timeline-version-tag {
                font-size: 0.7rem;
                padding: 2px 8px;
            }
        }

        @media (max-width: 520px) {
            .timeline-item {
                padding-left: 36px;
                margin-bottom: 16px;
            }
            .timeline-line {
                left: 14px;
            }
            .timeline-dot {
                left: 6px;
                width: 16px;
                height: 16px;
            }
            .timeline-dot::after {
                width: 5px;
                height: 5px;
            }
            .timeline-card {
                padding: 12px 14px;
                border-radius: var(--radius-sm);
            }
            .timeline-card h3 {
                font-size: 0.85rem;
            }
            .timeline-summary {
                font-size: 0.73rem;
            }
            .timeline-tags {
                gap: 4px;
            }
            .timeline-tag {
                font-size: 0.62rem;
                padding: 2px 6px;
            }
        }

        /* ===== WEAPON CARDS ===== */
        .weapon-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .weapon-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 22px 18px;
            text-align: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .weapon-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .weapon-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--accent-orange);
        }

        .weapon-card h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 4px;
        }

        .weapon-change {
            font-size: 0.78rem;
            color: var(--accent-orange-light);
            font-weight: 500;
            margin-bottom: 6px;
        }

        .weapon-change.nerf {
            color: #F87171;
        }

        .weapon-change.buff {
            color: var(--accent-green);
        }

        .weapon-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .weapon-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 520px) {
            .weapon-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .weapon-card {
                padding: 14px 10px;
                border-radius: var(--radius-sm);
            }
            .weapon-icon {
                font-size: 1.6rem;
            }
            .weapon-card h4 {
                font-size: 0.85rem;
            }
            .weapon-change {
                font-size: 0.7rem;
            }
            .weapon-desc {
                font-size: 0.68rem;
            }
        }

        /* ===== MAP GRID ===== */
        .map-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .map-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .map-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .map-card-img {
            height: 140px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .map-card-img .map-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(13, 17, 23, 0.8) 0%, transparent 60%);
        }

        .map-card-body {
            padding: 16px 18px;
        }

        .map-card-body h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 4px;
        }

        .map-change-type {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--accent-orange);
            letter-spacing: 0.03em;
            margin-bottom: 6px;
        }

        .map-card-body p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .map-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .map-card-img {
                height: 110px;
            }
            .map-card-body {
                padding: 12px 14px;
            }
            .map-card-body h4 {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .map-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .map-card-img {
                height: 100px;
            }
            .map-card-body {
                padding: 10px 12px;
            }
            .map-card-body h4 {
                font-size: 0.82rem;
            }
            .map-card-body p {
                font-size: 0.7rem;
            }
        }

        /* ===== GUIDE CARDS ===== */
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .guide-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }

        .guide-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .guide-card-img {
            height: 170px;
            background-size: cover;
            background-position: center;
        }

        .guide-card-body {
            padding: 18px 20px;
        }

        .guide-card-body .guide-category {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent-orange);
            letter-spacing: 0.04em;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .guide-card-body h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .guide-card-body p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .guide-card-body .guide-link {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--accent-orange);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition-fast);
        }

        .guide-card:hover .guide-link {
            gap: 8px;
        }

        @media (max-width: 768px) {
            .guide-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .guide-card-img {
                height: 140px;
            }
            .guide-card-body {
                padding: 14px;
            }
            .guide-card-body h4 {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .guide-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .guide-card-img {
                height: 160px;
            }
            .guide-card-body {
                padding: 12px 14px;
            }
            .guide-card-body h4 {
                font-size: 0.85rem;
            }
        }

        /* ===== USER REVIEWS ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .review-card:hover {
            border-color: var(--border-medium);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 106, 61, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--accent-orange);
            flex-shrink: 0;
        }

        .review-user-info {
            flex: 1;
            min-width: 0;
        }

        .review-nickname {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-heading);
        }

        .review-tag {
            font-size: 0.65rem;
            color: var(--text-muted);
        }

        .review-stars {
            color: var(--accent-orange);
            font-size: 0.75rem;
            margin-bottom: 6px;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 0.8rem;
            color: var(--text-body);
            line-height: 1.55;
            margin-bottom: 8px;
        }

        .review-time {
            font-size: 0.65rem;
            color: var(--text-muted);
        }

        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .review-card {
                padding: 14px;
                border-radius: var(--radius-sm);
            }
            .review-text {
                font-size: 0.73rem;
            }
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-heading);
            transition: all var(--transition-fast);
            user-select: none;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
        }

        .faq-question:hover {
            color: var(--accent-orange-light);
        }

        .faq-icon {
            font-size: 1rem;
            color: var(--accent-orange);
            flex-shrink: 0;
            transition: transform var(--transition-smooth);
        }

        .faq-item.open .faq-icon {
            transform: rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.7;
            background: rgba(0, 0, 0, 0.2);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }

        @media (max-width: 768px) {
            .faq-question {
                font-size: 0.85rem;
                padding: 14px 16px;
                gap: 10px;
            }
            .faq-answer {
                font-size: 0.8rem;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
        }

        @media (max-width: 520px) {
            .faq-question {
                font-size: 0.78rem;
                padding: 12px 14px;
                gap: 8px;
            }
            .faq-answer {
                font-size: 0.73rem;
            }
            .faq-item.open .faq-answer {
                padding: 0 14px 12px;
            }
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 106, 61, 0.08) 0%, rgba(13, 17, 23, 0.95) 60%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            text-align: center;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 106, 61, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-heading);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 0.95rem;
            color: var(--text-body);
            margin-bottom: 22px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 14px 32px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 32px 20px;
                border-radius: var(--radius-md);
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .cta-section p {
                font-size: 0.82rem;
            }
            .cta-section .btn-primary {
                font-size: 0.9rem;
                padding: 12px 24px;
            }
        }

        @media (max-width: 520px) {
            .cta-section {
                padding: 24px 16px;
                border-radius: var(--radius-sm);
            }
            .cta-section h3 {
                font-size: 1.1rem;
            }
            .cta-section p {
                font-size: 0.75rem;
                margin-bottom: 16px;
            }
            .cta-section .btn-primary {
                font-size: 0.82rem;
                padding: 10px 20px;
            }
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--bg-footer);
            padding: 48px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            padding-bottom: 36px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }

        .footer-col a {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            padding: 4px 0;
            transition: color var(--transition-fast);
            line-height: 1.7;
        }

        .footer-col a:hover {
            color: var(--accent-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-bottom: 4px;
            line-height: 1.6;
        }

        .footer-bottom a {
            color: var(--text-muted);
            font-size: 0.72rem;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--accent-orange);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 36px 0 0;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                padding-bottom: 24px;
            }
            .footer-col h4 {
                font-size: 0.8rem;
                margin-bottom: 10px;
            }
            .footer-col a {
                font-size: 0.72rem;
            }
            .footer-bottom p {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                padding-bottom: 20px;
            }
            .footer-col h4 {
                font-size: 0.75rem;
                margin-bottom: 8px;
            }
            .footer-col a {
                font-size: 0.68rem;
                padding: 2px 0;
            }
            .footer-bottom {
                padding: 14px 0;
            }
            .footer-bottom p {
                font-size: 0.6rem;
            }
            .footer-bottom a {
                font-size: 0.6rem;
            }
        }

        /* ===== UTILITY ===== */
        .text-orange {
            color: var(--accent-orange);
        }
        .text-green {
            color: var(--accent-green);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mt-3 {
            margin-top: 24px;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .mb-3 {
            margin-bottom: 24px;
        }
