/* roulang page: index */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        a:hover {
            color: var(--color-primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }

        .font-tabular {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .header-scrolled {
            background: rgba(15, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--color-primary);
        }

        .nav-link.active {
            color: var(--color-text);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }

        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }

        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }

        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }

        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }

        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }

        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }

        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .card-md {
            border-radius: var(--radius-md);
        }

        .card-sm {
            border-radius: var(--radius-sm);
        }

        .section {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .section-tight {
            padding-top: 48px;
            padding-bottom: 48px;
        }

        .section-alt {
            background: #14141B;
        }

        .gradient-hero {
            background:
                radial-gradient(ellipse 55% 40% at 25% 20%, rgba(124, 77, 255, 0.35) 0%, transparent 70%),
                radial-gradient(ellipse 45% 35% at 75% 30%, rgba(0, 230, 118, 0.15) 0%, transparent 70%),
                var(--color-bg);
        }

        .gradient-accent-weak {
            background: linear-gradient(135deg, rgba(255, 109, 0, 0.06) 0%, rgba(124, 77, 255, 0.06) 50%, rgba(0, 230, 118, 0.05) 100%);
        }

        .gradient-brand-border {
            background:
                linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
                linear-gradient(135deg, var(--color-primary), var(--color-tertiary)) border-box;
            border: 1px solid transparent;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--color-primary) 0%, #B388FF 65%, var(--color-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .img-placeholder {
            background: #1E1E28;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--color-text-secondary);
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .score-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            transition: border-color 0.3s ease, background 0.3s ease;
            cursor: default;
        }

        .score-item:hover {
            border-color: rgba(0, 230, 118, 0.4);
            background: rgba(0, 230, 118, 0.04);
        }

        .score-big {
            font-size: 1.65rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.02em;
        }

        .score-team {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text);
        }

        .score-meta {
            font-size: 0.78rem;
            color: var(--color-text-secondary);
        }

        .faq-item {
            border-bottom: 1px solid var(--border-color);
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(0, 230, 118, 0.3);
        }

        .faq-button {
            width: 100%;
            background: none;
            border: none;
            color: var(--color-text);
            font-weight: 700;
            font-size: 1rem;
            padding: 18px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: color 0.3s ease;
            text-align: left;
        }

        .faq-button:hover {
            color: var(--color-primary);
        }

        .faq-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            color: var(--color-text-secondary);
            font-size: 1.1rem;
            font-weight: 600;
            flex-shrink: 0;
            transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        .faq-icon.open {
            border-color: var(--color-primary);
            color: var(--color-primary);
            transform: rotate(45deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .faq-content.open {
            max-height: 300px;
            padding-bottom: 20px;
        }

        .fixed-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 15, 20, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(0, 230, 118, 0.35);
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
            padding: 10px 24px;
        }

        .horizontal-scroll {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
        }

        .horizontal-scroll::-webkit-scrollbar {
            height: 4px;
        }

        .horizontal-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .horizontal-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 999px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
        }

        .news-featured-card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            cursor: pointer;
        }

        .news-featured-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .news-list-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 16px 18px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            transition: border-color 0.3s ease, background 0.3s ease;
            cursor: pointer;
        }

        .news-list-item:hover {
            border-color: rgba(0, 230, 118, 0.35);
            background: rgba(0, 230, 118, 0.04);
        }

        .news-date {
            font-size: 0.75rem;
            color: var(--color-accent);
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .news-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-text);
            line-height: 1.5;
        }

        .news-summary {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
        }

        .hamburger-menu {
            display: none;
        }

        public_@media (max-width: 767px) {
            .hamburger-menu {
                display: flex;
                align-items: center;
            }

            .desktop-nav {
                display: none;
            }

            .mobile-nav-open {
                display: flex;
                flex-direction: column;
                background: rgba(15, 15, 20, 0.98);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-radius: var(--radius-md);
                border: 1px solid var(--border-color);
                padding: 16px;
                margin-top: 12px;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            }

            .mobile-nav-open .nav-link {
                padding: 10px 16px;
                font-size: 0.9rem;
                border-bottom: 1px solid var(--border-color);
            }

            .mobile-nav-open .nav-link:last-child {
                border-bottom: none;
            }

            .mobile-nav-open .nav-link.active::after {
                display: none;
            }
        }

        @media (max-width: 1023px) {
            .news-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding-top: 56px;
                padding-bottom: 56px;
            }

            .section-tight {
                padding-top: 36px;
                padding-bottom: 36px;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .section {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            .section-tight {
                padding-top: 28px;
                padding-bottom: 28px;
            }

            .btn-primary,
            .btn-accent,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .fixed-bottom-bar {
                padding: 8px 12px;
            }

            .fixed-bottom-bar .btn-primary {
                width: auto;
                padding: 8px 18px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 520px) {
            .score-big {
                font-size: 1.25rem;
            }

            .horizontal-scroll {
                gap: 10px;
            }
        }

@media (max-width: 767px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .news-featured-card img {
                height: 180px;
            }
            .grid.grid-cols-2.md\\:grid-cols-4.gap-4 {
                grid-template-columns: 1fr 1fr;
            }
            .grid.grid-cols-1.md\\:grid-cols-3.gap-5 {
                grid-template-columns: 1fr;
            }
            .grid.grid-cols-2.md\\:grid-cols-6.gap-4 {
                grid-template-columns: 1fr 1fr;
            }
            .grid.grid-cols-2.sm\\:grid-cols-4.gap-4 {
                grid-template-columns: 1fr 1fr;
            }
            .fixed-bottom-bar .container {
                justify-content: center;
            }
        }

/* roulang page: category2 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .header-scrolled {
            background: rgba(15, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link.active {
            color: var(--color-text);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }
        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }
        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }
        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }
        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .card-md {
            border-radius: var(--radius-md);
        }
        .card-sm {
            border-radius: var(--radius-sm);
        }
        .score-number {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            letter-spacing: -0.02em;
        }
        .season-tab {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 600;
            background: transparent;
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .season-tab:hover {
            color: var(--color-text);
            border-color: rgba(0, 230, 118, 0.4);
        }
        .season-tab.active {
            background: rgba(0, 230, 118, 0.12);
            color: var(--color-primary);
            border-color: rgba(0, 230, 118, 0.5);
        }
        .focus-visible-custom:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }
        .lpl-hero-bg {
            background:
                radial-gradient(ellipse at 75% 20%, rgba(124, 77, 255, 0.22) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 70%, rgba(0, 230, 118, 0.12) 0%, transparent 50%),
                linear-gradient(180deg, #121218 0%, #0F0F14 100%);
        }
        .sidebar-sticky {
            position: sticky;
            top: 90px;
        }
        .mobile-nav-panel-open {
            display: block !important;
        }
        @media (max-width: 767px) {
            .desktop-nav {
                display: none !important;
            }
            .hamburger-menu {
                display: inline-flex !important;
            }
            .sidebar-sticky {
                position: static;
            }
            .lpl-hero-bg {
                background: linear-gradient(180deg, #121218 0%, #0F0F14 100%);
            }
        }
        @media (min-width: 768px) {
            .hamburger-menu {
                display: none !important;
            }
        }

/* roulang page: category1 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .header-scrolled {
            background: rgba(15, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link.active {
            color: var(--color-text);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }
        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }
        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }
        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }
        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .card-md {
            border-radius: var(--radius-md);
        }
        .card-sm {
            border-radius: var(--radius-sm);
        }
        .tabular-nums {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            letter-spacing: -0.01em;
        }
        .score-num {
            font-family: 'SF Mono', 'Cascadia Code', 'Roboto Mono', 'Consolas', 'Courier New', monospace;
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            letter-spacing: -0.02em;
        }
        .hero-gradient {
            background:
                radial-gradient(ellipse 70% 55% at 75% 20%, rgba(124, 77, 255, 0.3) 0%, transparent 55%),
                radial-gradient(ellipse 60% 45% at 20% 70%, rgba(0, 230, 118, 0.15) 0%, transparent 50%),
                linear-gradient(180deg, #0F0F14 0%, #15151D 100%);
        }
        .list-row {
            display: grid;
            grid-template-columns: 100px 1fr 70px 90px 90px;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }
        .list-row:hover {
            border-color: rgba(0, 230, 118, 0.35);
            transform: translateY(-1px);
            box-shadow: var(--shadow-card-hover);
        }
        .section-title {
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--color-text);
            margin-bottom: 6px;
        }
        .section-desc {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }
        .score-badge-live {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
            letter-spacing: 0.04em;
        }
        .score-badge-finished {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
            letter-spacing: 0.04em;
        }
        .score-badge-upcoming {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
            letter-spacing: 0.04em;
        }
        .focus-visible-ring:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        @media (max-width: 767px) {
            .list-row {
                grid-template-columns: 1fr;
                gap: 6px;
                padding: 12px 14px;
            }
            .list-row .mobile-flex {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
            }
            .section-title {
                font-size: 1.15rem;
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .list-row {
                grid-template-columns: 85px 1fr 65px 75px 80px;
                gap: 8px;
                padding: 12px 14px;
            }
        }

/* roulang page: category3 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a:hover {
            color: var(--color-primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .header-scrolled {
            background: rgba(15, 15, 20, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link.active {
            color: var(--color-text);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }
        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }
        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }
        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }

        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .card-md {
            border-radius: var(--radius-md);
        }
        .card-sm {
            border-radius: var(--radius-sm);
        }

        .score-num {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum' 1;
            letter-spacing: 0.04em;
        }
        .mono-num {
            font-family: 'SF Mono', 'Roboto Mono', 'Menlo', 'Consolas', monospace;
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum' 1;
        }

        .focus-visible-ring:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }

        .kpl-hero-banner {
            background: linear-gradient(145deg, rgba(124, 77, 255, 0.12) 0%, rgba(0, 230, 118, 0.08) 40%, rgba(15, 15, 20, 0.9) 75%), var(--color-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
        }
        .kpl-hero-banner::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 230, 118, 0.18) 0%, transparent 65%);
            pointer-events: none;
        }

        .kpl-focus-match {
            background: linear-gradient(135deg, #1A1A22 0%, #14141B 30%, #121219 60%, #1A1A22 100%);
            border: 1px solid rgba(0, 230, 118, 0.28);
            border-radius: var(--radius-lg);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        .kpl-focus-match::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-tertiary) 50%, var(--color-accent) 100%);
        }

        .kpl-score-row {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 16px;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            transition: background 0.25s ease, border-color 0.25s ease;
        }
        .kpl-score-row:last-child {
            border-bottom: none;
        }
        .kpl-score-row:hover {
            background: rgba(0, 230, 118, 0.04);
            border-color: rgba(0, 230, 118, 0.2);
        }

        .kpl-stat-bar {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 16px;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }
        .kpl-stat-bar:hover {
            border-color: rgba(0, 230, 118, 0.3);
            transform: translateX(3px);
        }

        .kpl-faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 16px 0;
        }
        .kpl-faq-item:last-child {
            border-bottom: none;
        }
        .kpl-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-text);
            transition: color 0.25s ease;
            user-select: none;
        }
        .kpl-faq-question:hover {
            color: var(--color-primary);
        }
        .kpl-faq-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 230, 118, 0.12);
            color: var(--color-primary);
            font-size: 1.1rem;
            font-weight: 700;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .kpl-faq-item.open .kpl-faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 230, 118, 0.25);
        }
        .kpl-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            padding-top: 0;
            color: var(--color-text-secondary);
            font-size: 0.92rem;
            line-height: 1.8;
        }
        .kpl-faq-item.open .kpl-faq-answer {
            max-height: 400px;
            opacity: 1;
            padding-top: 12px;
        }

        .kpl-timeline-item {
            position: relative;
            padding-left: 28px;
            padding-bottom: 20px;
            border-left: 2px solid var(--border-color);
            margin-left: 10px;
        }
        .kpl-timeline-item:last-child {
            border-left-color: transparent;
            padding-bottom: 0;
        }
        .kpl-timeline-dot {
            position: absolute;
            left: -7px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--color-primary);
            box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
        }

        .kpl-bottom-fixed-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 15, 20, 0.94);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-top: 1px solid rgba(0, 230, 118, 0.25);
            box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
        }

        .kpl-hero-img-wrap img {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-card);
        }

        .kpl-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        @media (max-width: 1023px) {
            .kpl-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .kpl-score-row {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 12px 14px;
            }
            .kpl-score-row .score-center {
                order: 3;
                width: 100%;
                justify-content: center;
            }
            .kpl-stats-grid {
                grid-template-columns: 1fr;
            }
            .kpl-hero-banner {
                border-radius: var(--radius-md);
            }
        }

        .kpl-legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }

        .kpl-schedule-tab {
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid var(--border-color);
            background: transparent;
            color: var(--color-text-secondary);
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .kpl-schedule-tab:hover {
            border-color: rgba(0, 230, 118, 0.4);
            color: var(--color-primary);
        }
        .kpl-schedule-tab.active {
            background: rgba(0, 230, 118, 0.15);
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .kpl-divider {
            height: 1px;
            background: var(--border-color);
            margin: 32px 0;
        }

/* roulang page: category5 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .header-scrolled {
            background: rgba(15, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link.active {
            color: var(--color-text);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }
        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }
        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }
        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }
        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .card-md {
            border-radius: var(--radius-md);
        }
        .card-sm {
            border-radius: var(--radius-sm);
        }
        .tabular-nums {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            font-family: 'SF Mono', 'Menlo', 'Consolas', 'Fira Code', monospace;
        }
        .focus-visible-custom:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }
        .hero-gradient-bg {
            background:
                radial-gradient(ellipse at 20% 20%, rgba(124, 77, 255, 0.28) 0%, transparent 60%),
                radial-gradient(ellipse at 85% 70%, rgba(0, 230, 118, 0.12) 0%, transparent 50%),
                #0F0F14;
        }
        .stat-bar {
            background: linear-gradient(135deg, rgba(26, 26, 34, 0.9) 0%, rgba(15, 15, 20, 0.9) 100%);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
        }
        .table-styled {
            width: 100%;
            border-collapse: collapse;
            background: rgba(26, 26, 34, 0.5);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .table-styled thead th {
            background: rgba(15, 15, 20, 0.6);
            color: var(--color-text-secondary);
            font-size: 0.8rem;
            font-weight: 600;
            text-align: left;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-color);
            white-space: nowrap;
        }
        .table-styled tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .table-styled tbody tr {
            transition: background 0.2s ease;
        }
        .table-styled tbody tr:hover {
            background: rgba(0, 230, 118, 0.04);
        }
        .table-styled tbody tr:last-child td {
            border-bottom: none;
        }
        .tab-btn {
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            background: transparent;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .tab-btn:hover {
            color: var(--color-primary);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .tab-btn.active {
            background: rgba(0, 230, 118, 0.12);
            color: var(--color-primary);
            border-color: rgba(0, 230, 118, 0.35);
        }
        .faq-item {
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 20px 0;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            color: var(--color-text);
            font-size: 1rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-primary);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            line-height: 1.8;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 230, 118, 0.1);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 20px;
        }
        .footer-sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 15, 20, 0.92);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(0, 230, 118, 0.3);
            box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
        }
        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .table-styled {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
            }
            .table-styled thead,
            .table-styled tbody {
                display: table;
                width: 100%;
                min-width: 640px;
            }
            .tab-btn {
                padding: 6px 14px;
                font-size: 0.75rem;
            }
            .footer-sticky-cta .container {
                padding-top: 8px;
                padding-bottom: 8px;
            }
        }
        .score-divider {
            color: var(--color-text-secondary);
            font-size: 0.85rem;
            padding: 0 4px;
        }
        .team-name {
            font-weight: 600;
            color: var(--color-text);
        }
        .team-name.winner {
            color: var(--color-primary);
        }
        .region-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 6px;
        }
        .region-dot.cn {
            background: #FF6D00;
        }
        .region-dot.eu {
            background: #7C4DFF;
        }
        .region-dot.sea {
            background: #00E676;
        }
        .region-dot.cis {
            background: #F5F5F7;
        }
        .hero-bg-image {
            background-image: linear-gradient(rgba(15, 15, 20, 0.8), rgba(15, 15, 20, 0.92)), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
        }

/* roulang page: category6 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .header-scrolled {
            background: rgba(15, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link.active {
            color: var(--color-text);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }
        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }
        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }
        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }
        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .card-md {
            border-radius: var(--radius-md);
        }
        .card-sm {
            border-radius: var(--radius-sm);
        }
        .section-heading {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.3;
            color: var(--color-text);
        }
        .sub-heading {
            font-size: 1.05rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            max-width: 720px;
        }
        .score-num {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
        }
        .timeline-item {
            position: relative;
            padding-left: 28px;
            padding-bottom: 28px;
            border-left: 2px solid var(--border-color);
            margin-left: 8px;
        }
        .timeline-item:last-child {
            border-left-color: transparent;
            padding-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: -8px;
            top: 4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--color-surface);
            border: 2px solid var(--color-primary);
        }
        .timeline-dot.finished {
            border-color: var(--color-text-secondary);
        }
        .timeline-dot.upcoming {
            border-color: var(--color-tertiary);
        }
        .hero-bg {
            background:
                radial-gradient(ellipse 80% 60% at 20% 10%, rgba(124, 77, 255, 0.22) 0%, transparent 60%),
                radial-gradient(ellipse 70% 50% at 85% 80%, rgba(0, 230, 118, 0.13) 0%, transparent 55%),
                linear-gradient(180deg, #0F0F14 0%, #14141C 100%);
        }
        .data-stat {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            font-weight: 700;
            font-size: 2rem;
            color: var(--color-primary);
            line-height: 1.2;
        }
        .data-stat-label {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            letter-spacing: 0.03em;
        }
        .focus-card {
            background: linear-gradient(145deg, rgba(26, 26, 34, 0.95) 0%, rgba(20, 20, 28, 0.95) 100%);
            border: 1px solid rgba(0, 230, 118, 0.35);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .focus-card .team-name {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        .focus-card .team-score {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            font-family: 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;
            font-weight: 800;
            font-size: 3.2rem;
            line-height: 1;
        }
        .vs-divider {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--color-text-secondary);
            letter-spacing: 0.15em;
        }
        .hover-glow:hover {
            box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
            border-color: rgba(0, 230, 118, 0.45);
        }
        .gradient-strip {
            background: linear-gradient(90deg, #0F0F14 0%, #00E676 30%, #7C4DFF 70%, #0F0F14 100%);
            height: 3px;
            border-radius: 999px;
        }
        @media (max-width: 768px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .focus-card .team-score {
                font-size: 2.4rem;
            }
            .focus-card .team-name {
                font-size: 0.95rem;
            }
            .data-stat {
                font-size: 1.6rem;
            }
            .timeline-item {
                padding-left: 20px;
                margin-left: 4px;
            }
            .timeline-dot {
                left: -7px;
                width: 12px;
                height: 12px;
            }
        }

/* roulang page: category4 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .header-scrolled {
            background: rgba(15, 15, 20, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--color-primary);
        }
        .nav-link.active {
            color: var(--color-text);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }
        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }
        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }
        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }
        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }
        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }
        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }
        .card-md {
            border-radius: var(--radius-md);
        }
        .card-sm {
            border-radius: var(--radius-sm);
        }
        .score-num {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            letter-spacing: -0.01em;
            font-weight: 800;
        }
        .map-card-bg {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            background: #14141B;
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        .map-card-bg:hover {
            border-color: rgba(0, 230, 118, 0.35);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            transform: translateY(-3px);
        }
        .map-card-bg .map-thumb {
            height: 130px;
            width: 100%;
            object-fit: cover;
            display: block;
            border-radius: var(--radius-md) var(--radius-md) 0 0;
            background: #1F1F29;
        }
        .map-card-bg .map-overlay {
            position: absolute;
            inset: 0;
            border-radius: var(--radius-md);
            background: linear-gradient(180deg, rgba(15,15,20,0.1) 0%, rgba(15,15,20,0.85) 100%);
            pointer-events: none;
        }
        .match-row {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        .match-row:hover {
            border-color: rgba(0, 230, 118, 0.3);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
            transform: translateY(-1px);
        }
        .match-row .team-name {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--color-text);
            letter-spacing: 0.02em;
        }
        .match-row .team-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            margin-right: 8px;
            letter-spacing: 0.05em;
        }
        .match-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 100px;
        }
        .match-center .match-score {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: 0.02em;
        }
        .match-center .match-status-text {
            font-size: 0.75rem;
            color: var(--color-text-secondary);
            letter-spacing: 0.03em;
        }
        .deep-bg-section {
            background: #12121A;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .hero-backdrop {
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero-backdrop::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,15,20,0.92) 0%, rgba(15,15,20,0.75) 50%, rgba(15,15,20,0.6) 100%);
        }
        .hero-backdrop > * {
            position: relative;
            z-index: 1;
        }
        .focus-visible-ring:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-text);
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0;
            transition: color 0.2s ease;
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 12px;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            color: var(--color-text-secondary);
            font-size: 0.92rem;
            line-height: 1.8;
            padding-top: 0;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-top: 12px;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .bottom-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(15, 15, 20, 0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid var(--border-color);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
        }
        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .match-row {
                grid-template-columns: 1fr auto 1fr;
                gap: 8px;
                padding: 14px 12px;
            }
            .match-row .team-name {
                font-size: 0.85rem;
            }
            .match-center .match-score {
                font-size: 1.3rem;
            }
            .map-card-bg .map-thumb {
                height: 100px;
            }
            .bottom-cta-bar {
                padding: 8px 12px;
            }
            .bottom-cta-bar .cta-text {
                font-size: 0.8rem;
            }
            .bottom-cta-bar .btn-primary {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .match-row {
                padding: 16px 18px;
            }
        }

/* roulang page: category7 */
:root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }

        /* roulang page: category7 */
        :root {
            --color-bg: #0F0F14;
            --color-surface: #1A1A22;
            --color-primary: #00E676;
            --color-accent: #FF6D00;
            --color-tertiary: #7C4DFF;
            --color-text: #F5F5F7;
            --color-text-secondary: #B0B0B8;
            --border-color: rgba(255, 255, 255, 0.08);
            --radius-lg: 20px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 14px 36px rgba(0, 0, 0, 0.5);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.75;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        a:hover {
            color: var(--color-primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .header-scrolled {
            background: rgba(15, 15, 20, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-link {
            position: relative;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            padding: 4px 0;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--color-primary);
        }

        .nav-link.active {
            color: var(--color-text);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-primary);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 0 rgba(0, 230, 118, 0);
        }

        .btn-primary:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(0, 230, 118, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 11px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            box-shadow: 0 0 12px rgba(0, 230, 118, 0.15);
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--color-accent);
            color: #0F0F14;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        }

        .btn-accent:hover {
            filter: brightness(1.1);
            box-shadow: 0 0 16px rgba(255, 109, 0, 0.4);
            transform: translateY(-1px);
            color: #0F0F14;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.6;
            white-space: nowrap;
        }

        .badge-live {
            background: rgba(0, 230, 118, 0.15);
            color: var(--color-primary);
            border: 1px solid rgba(0, 230, 118, 0.35);
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-text-secondary);
            border: 1px solid var(--border-color);
        }

        .badge-upcoming {
            background: rgba(124, 77, 255, 0.15);
            color: #B388FF;
            border: 1px solid rgba(124, 77, 255, 0.35);
        }

        .badge-accent {
            background: rgba(255, 109, 0, 0.15);
            color: var(--color-accent);
            border: 1px solid rgba(255, 109, 0, 0.35);
        }

        .card {
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }

        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(0, 230, 118, 0.3);
        }

        .card-md {
            border-radius: var(--radius-md);
        }

        .card-sm {
            border-radius: var(--radius-sm);
        }

        .stat-num {
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum';
            letter-spacing: -0.01em;
        }

        .chart-bar {
            transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
            min-width: 4px;
            border-radius: 4px;
        }

        .chart-bar-primary {
            background: linear-gradient(90deg, rgba(0, 230, 118, 0.65), var(--color-primary));
        }

        .chart-bar-accent {
            background: linear-gradient(90deg, rgba(255, 109, 0, 0.65), var(--color-accent));
        }

        .chart-bar-tertiary {
            background: linear-gradient(90deg, rgba(124, 77, 255, 0.65), var(--color-tertiary));
        }

        .chart-vline {
            border-right: 1px dashed rgba(255, 255, 255, 0.15);
        }

        .benchmark-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 6px;
        }

        .chart-tooltip {
            position: relative;
        }

        .chart-tooltip::after {
            content: attr(data-value);
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-surface);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 2px 8px;
            font-size: 0.7rem;
            color: var(--color-text-secondary);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
            white-space: nowrap;
        }

        .chart-tooltip:hover::after {
            opacity: 1;
        }

        .skeleton-chart {
            background: rgba(255, 255, 255, 0.03);
            border: 1px dashed rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
        }

        .skeleton-chart::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
            animation: shimmer 2.5s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .focus-visible-ring:focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }

        .hamburger-menu {
            transition: background 0.25s ease, border-color 0.25s ease;
        }

        .hamburger-menu:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 230, 118, 0.4);
        }

        .section-gap {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        @media (max-width: 768px) {
            .section-gap {
                padding-top: 48px;
                padding-bottom: 48px;
            }
        }

        .divider-glow {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.4), transparent);
        }

        .data-callout {
            background: linear-gradient(135deg, rgba(0, 230, 118, 0.06), rgba(124, 77, 255, 0.08));
            border: 1px solid rgba(0, 230, 118, 0.2);
            border-radius: var(--radius-md);
            padding: 20px 24px;
        }

        .grid-lines {
            background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.04) 39px, rgba(255, 255, 255, 0.04) 40px);
        }

        .chart-axis-label {
            font-size: 0.7rem;
            color: var(--color-text-secondary);
            letter-spacing: 0.02em;
        }

        @media (max-width: 767px) {
            .chart-col-label {
                font-size: 0.6rem;
                writing-mode: vertical-rl;
                letter-spacing: 0.05em;
            }
            .chart-col-label-horizontal {
                font-size: 0.6rem;
            }
        }
