/* roulang page: index */
:root {
            --brand: #2BD97C;
            --brand-light: #3CE890;
            --brand-dark: #1FA860;
            --accent-yellow: #F6C945;
            --accent-orange: #FF6B35;
            --night: #0F1211;
            --night-panel: #151A18;
            --night-card: #1A201D;
            --lightbg: #F4F7F5;
            --text-primary: #E6EEE9;
            --text-secondary: #9DBAA7;
            --text-muted: #6F7F78;
            --border-dark: rgba(43, 217, 124, 0.15);
            --border-subtle: rgba(157, 186, 167, 0.18);
            --radius-card: 16px;
            --radius-btn: 999px;
            --shadow-light: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.45);
            --transition-smooth: all 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 {
            font-family: var(--font-sans, system-ui, -apple-system, 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif);
            background-color: var(--night);
            color: var(--text-primary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-gap {
            padding: 88px 0;
        }

        .section-gap-sm {
            padding: 56px 0;
        }

        .nav-blur {
            background: rgba(15, 18, 17, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            padding: 6px 2px;
        }

        .nav-link:hover {
            color: var(--text-primary);
        }
        .nav-link.active {
            color: var(--brand);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        .lang-region-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        .lang-region-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--text-primary);
        }

        .btn-primary {
            background: var(--brand);
            color: #0F1211;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            letter-spacing: 0.5px;
        }
        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: 0 4px 20px rgba(43, 217, 124, 0.35);
            transform: translateY(-1px);
            color: #0F1211;
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.5);
            outline-offset: 2px;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-1px);
        }
        .btn-outline:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.35);
            outline-offset: 2px;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(43, 217, 124, 0.14);
            color: var(--brand);
            border: 1px solid rgba(43, 217, 124, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 201, 69, 0.12);
            color: var(--accent-yellow);
            border: 1px solid rgba(246, 201, 69, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-ended {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(157, 186, 167, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(157, 186, 167, 0.2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .dot-live {
            width: 8px;
            height: 8px;
            background: var(--brand);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
            display: inline-block;
        }
        .dot-upcoming {
            width: 8px;
            height: 8px;
            background: var(--accent-yellow);
            border-radius: 50%;
            display: inline-block;
        }
        .dot-ended {
            width: 8px;
            height: 8px;
            background: var(--text-muted);
            border-radius: 50%;
            display: inline-block;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.55;
                transform: scale(1.25);
            }
        }

        .card-dark {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            transition: var(--transition-smooth);
        }
        .card-dark:hover {
            border-color: rgba(43, 217, 124, 0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .card-light {
            background: #ffffff;
            border: 1px solid rgba(15, 18, 17, 0.08);
            border-radius: var(--radius-card);
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-light);
        }
        .card-light:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .hero-overlay {
            background: linear-gradient(180deg, rgba(15, 18, 17, 0.72) 0%, rgba(15, 18, 17, 0.88) 55%, rgba(15, 18, 17, 0.95) 100%);
        }

        .hero-schedule-bar {
            background: rgba(21, 26, 24, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid var(--border-subtle);
            border-radius: 14px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(43, 217, 124, 0.4) transparent;
        }
        .hero-schedule-bar::-webkit-scrollbar {
            height: 4px;
        }
        .hero-schedule-bar::-webkit-scrollbar-thumb {
            background: rgba(43, 217, 124, 0.4);
            border-radius: 4px;
        }

        .schedule-chip {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 10px 16px;
            font-size: 13px;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            white-space: nowrap;
            cursor: pointer;
        }
        .schedule-chip:hover {
            border-color: rgba(43, 217, 124, 0.4);
            background: rgba(43, 217, 124, 0.07);
            color: var(--text-primary);
        }

        .search-input-dark {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(157, 186, 167, 0.3);
            border-radius: var(--radius-btn);
            padding: 14px 22px;
            font-size: 15px;
            color: var(--text-primary);
            width: 100%;
            max-width: 520px;
            transition: var(--transition-smooth);
            outline: none;
        }
        .search-input-dark::placeholder {
            color: var(--text-muted);
        }
        .search-input-dark:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(43, 217, 124, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 20px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            transition: var(--transition-smooth);
            user-select: none;
        }
        .faq-question:hover {
            color: var(--brand);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-in-out, padding 0.3s ease-in-out;
            padding: 0 0;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.9;
        }
        .faq-answer.active {
            max-height: 300px;
            padding: 0 0 20px 16px;
            border-left: 3px solid var(--brand);
            margin-left: 4px;
            padding-left: 16px;
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }
        .faq-question:hover .faq-icon {
            border-color: var(--brand);
            color: var(--brand);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--brand);
            font-family: var(--font-mono, 'SF Mono', Consolas, monospace);
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .timeline-line {
            position: relative;
            padding-left: 28px;
        }
        .timeline-line::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: rgba(43, 217, 124, 0.3);
            border-radius: 2px;
        }

        .timeline-dot {
            position: absolute;
            left: 3px;
            top: 8px;
            width: 14px;
            height: 14px;
            background: var(--brand);
            border-radius: 50%;
            border: 3px solid rgba(43, 217, 124, 0.25);
            transition: var(--transition-smooth);
        }

        .testimonial-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px;
            transition: var(--transition-smooth);
            position: relative;
        }
        .testimonial-card:hover {
            border-color: rgba(43, 217, 124, 0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .tag-cloud a {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            margin: 3px 4px;
            transition: var(--transition-smooth);
        }
        .tag-cloud a:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--brand);
            text-decoration: none;
        }

        .mobile-menu {
            display: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
        }
        .mobile-menu.open {
            max-height: 600px;
        }
        .mobile-menu a,
        .mobile-menu button {
            display: block;
            width: 100%;
            text-align: left;
            padding: 14px 0;
            color: var(--text-primary);
            font-size: 15px;
            font-weight: 500;
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }
        .mobile-menu a:hover {
            color: var(--brand);
            padding-left: 8px;
        }

        .footer-link {
            color: var(--text-secondary);
            font-size: 14px;
            transition: var(--transition-smooth);
            display: block;
            padding: 4px 0;
        }
        .footer-link:hover {
            color: var(--brand);
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(157, 186, 167, 0.15);
            padding-top: 24px;
            margin-top: 32px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
        }

        .match-badge {
            background: rgba(43, 217, 124, 0.1);
            color: var(--brand);
            border-radius: 6px;
            padding: 3px 10px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-left: 6px;
        }

        .news-item {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }
        .news-item:hover {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            padding-left: 12px;
        }
        .news-item:last-child {
            border-bottom: none;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand);
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .read-more-btn:hover {
            color: var(--brand-light);
            gap: 10px;
            text-decoration: underline;
        }

        .glow-ring {
            box-shadow: 0 0 40px rgba(43, 217, 124, 0.12);
        }

        .bg-image-hero {
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .section-title-underline {
            display: inline-block;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title-underline::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 48px;
            height: 3px;
            background: var(--brand);
            border-radius: 3px;
        }

        .number-mono {
            font-family: var(--font-mono, 'SF Mono', Consolas, monospace);
        }

        /* Mobile responsiveness */
        @media (max-width: 1024px) {
            .section-gap {
                padding: 64px 0;
            }
            .section-gap-sm {
                padding: 40px 0;
            }
            .stat-number {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }
            .mobile-nav-toggle {
                display: flex !important;
            }
            .mobile-menu {
                display: block;
            }
            .section-gap {
                padding: 48px 0;
            }
            .section-gap-sm {
                padding: 32px 0;
            }
            .container-custom {
                padding: 0 16px;
            }
            .hero-title {
                font-size: 28px !important;
                line-height: 1.3 !important;
            }
            .hero-subtitle {
                font-size: 15px !important;
            }
            .stat-number {
                font-size: 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr !important;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
            }
            .news-item {
                flex-direction: column;
            }
            .btn-primary,
            .btn-outline {
                width: 100%;
                padding: 12px 16px;
                font-size: 14px;
            }
            .hero-schedule-bar {
                border-radius: 10px;
            }
            .mobile-menu a,
            .mobile-menu button {
                font-size: 14px;
            }
        }

        @media (min-width: 769px) {
            .mobile-nav-toggle {
                display: none !important;
            }
            .desktop-nav {
                display: flex !important;
            }
            .mobile-menu {
                display: none !important;
            }
        }

/* roulang page: category2 */
:root {
            --brand: #2BD97C;
            --brand-light: #3CE890;
            --brand-dark: #1FA860;
            --accent-yellow: #F6C945;
            --accent-orange: #FF6B35;
            --night: #0F1211;
            --night-panel: #151A18;
            --night-card: #1A201D;
            --lightbg: #F4F7F5;
            --text-primary: #E6EEE9;
            --text-secondary: #9DBAA7;
            --text-muted: #6F7F78;
            --border-dark: rgba(43, 217, 124, 0.15);
            --border-subtle: rgba(157, 186, 167, 0.18);
            --radius-card: 16px;
            --radius-btn: 999px;
            --shadow-light: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.45);
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: system-ui, -apple-system, 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--night);
            color: var(--text-primary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-gap {
            padding: 88px 0;
        }
        .section-gap-sm {
            padding: 56px 0;
        }

        .nav-blur {
            background: rgba(15, 18, 17, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            padding: 6px 2px;
        }
        .nav-link:hover {
            color: var(--text-primary);
        }
        .nav-link.active {
            color: var(--brand);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        .lang-region-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        .lang-region-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--text-primary);
        }

        .btn-primary {
            background: var(--brand);
            color: #0F1211;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            letter-spacing: 0.5px;
        }
        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: 0 4px 20px rgba(43, 217, 124, 0.35);
            transform: translateY(-1px);
            color: #0F1211;
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.5);
            outline-offset: 2px;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-1px);
        }
        .btn-outline:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.35);
            outline-offset: 2px;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(43, 217, 124, 0.14);
            color: var(--brand);
            border: 1px solid rgba(43, 217, 124, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand);
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 201, 69, 0.12);
            color: var(--accent-yellow);
            border: 1px solid rgba(246, 201, 69, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-upcoming::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-yellow);
        }

        .badge-ended {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(157, 186, 167, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(157, 186, 167, 0.2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-ended::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--text-muted);
        }

        .live-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .live-card:hover {
            border-color: rgba(43, 217, 124, 0.35);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .live-card .cover-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #1A201D;
            position: relative;
        }
        .live-card .cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .live-card:hover .cover-wrap img {
            transform: scale(1.04);
        }

        .live-card-row {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        .live-card-row:hover {
            border-color: rgba(43, 217, 124, 0.35);
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }
        .live-card-row .cover-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #1A201D;
            position: relative;
            flex-shrink: 0;
        }
        .live-card-row .cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .live-card-row:hover .cover-wrap img {
            transform: scale(1.03);
        }
        @media (min-width: 768px) {
            .live-card-row {
                flex-direction: row;
            }
            .live-card-row .cover-wrap {
                width: 240px;
                aspect-ratio: 16/9;
            }
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 7px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }
        .filter-chip:hover {
            background: rgba(43, 217, 124, 0.08);
            border-color: rgba(43, 217, 124, 0.25);
            color: var(--text-primary);
        }
        .filter-chip.active {
            background: rgba(43, 217, 124, 0.16);
            border-color: rgba(43, 217, 124, 0.45);
            color: var(--brand);
            font-weight: 600;
        }

        .side-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
        }
        .side-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .side-card h3::before {
            content: '';
            width: 3px;
            height: 18px;
            background: var(--brand);
            border-radius: 3px;
        }

        .rank-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(157, 186, 167, 0.1);
            transition: var(--transition-smooth);
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-item:hover {
            padding-left: 6px;
        }
        .rank-num {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-secondary);
        }
        .rank-num.top1 { background: rgba(43, 217, 124, 0.2); color: var(--brand); }
        .rank-num.top2 { background: rgba(246, 201, 69, 0.18); color: var(--accent-yellow); }
        .rank-num.top3 { background: rgba(255, 107, 53, 0.18); color: var(--accent-orange); }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud a {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 12px;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }
        .tag-cloud a:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--brand);
        }

        .pagination-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            padding: 0 14px;
        }
        .pagination-btn:hover {
            background: rgba(43, 217, 124, 0.1);
            border-color: rgba(43, 217, 124, 0.3);
            color: var(--text-primary);
        }
        .pagination-btn.active {
            background: var(--brand);
            color: #0F1211;
            border-color: var(--brand);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }
        .breadcrumb a:hover {
            color: var(--brand);
        }
        .breadcrumb .sep {
            color: var(--text-muted);
            font-size: 11px;
        }
        .breadcrumb .current {
            color: var(--brand);
            font-weight: 500;
        }

        .schedule-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .schedule-dot.live { background: var(--brand); }
        .schedule-dot.upcoming { background: var(--accent-yellow); }
        .schedule-dot.ended { background: var(--text-muted); }

        .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: var(--transition-smooth);
        }
        .footer-link:hover {
            color: var(--brand);
            padding-left: 4px;
        }

        .mobile-menu {
            display: none;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none !important;
            }
            .mobile-menu-btn {
                display: flex !important;
            }
            .mobile-menu.open {
                display: block !important;
            }
        }
        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none !important;
            }
            .mobile-menu {
                display: none !important;
            }
            .desktop-nav {
                display: flex !important;
            }
        }

/* roulang page: category1 */
:root {
            --brand: #2BD97C;
            --brand-light: #3CE890;
            --brand-dark: #1FA860;
            --accent-yellow: #F6C945;
            --accent-orange: #FF6B35;
            --night: #0F1211;
            --night-panel: #151A18;
            --night-card: #1A201D;
            --lightbg: #F4F7F5;
            --text-primary: #E6EEE9;
            --text-secondary: #9DBAA7;
            --text-muted: #6F7F78;
            --border-dark: rgba(43, 217, 124, 0.15);
            --border-subtle: rgba(157, 186, 167, 0.18);
            --radius-card: 16px;
            --radius-btn: 999px;
            --shadow-light: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.45);
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: system-ui, -apple-system, 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--night);
            color: var(--text-primary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-gap {
            padding: 72px 0;
        }

        .section-gap-sm {
            padding: 48px 0;
        }

        .nav-blur {
            background: rgba(15, 18, 17, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            padding: 6px 2px;
        }

        .nav-link:hover {
            color: var(--text-primary);
        }

        .nav-link.active {
            color: var(--brand);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        .lang-region-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            white-space: nowrap;
        }

        .lang-region-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--text-primary);
        }

        .btn-primary {
            background: var(--brand);
            color: #0F1211;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: 0 4px 20px rgba(43, 217, 124, 0.35);
            transform: translateY(-1px);
            color: #0F1211;
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.5);
            outline-offset: 2px;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-1px);
        }

        .btn-outline:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.35);
            outline-offset: 2px;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(43, 217, 124, 0.14);
            color: var(--brand);
            border: 1px solid rgba(43, 217, 124, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }

        .badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 201, 69, 0.12);
            color: var(--accent-yellow);
            border: 1px solid rgba(246, 201, 69, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }

        .badge-ended {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(157, 186, 167, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(157, 186, 167, 0.2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }

        .card-live {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-light);
        }

        .card-live:hover {
            border-color: rgba(43, 217, 124, 0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }

        .filter-chip:hover {
            background: rgba(43, 217, 124, 0.08);
            border-color: rgba(43, 217, 124, 0.25);
            color: var(--text-primary);
        }

        .filter-chip.active {
            background: var(--brand);
            color: #0F1211;
            border-color: var(--brand);
            font-weight: 600;
        }

        .sidebar-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: var(--transition-smooth);
        }

        .sidebar-card:hover {
            border-color: rgba(43, 217, 124, 0.25);
        }

        .tag-chip {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            padding: 5px 14px;
            font-size: 12px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            margin: 0 6px 8px 0;
        }

        .tag-chip:hover {
            background: rgba(43, 217, 124, 0.1);
            border-color: rgba(43, 217, 124, 0.3);
            color: var(--brand);
        }

        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--night-card);
            transition: var(--transition-smooth);
        }

        .faq-item:hover {
            border-color: rgba(43, 217, 124, 0.25);
        }

        .faq-question {
            width: 100%;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            background: none;
            border: none;
            text-align: left;
            gap: 16px;
            transition: var(--transition-smooth);
        }

        .faq-question:hover {
            color: var(--brand);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.8;
        }

        .faq-answer-inner {
            padding: 0 22px 20px;
            border-left: 3px solid var(--brand);
            margin-left: 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            color: var(--text-muted);
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--brand);
        }

        .footer-link {
            display: block;
            color: var(--text-muted);
            font-size: 13px;
            margin-bottom: 10px;
            transition: var(--transition-smooth);
        }

        .footer-link:hover {
            color: var(--brand);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }

        .breadcrumb a:hover {
            color: var(--brand);
        }

        .breadcrumb .separator {
            color: var(--text-muted);
        }

        .breadcrumb .current {
            color: var(--brand);
            font-weight: 500;
        }

        .list-card {
            display: flex;
            flex-direction: column;
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
            margin-bottom: 16px;
        }

        .list-card:hover {
            border-color: rgba(43, 217, 124, 0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .list-card-image {
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .list-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .list-card:hover .list-card-image img {
            transform: scale(1.04);
        }

        .list-card-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .league-tag {
            display: inline-block;
            background: rgba(43, 217, 124, 0.1);
            color: var(--brand);
            border-radius: 4px;
            padding: 2px 10px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 8px;
            width: fit-content;
        }

        .pagination-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .pagination-btn:hover {
            background: rgba(43, 217, 124, 0.1);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--brand);
        }

        .pagination-btn.active-page {
            background: var(--brand);
            color: #0F1211;
            border-color: var(--brand);
            font-weight: 600;
        }

        @media (min-width: 768px) {
            .list-card {
                flex-direction: row;
                align-items: stretch;
            }
            .list-card-image {
                width: 240px;
                height: 180px;
            }
            .list-card-image img {
                height: 100%;
                object-fit: cover;
            }
        }

        @media (max-width: 767px) {
            .list-card-image {
                height: 200px;
            }
            .desktop-nav {
                display: none !important;
            }
            .mobile-menu-btn {
                display: flex !important;
            }
            .section-gap {
                padding: 48px 0;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none !important;
            }
            .mobile-menu {
                display: none !important;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .desktop-nav {
                gap: 1rem !important;
            }
            .desktop-nav .nav-link {
                font-size: 13px;
            }
            .lang-region-btn {
                padding: 6px 10px;
                font-size: 12px;
            }
        }

        .mobile-menu-btn {
            display: none;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            color: var(--text-primary);
            flex-shrink: 0;
        }

        .mobile-menu-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
        }

        .mobile-menu {
            display: none;
            background: var(--night-panel);
            border-bottom: 1px solid var(--border-subtle);
            padding: 16px 24px 20px;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu .nav-link {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 15px;
        }

        .mobile-menu .nav-link:last-of-type {
            border-bottom: none;
        }

        .cta-section {
            background: linear-gradient(135deg, #151A18 0%, #0F1211 40%, #1A201D 100%);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(43, 217, 124, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 20%;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(246, 201, 69, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

/* roulang page: category3 */
:root {
            --brand: #2BD97C;
            --brand-light: #3CE890;
            --brand-dark: #1FA860;
            --accent-yellow: #F6C945;
            --accent-orange: #FF6B35;
            --night: #0F1211;
            --night-panel: #151A18;
            --night-card: #1A201D;
            --lightbg: #F4F7F5;
            --text-primary: #E6EEE9;
            --text-secondary: #9DBAA7;
            --text-muted: #6F7F78;
            --border-dark: rgba(43, 217, 124, 0.15);
            --border-subtle: rgba(157, 186, 167, 0.18);
            --radius-card: 16px;
            --radius-btn: 999px;
            --shadow-light: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.45);
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: system-ui, -apple-system, 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--night);
            color: var(--text-primary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-gap {
            padding: 64px 0;
        }

        .section-gap-sm {
            padding: 40px 0;
        }

        .nav-blur {
            background: rgba(15, 18, 17, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            padding: 6px 2px;
        }

        .nav-link:hover {
            color: var(--text-primary);
        }

        .nav-link.active {
            color: var(--brand);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }

        .lang-region-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }

        .lang-region-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--text-primary);
        }

        .btn-primary {
            background: var(--brand);
            color: #0F1211;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: 0 4px 20px rgba(43, 217, 124, 0.35);
            transform: translateY(-1px);
            color: #0F1211;
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.5);
            outline-offset: 2px;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-1px);
        }

        .btn-outline:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.35);
            outline-offset: 2px;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(43, 217, 124, 0.14);
            color: var(--brand);
            border: 1px solid rgba(43, 217, 124, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 201, 69, 0.12);
            color: var(--accent-yellow);
            border: 1px solid rgba(246, 201, 69, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .badge-ended {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(157, 186, 167, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(157, 186, 167, 0.2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand);
            display: inline-block;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .card-live-item {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }

        .card-live-item:hover {
            border-color: rgba(43, 217, 124, 0.45);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .card-live-item .cover-wrap {
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #0F1211;
            position: relative;
        }

        .card-live-item .cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .card-live-item:hover .cover-wrap img {
            transform: scale(1.05);
        }

        .card-live-item .live-content {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }

        .filter-chip:hover {
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--text-primary);
        }

        .filter-chip.active {
            background: var(--brand);
            color: #0F1211;
            border-color: var(--brand);
            font-weight: 600;
        }

        .side-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 22px;
            margin-bottom: 22px;
        }

        .side-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 18px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .side-list-item {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            align-items: flex-start;
        }

        .side-list-item:last-child {
            border-bottom: none;
        }

        .side-list-item .rank {
            font-weight: 800;
            color: var(--brand);
            font-size: 18px;
            min-width: 28px;
            text-align: center;
            line-height: 1;
        }

        .side-list-item .info h4 {
            margin: 0 0 4px 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
        }

        .side-list-item .info p {
            margin: 0;
            font-size: 12px;
            color: var(--text-muted);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-cloud a {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            padding: 5px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }

        .tag-cloud a:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--brand);
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
        }

        .breadcrumb-nav a:hover {
            color: var(--brand);
        }

        .breadcrumb-nav .separator {
            color: var(--text-muted);
        }

        .breadcrumb-nav .current {
            color: var(--brand);
        }

        .page-header-section {
            position: relative;
            overflow: hidden;
            padding: 40px 0 32px;
            background: var(--night-panel);
            border-bottom: 1px solid var(--border-subtle);
        }

        .page-header-section .glow-bg {
            position: absolute;
            top: -120px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(43, 217, 124, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-link {
            display: block;
            font-size: 14px;
            color: var(--text-muted);
            padding: 4px 0;
            transition: var(--transition-smooth);
        }

        .footer-link:hover {
            color: var(--brand);
            transform: translateX(2px);
        }

        .footer-grid {
            display: grid;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .footer-bottom a {
            color: var(--text-muted);
        }

        .footer-bottom a:hover {
            color: var(--brand);
        }

        .btn-load-more {
            background: transparent;
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 14px 32px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .btn-load-more:hover {
            background: rgba(43, 217, 124, 0.1);
            border-color: var(--brand);
            color: var(--brand);
        }

        /* 移动端导航 */
        #mobile-menu {
            display: none;
        }

        @media (max-width: 1024px) {
            .desktop-nav {
                display: none !important;
            }
            #mobile-menu {
                display: block;
            }
            .mobile-nav-panel {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: var(--night-panel);
                border-bottom: 1px solid var(--border-subtle);
                z-index: 40;
                padding: 20px 24px;
            }
            .mobile-nav-panel.open {
                display: block;
            }
        }

        @media (min-width: 1025px) {
            #mobile-menu {
                display: none;
            }
            .mobile-nav-panel {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
            .section-gap {
                padding: 44px 0;
            }
            .section-gap-sm {
                padding: 28px 0;
            }
            .page-header-section {
                padding: 28px 0 24px;
            }
            .card-live-item .cover-wrap {
                aspect-ratio: 16/9;
            }
            .filter-chip {
                padding: 6px 14px;
                font-size: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .card-live-item .live-content {
                padding: 16px;
            }
            .btn-primary {
                padding: 10px 20px;
                font-size: 14px;
            }
            .btn-outline {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* 列表项横向布局（桌面） */
        .live-list-row {
            display: flex;
            gap: 20px;
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 16px;
            transition: var(--transition-smooth);
            margin-bottom: 16px;
        }

        .live-list-row:hover {
            border-color: rgba(43, 217, 124, 0.45);
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }

        .live-list-row .cover-thumb {
            width: 240px;
            min-width: 240px;
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
            background: #0F1211;
        }

        .live-list-row .cover-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .live-list-row:hover .cover-thumb img {
            transform: scale(1.04);
        }

        .live-list-row .content-area {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 0;
        }

        @media (max-width: 768px) {
            .live-list-row {
                flex-direction: column;
            }
            .live-list-row .cover-thumb {
                width: 100%;
                min-width: unset;
            }
        }

/* roulang page: category4 */
:root {
            --brand: #2BD97C;
            --brand-light: #3CE890;
            --brand-dark: #1FA860;
            --accent-yellow: #F6C945;
            --accent-orange: #FF6B35;
            --night: #0F1211;
            --night-panel: #151A18;
            --night-card: #1A201D;
            --lightbg: #F4F7F5;
            --text-primary: #E6EEE9;
            --text-secondary: #9DBAA7;
            --text-muted: #6F7F78;
            --border-dark: rgba(43, 217, 124, 0.15);
            --border-subtle: rgba(157, 186, 167, 0.18);
            --radius-card: 16px;
            --radius-btn: 999px;
            --shadow-light: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.45);
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: system-ui, -apple-system, 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--night);
            color: var(--text-primary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: var(--brand);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-gap {
            padding: 88px 0;
        }
        .section-gap-sm {
            padding: 56px 0;
        }
        .nav-blur {
            background: rgba(15, 18, 17, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }
        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            padding: 6px 2px;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--text-primary);
        }
        .nav-link.active {
            color: var(--brand);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }
        .lang-region-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 14px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            white-space: nowrap;
        }
        .lang-region-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--text-primary);
        }
        .btn-primary {
            background: var(--brand);
            color: #0F1211;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: 0 4px 20px rgba(43, 217, 124, 0.35);
            transform: translateY(-1px);
            color: #0F1211;
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.5);
            outline-offset: 2px;
        }
        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            white-space: nowrap;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-1px);
        }
        .btn-outline:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.35);
            outline-offset: 2px;
        }
        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(43, 217, 124, 0.14);
            color: var(--brand);
            border: 1px solid rgba(43, 217, 124, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 201, 69, 0.12);
            color: var(--accent-yellow);
            border: 1px solid rgba(246, 201, 69, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .badge-ended {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(157, 186, 167, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(157, 186, 167, 0.2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
        }
        .filter-chip {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.03);
            transition: var(--transition-smooth);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .filter-chip:hover {
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--text-primary);
        }
        .filter-chip.active-chip {
            background: rgba(43, 217, 124, 0.15);
            border-color: var(--brand);
            color: var(--brand);
        }
        .schedule-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
        }
        .schedule-card:hover {
            border-color: rgba(43, 217, 124, 0.35);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .sidebar-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            transition: var(--transition-smooth);
        }
        .sidebar-card:hover {
            border-color: rgba(43, 217, 124, 0.25);
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(157, 186, 167, 0.1);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .ranking-item:hover {
            padding-left: 4px;
        }
        .ranking-item:last-child {
            border-bottom: none;
        }
        .ranking-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-pill {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 6px;
            padding: 4px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .tag-pill:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--brand);
        }
        .page-btn {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            min-width: 38px;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .page-btn:hover {
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--text-primary);
        }
        .page-btn.active-page {
            background: var(--brand);
            border-color: var(--brand);
            color: #0F1211;
            font-weight: 700;
        }
        .faq-item {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: rgba(43, 217, 124, 0.3);
        }
        .faq-question {
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            gap: 16px;
            user-select: none;
            transition: var(--transition-smooth);
        }
        .faq-question:hover {
            color: var(--brand);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(43, 217, 124, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: var(--transition-smooth);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
            padding: 0 22px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.8;
            border-left: 3px solid transparent;
        }
        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 0 22px 18px 22px;
            border-left-color: var(--brand);
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(43, 217, 124, 0.25);
            color: var(--brand);
        }
        .bcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .bcrumb a {
            color: var(--text-muted);
            transition: var(--transition-smooth);
        }
        .bcrumb a:hover {
            color: var(--brand);
        }
        .bcrumb .sep {
            color: var(--text-muted);
            opacity: 0.5;
        }
        .bcrumb .current {
            color: var(--text-secondary);
        }
        .footer-link {
            display: block;
            color: var(--text-muted);
            font-size: 14px;
            padding: 5px 0;
            transition: var(--transition-smooth);
        }
        .footer-link:hover {
            color: var(--brand);
            padding-left: 6px;
        }
        .hero-overlay {
            background: linear-gradient(135deg, rgba(15, 18, 17, 0.92) 0%, rgba(15, 18, 17, 0.75) 40%, rgba(15, 18, 17, 0.55) 100%);
        }
        .desktop-nav {
            display: flex;
        }
        .mobile-menu {
            display: none;
        }
        @media (max-width: 1024px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: flex;
            }
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid var(--border-subtle);
                border-radius: 10px;
                color: var(--text-primary);
                cursor: pointer;
                transition: var(--transition-smooth);
            }
            .mobile-menu-btn:hover {
                background: rgba(43, 217, 124, 0.12);
                border-color: rgba(43, 217, 124, 0.35);
            }
            .mobile-menu-panel {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 18, 17, 0.97);
                border-bottom: 1px solid var(--border-subtle);
                padding: 16px 24px 24px;
                display: none;
                flex-direction: column;
                gap: 12px;
                z-index: 60;
            }
            .mobile-menu-panel.open {
                display: flex;
            }
        }
        @media (min-width: 1025px) {
            .mobile-menu-btn {
                display: none;
            }
            .mobile-menu-panel {
                display: none !important;
            }
        }
        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
            .section-gap {
                padding: 56px 0;
            }
            .section-gap-sm {
                padding: 36px 0;
            }
        }

/* roulang page: category5 */
:root {
            --brand: #2BD97C;
            --brand-light: #3CE890;
            --brand-dark: #1FA860;
            --accent-yellow: #F6C945;
            --accent-orange: #FF6B35;
            --night: #0F1211;
            --night-panel: #151A18;
            --night-card: #1A201D;
            --lightbg: #F4F7F5;
            --text-primary: #E6EEE9;
            --text-secondary: #9DBAA7;
            --text-muted: #6F7F78;
            --border-dark: rgba(43, 217, 124, 0.15);
            --border-subtle: rgba(157, 186, 167, 0.18);
            --radius-card: 16px;
            --radius-btn: 999px;
            --shadow-light: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.45);
            --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: system-ui, -apple-system, 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--night);
            color: var(--text-primary);
            line-height: 1.8;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-gap {
            padding: 88px 0;
        }
        .section-gap-sm {
            padding: 56px 0;
        }

        /* Nav */
        .nav-blur {
            background: rgba(15, 18, 17, 0.88);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }
        .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            padding: 6px 2px;
        }
        .nav-link:hover {
            color: var(--text-primary);
        }
        .nav-link.active {
            color: var(--brand);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
        }
        .lang-region-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-btn);
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        .lang-region-btn:hover {
            background: rgba(43, 217, 124, 0.12);
            border-color: rgba(43, 217, 124, 0.35);
            color: var(--text-primary);
        }

        /* Buttons */
        .btn-primary {
            background: var(--brand);
            color: #0F1211;
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            letter-spacing: 0.5px;
        }
        .btn-primary:hover {
            background: var(--brand-light);
            box-shadow: 0 4px 20px rgba(43, 217, 124, 0.35);
            transform: translateY(-1px);
            color: #0F1211;
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.5);
            outline-offset: 2px;
        }
        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(157, 186, 167, 0.4);
            border-radius: var(--radius-btn);
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--brand);
            color: var(--brand);
            transform: translateY(-1px);
        }
        .btn-outline:focus-visible {
            outline: 3px solid rgba(43, 217, 124, 0.35);
            outline-offset: 2px;
        }
        .btn-sm {
            padding: 8px 18px;
            font-size: 13px;
        }

        /* Badges */
        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(43, 217, 124, 0.14);
            color: var(--brand);
            border: 1px solid rgba(43, 217, 124, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }
        .badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(246, 201, 69, 0.12);
            color: var(--accent-yellow);
            border: 1px solid rgba(246, 201, 69, 0.3);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }
        .badge-ended {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(157, 186, 167, 0.1);
            color: var(--text-muted);
            border: 1px solid rgba(157, 186, 167, 0.2);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }
        .dot-green {
            width: 6px;
            height: 6px;
            background: var(--brand);
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        .dot-yellow {
            width: 6px;
            height: 6px;
            background: var(--accent-yellow);
            border-radius: 50%;
            display: inline-block;
        }
        .dot-gray {
            width: 6px;
            height: 6px;
            background: var(--text-muted);
            border-radius: 50%;
            display: inline-block;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        /* Cards & lists */
        .card-dark {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .card-dark:hover {
            border-color: rgba(43, 217, 124, 0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .cover-16-9 {
            aspect-ratio: 16 / 9;
            object-fit: cover;
            width: 100%;
        }

        /* Sidebar */
        .sidebar-card {
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: var(--transition-smooth);
        }
        .sidebar-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(157, 186, 167, 0.08);
            transition: var(--transition-smooth);
        }
        .rank-item:last-child {
            border-bottom: none;
        }
        .rank-item:hover {
            background: rgba(43, 217, 124, 0.06);
            padding-left: 6px;
            border-radius: 8px;
        }
        .rank-num {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-muted);
            width: 28px;
            flex-shrink: 0;
            text-align: center;
        }
        .rank-num.top {
            color: var(--accent-yellow);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud a {
            font-size: 12px;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            padding: 5px 12px;
            border-radius: 999px;
            transition: var(--transition-smooth);
        }
        .tag-cloud a:hover {
            color: var(--brand);
            border-color: rgba(43, 217, 124, 0.4);
            background: rgba(43, 217, 124, 0.1);
        }

        /* Filter pills */
        .filter-pill {
            background: transparent;
            border: 1px solid rgba(157, 186, 167, 0.35);
            border-radius: var(--radius-btn);
            padding: 7px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
            white-space: nowrap;
        }
        .filter-pill:hover {
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--text-primary);
            background: rgba(43, 217, 124, 0.08);
        }
        .filter-pill.active {
            background: var(--brand);
            color: #0F1211;
            border-color: var(--brand);
            font-weight: 700;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
            background: var(--night-card);
            transition: var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: rgba(43, 217, 124, 0.3);
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            transition: var(--transition-smooth);
        }
        .faq-question:hover {
            color: var(--brand);
        }
        .faq-question:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: -2px;
        }
        .faq-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            color: var(--text-muted);
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--brand);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 20px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.8;
        }
        .faq-item.open .faq-answer {
            max-height: 280px;
            padding: 0 20px 18px 20px;
            border-left: 3px solid var(--brand);
            margin-left: 20px;
            padding-left: 16px;
        }

        /* Footer */
        .footer-link {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            padding: 5px 0;
            transition: var(--transition-smooth);
        }
        .footer-link:hover {
            color: var(--brand);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--brand);
        }
        .breadcrumb .sep {
            color: var(--text-muted);
            font-size: 12px;
        }
        .breadcrumb .current {
            color: var(--text-primary);
        }

        /* Pagination */
        .pagination {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        .page-btn {
            min-width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .page-btn:hover {
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--text-primary);
        }
        .page-btn.active {
            background: var(--brand);
            color: #0F1211;
            border-color: var(--brand);
            font-weight: 700;
        }
        .page-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Hero for category */
        .cat-hero {
            background: linear-gradient(180deg, rgba(15, 18, 17, 0.9) 0%, rgba(15, 18, 17, 0.75) 60%, var(--night) 100%),
                url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            padding: 64px 0 48px;
            position: relative;
            border-bottom: 1px solid var(--border-subtle);
        }
        .cat-hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 18, 17, 0.55);
            pointer-events: none;
        }

        /* List item */
        .news-list-item {
            display: flex;
            gap: 20px;
            padding: 18px;
            background: var(--night-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            transition: var(--transition-smooth);
            margin-bottom: 14px;
        }
        .news-list-item:hover {
            border-color: rgba(43, 217, 124, 0.4);
            box-shadow: var(--shadow-light);
            transform: translateY(-1px);
        }
        .news-list-item .thumb {
            flex-shrink: 0;
            width: 200px;
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
        }
        .news-list-item .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-list-item:hover .thumb img {
            transform: scale(1.05);
        }
        .news-list-content {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .news-list-content h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px 0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-content p {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0 0 12px 0;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .news-meta .sep-dot {
            width: 3px;
            height: 3px;
            background: var(--text-muted);
            border-radius: 50%;
        }
        .news-link-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--brand);
            margin-top: auto;
            transition: var(--transition-smooth);
        }
        .news-link-btn:hover {
            color: var(--brand-light);
            gap: 10px;
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, rgba(43, 217, 124, 0.08) 0%, rgba(15, 18, 17, 0.95) 45%, var(--night) 100%);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(43, 217, 124, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Mobile nav */
        .mobile-nav {
            display: none;
        }
        .hamburger-btn {
            background: transparent;
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-primary);
            transition: var(--transition-smooth);
        }
        .hamburger-btn:hover {
            border-color: rgba(43, 217, 124, 0.4);
            color: var(--brand);
        }
        .mobile-menu {
            display: none;
            background: var(--night-panel);
            border-bottom: 1px solid var(--border-subtle);
            padding: 16px 24px 24px;
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 10px 0;
            font-size: 15px;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(157, 186, 167, 0.08);
        }
        .mobile-menu a.active {
            color: var(--brand);
        }

        /* Responsive */
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex !important;
            }
        }
        @media (max-width: 767px) {
            .desktop-nav {
                display: none !important;
            }
            .mobile-nav {
                display: block;
            }
            .section-gap {
                padding: 56px 0;
            }
            .section-gap-sm {
                padding: 40px 0;
            }
            .news-list-item {
                flex-direction: column;
                gap: 14px;
                padding: 14px;
            }
            .news-list-item .thumb {
                width: 100%;
                aspect-ratio: 16/9;
            }
            .cat-hero {
                padding: 40px 0 32px;
            }
            .filter-pill {
                padding: 6px 12px;
                font-size: 12px;
            }
            .cta-section {
                padding: 48px 0;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 520px) {
            .container-custom {
                padding: 0 16px;
            }
            .news-list-item {
                padding: 12px;
            }
            .news-list-content h3 {
                font-size: 15px;
            }
            .filter-pill {
                padding: 5px 10px;
                font-size: 11px;
            }
        }
