/* roulang page: index */
:root {
            --bg-primary: #0E1013;
            --bg-card: #161A20;
            --bg-footer: #0B0D10;
            --accent: #00D68F;
            --accent-bright: #00E5A5;
            --accent-soft: rgba(0, 214, 143, 0.08);
            --amber: #F5A623;
            --amber-soft: rgba(245, 166, 35, 0.12);
            --text-primary: #F5F7FA;
            --text-secondary: #9AA3AE;
            --text-muted: #5C6670;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-strong: rgba(255, 255, 255, 0.12);
            --border-accent: rgba(0, 214, 143, 0.4);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06);
            --font-sans: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --header-height: 64px;
            --sidebar-width: 240px;
            --sidebar-gap: 40px;
            --content-max: 1200px;
            --section-pad: 72px 0;
            --section-pad-mobile: 48px 0;
            --transition: 0.2s ease-in-out;
            --focus-ring: 0 0 0 3px rgba(0, 214, 143, 0.35);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        ::selection {
            background: rgba(0, 214, 143, 0.3);
            color: var(--text-primary);
        }

        :focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-pad);
            position: relative;
        }

        .section-alt {
            background-color: rgba(255, 255, 255, 0.015);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-header {
            margin-bottom: 28px;
        }

        .section-header .label-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-badge);
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-live {
            background: var(--amber);
            color: #1A1400;
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .badge-upcoming {
            background: rgba(0, 214, 143, 0.16);
            color: var(--accent);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(0.7);
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--accent);
            color: #0A0F0D;
        }

        .btn-primary:hover {
            background: var(--accent-bright);
            box-shadow: 0 4px 24px rgba(0, 214, 143, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid var(--border-strong);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.22);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 8px;
        }

        .btn-lg {
            padding: 14px 32px;
            font-size: 16px;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            overflow: hidden;
        }

        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-accent);
        }

        .card-hover:focus-within {
            box-shadow: var(--focus-ring);
            border-color: var(--accent);
        }

        .text-accent {
            color: var(--accent);
        }

        .text-muted {
            color: var(--text-muted);
        }

        .text-secondary {
            color: var(--text-secondary);
        }

        .mono {
            font-family: var(--font-mono);
            font-variant-numeric: tabular-nums;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(14, 16, 19, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            max-width: 100%;
            padding: 0 24px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent);
            color: #0A0F0D;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 800;
            font-family: var(--font-mono);
            letter-spacing: -0.05em;
            flex-shrink: 0;
        }

        .logo:hover .logo-icon {
            background: var(--accent-bright);
            transition: background var(--transition);
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 0 14px;
            height: 40px;
            width: 280px;
            max-width: 40vw;
            flex-shrink: 1;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .header-search:focus-within {
            border-color: var(--accent);
            box-shadow: var(--focus-ring);
        }

        .header-search svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .header-search input {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 14px;
            width: 100%;
            height: 100%;
            padding: 0;
        }

        .header-search input::placeholder {
            color: var(--text-muted);
            font-size: 13px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .version-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 4px 12px;
            font-size: 12px;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition);
        }

        .version-badge:hover {
            color: var(--text-primary);
            border-color: var(--border-strong);
        }

        .version-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            background: transparent;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger:hover span {
            background: var(--accent);
        }

        .hamburger:hover {
            border-color: var(--border-strong);
        }

        /* Layout */
        .page-wrapper {
            display: flex;
            min-height: calc(100vh - var(--header-height));
        }

        .sidebar {
            width: var(--sidebar-width);
            background: var(--bg-primary);
            border-right: 1px solid var(--border-subtle);
            position: fixed;
            top: var(--header-height);
            left: 0;
            bottom: 0;
            overflow-y: auto;
            padding: 24px 16px 32px;
            z-index: 900;
            transition: transform 0.25s ease-in-out;
        }

        .sidebar-heading {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0 12px 10px;
        }

        .sidebar-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            font-size: 15px;
            color: var(--text-secondary);
            border-radius: 8px;
            position: relative;
            transition: all var(--transition);
            font-weight: 500;
        }

        .sidebar-nav a:hover {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
        }

        .sidebar-nav a.active {
            background: var(--accent-soft);
            color: var(--accent);
            font-weight: 600;
        }

        .sidebar-nav a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 24px;
            background: var(--accent);
            border-radius: 0 3px 3px 0;
        }

        .sidebar-nav .nav-icon {
            font-size: 16px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
            font-family: var(--font-mono);
            color: var(--text-muted);
        }

        .sidebar-nav a.active .nav-icon {
            color: var(--accent);
        }

        .sidebar-footer {
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
        }

        .sidebar-footer a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            font-size: 13px;
            color: var(--text-muted);
            border-radius: 6px;
            transition: all var(--transition);
        }

        .sidebar-footer a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.03);
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 850;
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .sidebar-overlay.visible {
            display: block;
            opacity: 1;
        }

        .main-content {
            flex: 1;
            margin-left: var(--sidebar-width);
            min-width: 0;
            padding-bottom: 0;
        }

        .main-content.home-layout {
            margin-left: 0;
        }

        .main-content.with-sidebar {
            margin-left: var(--sidebar-width);
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border-subtle);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(14, 16, 19, 0.95) 0%, rgba(14, 16, 19, 0.7) 40%, rgba(14, 16, 19, 0.5) 60%, rgba(14, 16, 19, 0.85) 100%);
            z-index: 1;
        }

        .hero-grid-pattern {
            position: absolute;
            inset: 0;
            z-index: 1;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 80px 0 100px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: var(--accent-soft);
            border: 1px solid rgba(0, 214, 143, 0.2);
            border-radius: 999px;
            padding: 6px 16px;
            margin-bottom: 20px;
            letter-spacing: 0.06em;
        }

        .hero-label .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
        }

        .hero-title {
            font-size: 44px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .hero-title .accent-text {
            color: var(--accent);
            position: relative;
        }

        .hero-desc {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hero-countdown {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px 20px;
            max-width: 480px;
        }

        .countdown-label {
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
            font-weight: 500;
        }

        .countdown-timer {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .countdown-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 44px;
        }

        .countdown-value {
            font-size: 28px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text-primary);
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .countdown-unit-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .countdown-sep {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-muted);
            font-family: var(--font-mono);
            line-height: 1;
        }

        /* Live score strip */
        .live-strip-wrap {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            margin-top: 16px;
        }

        .live-strip-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-subtle);
            flex-wrap: wrap;
            gap: 8px;
        }

        .live-strip-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .live-strip-title .live-indicator {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--amber);
            font-size: 12px;
            font-weight: 600;
        }

        .live-strip-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 16px 20px;
            scroll-snap-type: x mandatory;
            scrollbar-width: thin;
            scrollbar-color: var(--border-strong) transparent;
        }

        .live-strip-scroll::-webkit-scrollbar {
            height: 4px;
        }

        .live-strip-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .live-strip-scroll::-webkit-scrollbar-thumb {
            background: var(--border-strong);
            border-radius: 2px;
        }

        .score-card-mini {
            flex: 0 0 220px;
            scroll-snap-align: start;
            background: rgba(255, 255, 255, 0.025);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 14px 16px;
            transition: all var(--transition);
        }

        .score-card-mini:hover {
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, 0.04);
        }

        .score-card-mini .match-league {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .score-card-mini .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 6px;
        }

        .score-card-mini .team-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            flex: 1;
            text-align: right;
        }

        .score-card-mini .team-name:last-child {
            text-align: left;
        }

        .score-card-mini .match-score {
            font-size: 20px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--accent);
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }

        .score-card-mini .match-time {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }

        /* Category grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 28px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            color: var(--text-primary);
            text-decoration: none;
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-accent);
            background: rgba(22, 26, 32, 0.9);
        }

        .category-card:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        .category-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 14px;
            font-family: var(--font-mono);
            transition: all var(--transition);
        }

        .category-card:hover .category-icon {
            background: rgba(0, 214, 143, 0.15);
            transform: scale(1.05);
        }

        .category-name {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .category-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Stats grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .stat-item {
            text-align: center;
            padding: 24px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            transition: all var(--transition);
        }

        .stat-item:hover {
            border-color: var(--border-strong);
            transform: translateY(-2px);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--accent);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
        }

        .step-item {
            text-align: center;
            padding: 24px 12px;
            position: relative;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-soft);
            border: 1px solid rgba(0, 214, 143, 0.25);
            color: var(--accent);
            font-size: 18px;
            font-weight: 700;
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: all var(--transition);
        }

        .step-item:hover .step-number {
            background: rgba(0, 214, 143, 0.18);
            transform: scale(1.08);
        }

        .step-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .step-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .steps-connector {
            position: absolute;
            top: 44px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
            z-index: 0;
        }

        .step-item {
            z-index: 1;
        }

        /* Focus matches */
        .focus-matches {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .focus-card {
            overflow: hidden;
            border-radius: var(--radius-card);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition);
        }

        .focus-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-strong);
        }

        .focus-card-img {
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .focus-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .focus-card:hover .focus-card-img img {
            transform: scale(1.05);
        }

        .focus-card-body {
            padding: 18px 20px 20px;
        }

        .focus-card-league {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .focus-card-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
        }

        .focus-card-team {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            flex: 1;
            text-align: center;
        }

        .focus-card-score {
            font-size: 28px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--accent);
            flex-shrink: 0;
            letter-spacing: -0.02em;
        }

        .focus-card-events {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* League wall */
        .league-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .league-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 999px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
        }

        .league-badge:hover {
            color: var(--text-primary);
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, 0.04);
        }

        .league-badge .league-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

        /* About section */
        .about-section {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 40px 44px;
            box-shadow: var(--shadow-card);
        }

        .about-section h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

        .about-section p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 14px;
        }

        .about-section p:last-child {
            margin-bottom: 0;
        }

        /* News list */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 16px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            transition: all var(--transition);
            align-items: flex-start;
        }

        .news-item:hover {
            border-color: var(--border-strong);
            background: rgba(22, 26, 32, 0.85);
        }

        .news-item-img {
            width: 72px;
            height: 56px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-item-content {
            flex: 1;
            min-width: 0;
        }

        .news-item-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            transition: color var(--transition);
            display: block;
        }

        .news-item:hover .news-item-title {
            color: var(--accent);
        }

        .news-item-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* Scenarios */
        .scenario-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .scenario-card {
            padding: 24px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            transition: all var(--transition);
            text-align: center;
        }

        .scenario-card:hover {
            border-color: var(--border-strong);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .scenario-icon {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .scenario-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .scenario-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Tools */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .tool-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            transition: all var(--transition);
        }

        .tool-card:hover {
            border-color: var(--border-strong);
            background: rgba(22, 26, 32, 0.85);
        }

        .tool-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--accent-soft);
            border: 1px solid rgba(0, 214, 143, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .tool-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .tool-info p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 820px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item.open {
            border-left: 3px solid var(--accent);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            transition: background var(--transition);
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            font-family: inherit;
        }

        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-icon {
            font-size: 18px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
            font-family: var(--font-mono);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 16px;
        }

        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* Guarantee */
        .guarantee-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px 28px;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 180px;
        }

        .guarantee-icon {
            font-size: 26px;
            flex-shrink: 0;
        }

        .guarantee-text h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .guarantee-text p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(0, 214, 143, 0.08) 0%, rgba(14, 16, 19, 0.9) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 44px 36px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .cta-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .testimonial-card {
            padding: 22px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            transition: all var(--transition);
        }

        .testimonial-card:hover {
            border-color: var(--border-strong);
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testimonial-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--accent-soft);
            border: 1px solid rgba(0, 214, 143, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
            font-family: var(--font-mono);
            flex-shrink: 0;
        }

        .testimonial-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .footer-brand .logo-icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-copyright .domain {
            color: var(--text-secondary);
        }

        .footer-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            max-width: 480px;
            text-align: right;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .sidebar {
                transform: translateX(-100%);
                width: 280px;
                box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
                z-index: 950;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content.with-sidebar,
            .main-content.home-layout {
                margin-left: 0;
            }

            .hamburger {
                display: flex;
            }

            .header-search {
                width: 200px;
                max-width: 30vw;
            }

            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .steps-connector {
                display: none;
            }

            .focus-matches {
                grid-template-columns: repeat(2, 1fr);
            }

            .scenario-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--section-pad-mobile);
            }

            .hero {
                min-height: auto;
                padding: 60px 0 40px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-desc {
                font-size: 15px;
            }

            .hero-countdown {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .countdown-timer {
                gap: 8px;
            }

            .countdown-value {
                font-size: 22px;
            }

            .section-title {
                font-size: 22px;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .focus-matches {
                grid-template-columns: 1fr;
            }

            .scenario-grid {
                grid-template-columns: 1fr;
            }

            .tools-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .guarantee-strip {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .about-section {
                padding: 28px 24px;
            }

            .about-section p {
                font-size: 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-disclaimer {
                text-align: left;
            }

            .header-search {
                display: none;
            }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .news-item {
                flex-direction: column;
                gap: 10px;
            }

            .news-item-img {
                width: 100%;
                height: 140px;
            }

            .cta-section {
                padding: 32px 20px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .cta-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .score-card-mini {
                flex: 0 0 180px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .hero-title {
                font-size: 26px;
            }

            .logo {
                font-size: 18px;
            }

            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

            .version-badge {
                font-size: 11px;
                padding: 3px 8px;
            }

            .countdown-value {
                font-size: 18px;
            }

            .countdown-unit {
                min-width: 32px;
            }

            .countdown-sep {
                font-size: 18px;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 20px;
            }

            .section-header .label-tag {
                font-size: 11px;
            }

            .btn {
                font-size: 14px;
                padding: 10px 20px;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0E1013;
            --bg-card: #161A20;
            --bg-footer: #0B0D10;
            --accent: #00D68F;
            --accent-bright: #00E5A5;
            --accent-soft: rgba(0, 214, 143, 0.08);
            --amber: #F5A623;
            --amber-soft: rgba(245, 166, 35, 0.12);
            --text-primary: #F5F7FA;
            --text-secondary: #9AA3AE;
            --text-muted: #5C6670;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-strong: rgba(255, 255, 255, 0.12);
            --border-accent: rgba(0, 214, 143, 0.4);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06);
            --font-sans: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --header-height: 64px;
            --sidebar-width: 240px;
            --sidebar-gap: 40px;
            --content-max: 1200px;
            --section-pad: 72px 0;
            --section-pad-mobile: 48px 0;
            --transition: 0.2s ease-in-out;
            --focus-ring: 0 0 0 3px rgba(0, 214, 143, 0.35);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            width: 100%;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-pad);
            position: relative;
        }

        .section-alt {
            background-color: rgba(255, 255, 255, 0.015);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-header {
            margin-bottom: 28px;
        }

        .section-header .label-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-badge);
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-live {
            background: var(--amber);
            color: #1A1400;
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .badge-upcoming {
            background: rgba(0, 214, 143, 0.16);
            color: var(--accent);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--accent);
            color: #0A0F0D;
        }

        .btn-primary:hover {
            background: var(--accent-bright);
            box-shadow: 0 4px 24px rgba(0, 214, 143, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid var(--border-strong);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.24);
        }

        .btn:focus,
        a:focus {
            outline: none;
            box-shadow: var(--focus-ring);
        }

        /* Header / Top Bar */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(14, 16, 19, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--header-height);
            display: flex;
            align-items: center;
            box-shadow: var(--shadow-nav);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 16px;
            background: var(--accent-soft);
            color: var(--accent);
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: 0.02em;
            line-height: 1.2;
            border: 1px solid var(--border-accent);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .header-search {
            flex: 1;
            max-width: 300px;
            min-width: 160px;
        }

        .header-search input {
            width: 100%;
            padding: 8px 16px;
            border-radius: var(--radius-btn);
            background: var(--bg-card);
            border: 1px solid var(--border-strong);
            color: var(--text-primary);
            font-size: 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
            line-height: 1.4;
        }

        .header-search input::placeholder {
            color: var(--text-muted);
        }

        .header-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 214, 143, 0.15);
        }

        .header-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .version-badge {
            font-size: 13px;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 12px;
            border-radius: var(--radius-badge);
            border: 1px solid var(--border-subtle);
            white-space: nowrap;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
            border-radius: 6px;
            transition: background-color var(--transition);
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition);
        }

        /* Sidebar */
        .layout-wrapper {
            display: flex;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
            gap: var(--sidebar-gap);
            align-items: flex-start;
        }

        .sidebar {
            width: var(--sidebar-width);
            flex-shrink: 0;
            position: sticky;
            top: calc(var(--header-height) + 24px);
            max-height: calc(100vh - var(--header-height) - 48px);
            overflow-y: auto;
            padding: 20px 12px;
            background: var(--bg-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            scrollbar-width: thin;
            scrollbar-color: var(--border-strong) transparent;
        }

        .sidebar::-webkit-scrollbar {
            width: 4px;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: var(--border-strong);
            border-radius: 4px;
        }

        .sidebar-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 12px;
            padding: 0 8px;
        }

        .sidebar-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 15px;
            color: var(--text-secondary);
            position: relative;
            transition: all var(--transition);
        }

        .sidebar-nav a:hover {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
        }

        .sidebar-nav a.active {
            background: var(--accent-soft);
            color: var(--accent);
            font-weight: 600;
            box-shadow: inset 2px 0 0 var(--accent);
        }

        .sidebar-nav .nav-icon {
            font-size: 16px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-footer {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
        }

        .sidebar-footer a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            padding: 8px 12px;
            border-radius: 8px;
            transition: all var(--transition);
        }

        .sidebar-footer a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        /* Main content area */
        .main-content {
            flex: 1;
            min-width: 0;
            padding: 24px 0 40px;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .sep {
            color: var(--text-muted);
            user-select: none;
        }

        .breadcrumb .current {
            color: var(--accent);
            font-weight: 500;
        }

        /* Category H1 area */
        .category-hero {
            margin-bottom: 36px;
            padding: 28px 28px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            justify-content: space-between;
        }

        .category-hero .hero-info {
            flex: 1;
            min-width: 240px;
        }

        .category-hero h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }

        .category-hero .hero-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 520px;
        }

        .category-hero .hero-cover {
            width: 180px;
            height: 120px;
            flex-shrink: 0;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
        }

        .category-hero .hero-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Score card grid */
        .score-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .score-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .score-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: var(--border-accent);
        }

        .score-card .card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 14px;
        }

        .score-card .league-name {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .score-card .matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .score-card .team {
            flex: 1;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.4;
            min-width: 0;
            word-break: break-word;
        }

        .score-card .score {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.02em;
            flex-shrink: 0;
            line-height: 1;
        }

        .score-card .card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .score-card .match-time {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Filter tags */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 12px;
        }

        .filter-tag {
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            border-radius: var(--radius-badge);
            background: var(--bg-card);
            border: 1px solid var(--border-strong);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }

        .filter-tag:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-soft);
        }

        .filter-tag.active {
            background: var(--accent);
            color: #0A0F0D;
            border-color: var(--accent);
            font-weight: 600;
        }

        /* Stats */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            box-shadow: var(--shadow-card);
            text-align: center;
            transition: all var(--transition);
        }

        .stat-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-card-hover);
        }

        .stat-number {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* News list */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            transition: all var(--transition);
            cursor: pointer;
        }

        .news-item:hover {
            border-color: var(--border-accent);
            background: rgba(255, 255, 255, 0.02);
        }

        .news-item .news-accent {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
            margin-top: 8px;
        }

        .news-item .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-item .news-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 4px;
        }

        .news-item:hover .news-title {
            color: var(--accent);
        }

        .news-item .news-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 4px;
        }

        .news-item .news-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Instruction panel */
        .instruction-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            margin-bottom: 12px;
            border-left: 3px solid var(--accent);
        }

        .instruction-panel h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .instruction-panel p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-strong);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-arrow {
            flex-shrink: 0;
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
            user-select: none;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
            padding: 0 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 16px;
        }

        /* More link */
        .more-link-wrapper {
            margin-top: 20px;
            text-align: center;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--accent);
            padding: 10px 24px;
            border: 1px solid var(--border-accent);
            border-radius: var(--radius-btn);
            background: var(--accent-soft);
            transition: all var(--transition);
        }

        .more-link:hover {
            background: rgba(0, 214, 143, 0.16);
            border-color: var(--accent);
            color: var(--accent-bright);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .footer-brand .logo-icon {
            font-family: var(--font-mono);
            font-size: 15px;
            background: var(--accent-soft);
            color: var(--accent);
            padding: 4px 8px;
            border-radius: 6px;
            border: 1px solid var(--border-accent);
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color var(--transition);
            display: inline-block;
        }

        .footer-col ul a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-copyright .domain {
            color: var(--text-secondary);
        }

        .footer-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            max-width: 480px;
            line-height: 1.6;
            text-align: right;
        }

        /* Sidebar overlay for mobile */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 90;
            opacity: 0;
            transition: opacity 0.2s ease-in-out;
        }

        .sidebar-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }
            .category-hero h1 {
                font-size: 30px;
            }
            .sidebar {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 280px;
                max-height: none;
                border-radius: 0;
                z-index: 95;
                transform: translateX(-100%);
                transition: transform 0.25s ease-in-out;
                box-shadow: 4px 0 24px rgba(0, 0, 0, 0.4);
                padding: 20px 16px;
                border-right: 1px solid var(--border-strong);
            }
            .sidebar.open {
                transform: translateX(0);
            }
            .header-search {
                max-width: 180px;
            }
            .version-badge {
                font-size: 12px;
                padding: 3px 8px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-pad: var(--section-pad-mobile);
            }
            .container {
                padding: 0 16px;
            }
            .layout-wrapper {
                padding: 0 16px;
                gap: 0;
            }
            .section-title {
                font-size: 23px;
            }
            .category-hero {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            .category-hero .hero-cover {
                width: 100%;
                height: 160px;
            }
            .score-grid {
                grid-template-columns: 1fr;
            }
            .score-card .score {
                font-size: 27px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-disclaimer {
                text-align: center;
                max-width: 100%;
            }
            .header-search {
                display: none;
            }
            .header-meta .version-badge {
                display: none;
            }
            .btn {
                font-size: 14px;
                padding: 10px 20px;
            }
        }

        @media (max-width: 520px) {
            .category-hero h1 {
                font-size: 26px;
            }
            .stats-row {
                grid-template-columns: 1fr;
            }
            .filter-tags {
                gap: 8px;
            }
            .filter-tag {
                font-size: 12px;
                padding: 5px 12px;
            }
            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }
            .section-title {
                font-size: 21px;
            }
            .score-card .matchup {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                gap: 8px;
            }
            .score-card .team {
                font-size: 14px;
                text-align: center;
            }
            .score-card .score {
                font-size: 26px;
            }
        }

/* roulang page: category1 */
:root {
  --bg-primary: #0E1013;
  --bg-card: #161A20;
  --bg-footer: #0B0D10;
  --accent: #00D68F;
  --accent-bright: #00E5A5;
  --accent-soft: rgba(0, 214, 143, 0.08);
  --amber: #F5A623;
  --amber-soft: rgba(245, 166, 35, 0.12);
  --text-primary: #F5F7FA;
  --text-secondary: #9AA3AE;
  --text-muted: #5C6670;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 214, 143, 0.4);
  --radius-card: 14px;
  --radius-btn: 10px;
  --radius-badge: 999px;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06);
  --font-sans: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
  --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  --header-height: 64px;
  --sidebar-width: 240px;
  --sidebar-gap: 40px;
  --content-max: 1200px;
  --section-pad: 72px 0;
  --section-pad-mobile: 48px 0;
  --transition: 0.2s ease-in-out;
  --focus-ring: 0 0 0 3px rgba(0, 214, 143, 0.35);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
  position: relative;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.section-header {
  margin-bottom: 28px;
}

.section-header .label-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-badge);
  line-height: 1.4;
  white-space: nowrap;
}

.badge-live {
  background: var(--amber);
  color: #1A1400;
}

.badge-finished {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.badge-upcoming {
  background: rgba(0, 214, 143, 0.16);
  color: var(--accent);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  line-height: 1.4;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #0A0F0D;
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 4px 24px rgba(0, 214, 143, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(14, 16, 19, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid var(--border-accent);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.header-search {
  flex: 1;
  max-width: 320px;
  position: relative;
}

.header-search input {
  width: 100%;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-btn);
  padding: 0 16px 0 38px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 214, 143, 0.12);
}

.header-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-badge);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.version-badge .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background-color var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-primary);
  border-right: 1px solid var(--border-subtle);
  overflow-y: auto;
  z-index: 999;
  padding: 24px 16px 40px;
  transition: transform var(--transition);
}

.sidebar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-left: 8px;
}

.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav li {
  margin: 0;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}

.sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.sidebar-nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

.sidebar-nav a .nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.sidebar-footer a:hover {
  color: var(--text-primary);
}

/* Main content */
.main-wrapper {
  margin-left: var(--sidebar-width);
  min-height: calc(100vh - var(--header-height));
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-top: 8px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--text-muted);
  font-size: 11px;
}

.breadcrumb .current {
  color: var(--text-secondary);
}

/* Cat H1 zone */
.cat-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}

.cat-hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.cat-hero .subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

.cat-hero-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  min-height: 240px;
}

.cat-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

/* Score card */
.score-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}

.score-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-accent);
}

.score-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.score-card-league {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.score-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.score-team {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.score-team:last-of-type {
  text-align: right;
}

.score-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}

.score-number {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.score-number.finished {
  color: var(--text-secondary);
}

.score-number.live {
  color: var(--amber);
}

.score-phase {
  font-size: 12px;
  color: var(--text-muted);
}

.score-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

/* League tags */
.league-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.league-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.league-tag:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--accent-soft);
}

.league-tag.primary {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--border-accent);
  font-weight: 600;
}

/* Stats mini */
.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stats-mini-number {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stats-mini-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Info list */
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  transition: all var(--transition);
}

.info-list li:hover {
  border-color: var(--border-accent);
  background: rgba(255, 255, 255, 0.02);
}

.info-item-content {
  flex: 1;
  min-width: 0;
}

.info-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color var(--transition);
}

.info-list li:hover .info-item-title {
  color: var(--accent);
}

.info-item-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.info-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Explain panel */
.explain-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
}

.explain-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.explain-item:last-child {
  margin-bottom: 0;
}

.explain-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.explain-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.explain-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--transition);
  font-size: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  border-left: 2px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
  border-left-color: var(--accent);
}

/* Load more */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0 8px;
}

/* Footer */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 28px;
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 11px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copyright .domain {
  color: var(--text-secondary);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    width: 260px;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay.show {
    display: block;
  }
  .main-wrapper {
    margin-left: 0;
  }
  .hamburger {
    display: flex;
  }
  .header-search {
    max-width: 220px;
  }
  .cat-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cat-hero-image {
    max-height: 280px;
  }
  .score-card-grid {
    grid-template-columns: 1fr;
  }
  .stats-mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-mobile);
  }
  .section-title {
    font-size: 24px;
  }
  .cat-hero h1 {
    font-size: 30px;
  }
  .cat-hero .subtitle {
    font-size: 15px;
  }
  .score-card {
    padding: 16px 18px;
  }
  .score-number {
    font-size: 26px;
  }
  .stats-mini-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-search {
    display: none;
  }
  .header-meta {
    gap: 6px;
  }
  .version-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 36px 0;
  }
  .section-title {
    font-size: 22px;
  }
  .cat-hero h1 {
    font-size: 26px;
  }
  .cat-hero .subtitle {
    font-size: 14px;
  }
  .score-team {
    font-size: 14px;
  }
  .score-number {
    font-size: 22px;
  }
  .score-card-body {
    gap: 6px;
  }
  .score-mid {
    min-width: 56px;
  }
  .league-tag {
    font-size: 12px;
    padding: 6px 14px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* roulang page: category3 */
:root {
            --bg-primary: #0E1013;
            --bg-card: #161A20;
            --bg-footer: #0B0D10;
            --accent: #00D68F;
            --accent-bright: #00E5A5;
            --accent-soft: rgba(0, 214, 143, 0.08);
            --amber: #F5A623;
            --amber-soft: rgba(245, 166, 35, 0.12);
            --text-primary: #F5F7FA;
            --text-secondary: #9AA3AE;
            --text-muted: #5C6670;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-strong: rgba(255, 255, 255, 0.12);
            --border-accent: rgba(0, 214, 143, 0.4);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06);
            --font-sans: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --header-height: 64px;
            --sidebar-width: 240px;
            --sidebar-gap: 40px;
            --content-max: 1200px;
            --section-pad: 72px 0;
            --section-pad-mobile: 48px 0;
            --transition: 0.2s ease-in-out;
            --focus-ring: 0 0 0 3px rgba(0, 214, 143, 0.35);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: 4px;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-pad);
            position: relative;
        }

        .section-sm {
            padding: 40px 0;
            position: relative;
        }

        .section-alt {
            background-color: rgba(255, 255, 255, 0.015);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-header {
            margin-bottom: 28px;
        }

        .section-header .label-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-badge);
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-live {
            background: var(--amber);
            color: #1A1400;
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .badge-upcoming {
            background: rgba(0, 214, 143, 0.16);
            color: var(--accent);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
            line-height: 1.4;
            white-space: nowrap;
            border: 1px solid transparent;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--accent);
            color: #0A0F0D;
            border-color: var(--accent);
        }

        .btn-primary:hover {
            background: var(--accent-bright);
            border-color: var(--accent-bright);
            box-shadow: 0 4px 24px rgba(0, 214, 143, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border-color: rgba(255, 255, 255, 0.16);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 8px;
        }

        .btn-link {
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition), gap var(--transition);
        }

        .btn-link:hover {
            color: var(--accent-bright);
            gap: 10px;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(14, 16, 19, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent-soft);
            border: 1px solid var(--border-accent);
            color: var(--accent);
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 13px;
            border-radius: 8px;
            letter-spacing: 0.02em;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.01em;
            white-space: nowrap;
        }

        .header-search {
            flex: 1;
            max-width: 320px;
            min-width: 120px;
            position: relative;
        }

        .header-search input {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            padding: 8px 14px 8px 36px;
            font-size: 14px;
            color: var(--text-primary);
            transition: border-color var(--transition);
            line-height: 1.5;
        }

        .header-search input::placeholder {
            color: var(--text-muted);
        }

        .header-search input:focus {
            border-color: var(--accent);
        }

        .header-search .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            pointer-events: none;
        }

        .header-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .data-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-secondary);
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            white-space: nowrap;
        }

        .data-status .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .lang-btn {
            font-size: 12px;
            color: var(--text-secondary);
            padding: 5px 12px;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            background: transparent;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .lang-btn:hover {
            color: var(--text-primary);
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, 0.04);
        }

        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: 6px;
        }

        .hamburger-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger-btn:hover span {
            background: var(--accent);
        }

        /* Layout */
        .page-layout {
            display: flex;
            align-items: flex-start;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
            gap: var(--sidebar-gap);
            position: relative;
        }

        .sidebar {
            position: sticky;
            top: calc(var(--header-height) + 24px);
            width: var(--sidebar-width);
            flex-shrink: 0;
            padding: 16px 0;
            max-height: calc(100vh - var(--header-height) - 48px);
            overflow-y: auto;
        }

        .sidebar-heading {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0 12px 10px;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 8px;
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sidebar-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            border-left: 2px solid transparent;
            transition: all var(--transition);
            line-height: 1.5;
        }

        .sidebar-nav li a:hover {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
        }

        .sidebar-nav li a.active {
            background: var(--accent-soft);
            color: var(--accent);
            border-left-color: var(--accent);
            font-weight: 600;
        }

        .nav-icon {
            font-size: 15px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-footer-link {
            margin-top: 12px;
            padding: 12px 14px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            border-top: 1px solid var(--border-subtle);
            transition: color var(--transition);
        }

        .sidebar-footer-link:hover {
            color: var(--accent);
        }

        .main-content {
            flex: 1;
            min-width: 0;
            padding: 32px 0;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .sep {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb .current {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Page Hero */
        .page-hero {
            padding: 32px 0 40px;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 40px;
        }

        .page-hero h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .page-hero .hero-sub {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.75;
        }

        /* Score Cards */
        .score-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .score-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .score-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .score-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .score-card-event {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .score-card-event .event-icon {
            font-size: 16px;
        }

        .score-card-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .score-team {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            min-width: 0;
            flex: 1;
        }

        .score-team-name {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .score-main {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .score-num {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .score-sep {
            color: var(--text-muted);
            font-size: 18px;
            font-weight: 600;
        }

        .score-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 10px;
            flex-wrap: wrap;
        }

        .score-detail {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mono);
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Filter tags */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            transition: all var(--transition);
            cursor: pointer;
        }

        .filter-tag:hover {
            color: var(--text-primary);
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, 0.04);
        }

        .filter-tag.active {
            background: var(--accent-soft);
            border-color: var(--border-accent);
            color: var(--accent);
            font-weight: 600;
        }

        /* Stats block */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            text-align: center;
            transition: all var(--transition);
        }

        .stat-card:hover {
            border-color: var(--border-strong);
            box-shadow: var(--shadow-card);
        }

        .stat-num {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* News list */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition);
            border-radius: 0;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover .news-title {
            color: var(--accent);
        }

        .news-date {
            font-size: 12px;
            color: var(--text-muted);
            flex-shrink: 0;
            padding-top: 2px;
            font-family: var(--font-mono);
            min-width: 70px;
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            transition: color var(--transition);
            line-height: 1.5;
        }

        .news-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-strong);
        }

        .faq-item.open {
            border-left: 2px solid var(--accent);
            background: rgba(22, 26, 32, 0.8);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            transition: all var(--transition);
            width: 100%;
            text-align: left;
            line-height: 1.5;
            background: none;
            border: none;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-arrow {
            font-size: 16px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
            font-weight: 400;
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }

        /* Info panel */
        .info-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .info-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-soft);
            border-radius: 8px;
            font-size: 17px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .info-text p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Cover image */
        .cover-img {
            width: 100%;
            aspect-ratio: 16/7;
            object-fit: cover;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            margin-bottom: 24px;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .footer-brand .logo-icon {
            font-size: 11px;
        }

        .footer-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.04em;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col a {
            font-size: 13px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 16px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-copyright .domain {
            color: var(--text-secondary);
        }

        .footer-disclaimer {
            font-size: 11px;
            color: var(--text-muted);
            max-width: 420px;
            line-height: 1.6;
        }

        /* Load more */
        .load-more-area {
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .sidebar {
                display: none;
            }
            .page-layout {
                padding: 0 20px;
            }
            .hamburger-btn {
                display: flex;
            }
            .header-search {
                max-width: 200px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .score-card-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: var(--section-pad-mobile);
            }
            .page-layout {
                padding: 0 16px;
                gap: 0;
            }
            .main-content {
                padding: 20px 0;
            }
            .page-hero h1 {
                font-size: 26px;
            }
            .page-hero .hero-sub {
                font-size: 15px;
            }
            .section-title {
                font-size: 24px;
            }
            .header-search {
                display: none;
            }
            .header-meta .data-status {
                display: none;
            }
            .logo-text {
                font-size: 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 14px 18px;
            }
            .stat-num {
                font-size: 26px;
            }
            .score-num {
                font-size: 20px;
            }
            .score-card {
                padding: 14px 16px;
            }
            .info-panel {
                padding: 14px 16px;
                flex-direction: column;
                gap: 10px;
            }
            .cover-img {
                aspect-ratio: 16/9;
            }
        }

        @media (max-width: 520px) {
            .page-hero h1 {
                font-size: 22px;
            }
            .section-title {
                font-size: 21px;
            }
            .score-team {
                font-size: 13px;
            }
            .score-num {
                font-size: 18px;
            }
            .btn {
                padding: 10px 18px;
                font-size: 13px;
            }
            .score-card-body {
                gap: 8px;
            }
            .score-main {
                gap: 4px;
            }
            .score-sep {
                font-size: 14px;
            }
            .filter-tag {
                font-size: 12px;
                padding: 6px 12px;
            }
            .breadcrumb {
                font-size: 12px;
                gap: 4px;
            }
        }

        /* Drawer */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .drawer-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .drawer {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 280px;
            background: var(--bg-primary);
            z-index: 200;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            padding: 24px 16px;
            overflow-y: auto;
            border-right: 1px solid var(--border-subtle);
        }

        .drawer.open {
            transform: translateX(0);
        }

        .drawer-close {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            transition: all var(--transition);
        }

        .drawer-close:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-primary);
        }

        .drawer .sidebar-nav li a {
            font-size: 15px;
            padding: 11px 14px;
        }

        .drawer-search {
            margin-bottom: 16px;
        }

        .drawer-search input {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            padding: 9px 12px;
            font-size: 14px;
            color: var(--text-primary);
        }

        @media (min-width: 1025px) {
            .drawer,
            .drawer-overlay {
                display: none;
            }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #0E1013;
            --bg-card: #161A20;
            --bg-footer: #0B0D10;
            --accent: #00D68F;
            --accent-bright: #00E5A5;
            --accent-soft: rgba(0, 214, 143, 0.08);
            --amber: #F5A623;
            --amber-soft: rgba(245, 166, 35, 0.12);
            --text-primary: #F5F7FA;
            --text-secondary: #9AA3AE;
            --text-muted: #5C6670;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-strong: rgba(255, 255, 255, 0.12);
            --border-accent: rgba(0, 214, 143, 0.4);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06);
            --font-sans: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --header-height: 64px;
            --sidebar-width: 240px;
            --sidebar-gap: 40px;
            --content-max: 1200px;
            --section-pad: 56px 0;
            --section-pad-mobile: 40px 0;
            --transition: 0.2s ease-in-out;
            --focus-ring: 0 0 0 3px rgba(0, 214, 143, 0.35);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            width: 100%;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-pad);
            position: relative;
        }

        .section-alt {
            background-color: rgba(255, 255, 255, 0.015);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .section-header {
            margin-bottom: 24px;
        }

        .section-header .label-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-badge);
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-live {
            background: var(--amber);
            color: #1A1400;
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .badge-upcoming {
            background: rgba(0, 214, 143, 0.16);
            color: var(--accent);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--accent);
            color: #0A0F0D;
        }

        .btn-primary:hover {
            background: var(--accent-bright);
            box-shadow: 0 4px 24px rgba(0, 214, 143, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid var(--border-strong);
        }

        .btn-secondary:hover {
            border-color: var(--border-accent);
            background: rgba(255, 255, 255, 0.08);
        }

        .btn:focus-visible,
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--header-height);
            background: rgba(14, 16, 19, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent-soft);
            border: 1px solid var(--border-accent);
            border-radius: 10px;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 14px;
            color: var(--accent);
            letter-spacing: -0.02em;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .header-search {
            flex: 1;
            max-width: 320px;
            min-width: 160px;
        }

        .header-search input {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            padding: 9px 14px;
            font-size: 14px;
            color: var(--text-primary);
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        .header-search input::placeholder {
            color: var(--text-muted);
        }

        .header-search input:focus {
            border-color: var(--accent);
            box-shadow: var(--focus-ring);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .data-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            white-space: nowrap;
        }

        .data-badge .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            border-radius: 8px;
            transition: background-color var(--transition);
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition);
        }

        /* Layout */
        .page-layout {
            display: flex;
            min-height: calc(100vh - var(--header-height));
        }

        .sidebar {
            position: sticky;
            top: var(--header-height);
            width: var(--sidebar-width);
            flex-shrink: 0;
            height: calc(100vh - var(--header-height));
            overflow-y: auto;
            background: var(--bg-primary);
            border-right: 1px solid var(--border-subtle);
            padding: 24px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .sidebar-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.06em;
            padding: 0 10px;
            margin-bottom: 4px;
        }

        .sidebar-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }

        .sidebar-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            position: relative;
            transition: all var(--transition);
        }

        .sidebar-nav li a:hover {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
        }

        .sidebar-nav li a.active {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .sidebar-nav li a.active::before {
            content: '';
            position: absolute;
            left: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 24px;
            background: var(--accent);
            border-radius: 0 2px 2px 0;
        }

        .nav-icon {
            font-size: 16px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-footer-link {
            padding: 10px 14px;
            font-size: 13px;
            color: var(--text-muted);
            border-radius: 8px;
            transition: all var(--transition);
        }

        .sidebar-footer-link:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .main-content {
            flex: 1;
            min-width: 0;
            padding: 0;
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            padding: 20px 0 0;
            font-size: 14px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-bar a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .breadcrumb-bar a:hover {
            color: var(--accent);
        }

        .breadcrumb-bar .separator {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb-bar .current {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* H1 Section */
        .h1-section {
            padding: 32px 0 24px;
            position: relative;
        }

        .h1-section h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .h1-section .h1-sub {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.7;
        }

        /* Score List */
        .score-list-section {
            padding: 16px 0 40px;
        }

        .score-list-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .score-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
        }

        .score-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .score-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            gap: 10px;
        }

        .score-card-league {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .score-card-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .score-card-team {
            flex: 1;
            min-width: 0;
        }

        .score-card-team .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .score-card-team .team-tag {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .score-card-score {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.03em;
            flex-shrink: 0;
            min-width: 60px;
            text-align: center;
        }

        .score-card-score.finished {
            color: var(--text-primary);
        }

        .score-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 10px;
            border-top: 1px solid var(--border-subtle);
        }

        .score-card-time {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.02em;
        }

        .score-card-stage {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: right;
        }

        /* Filter Tags */
        .filter-section {
            padding: 16px 0 24px;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            transition: all var(--transition);
            cursor: pointer;
        }

        .filter-tag:hover {
            color: var(--text-primary);
            border-color: var(--border-strong);
            background: rgba(255, 255, 255, 0.06);
        }

        .filter-tag.active {
            color: var(--accent);
            background: var(--accent-soft);
            border-color: var(--border-accent);
        }

        /* Stats */
        .stats-section {
            padding: 24px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            text-align: center;
            transition: all var(--transition);
        }

        .stat-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-card);
        }

        .stat-number {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* News List */
        .news-section {
            padding: 24px 0;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 16px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            transition: all var(--transition);
            align-items: flex-start;
        }

        .news-item:hover {
            border-color: var(--border-accent);
            background: rgba(255, 255, 255, 0.03);
        }

        .news-item-thumb {
            width: 80px;
            height: 56px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-footer);
        }

        .news-item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-item-content {
            flex: 1;
            min-width: 0;
        }

        .news-item-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
        }

        /* Info Section */
        .info-section {
            padding: 24px 0;
        }

        .info-box {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-left: 3px solid var(--accent);
            border-radius: 10px;
            padding: 20px 22px;
            margin-bottom: 12px;
        }

        .info-box h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .info-box p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* FAQ */
        .faq-section {
            padding: 24px 0;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-strong);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            gap: 12px;
            user-select: none;
        }

        .faq-question .faq-icon {
            font-size: 18px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            transition: max-height var(--transition), padding var(--transition);
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            border-top: none;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 14px 20px 18px;
            border-top: 1px solid var(--border-subtle);
        }

        /* More Link */
        .more-section {
            padding: 16px 0 24px;
            text-align: center;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--accent);
            padding: 10px 24px;
            border: 1px solid var(--border-accent);
            border-radius: var(--radius-btn);
            transition: all var(--transition);
        }

        .more-link:hover {
            background: var(--accent-soft);
            color: var(--accent-bright);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-copyright .domain {
            font-family: var(--font-mono);
            font-size: 12px;
        }

        .footer-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 720px;
        }

        /* Scrollbar */
        .sidebar::-webkit-scrollbar {
            width: 4px;
        }
        .sidebar::-webkit-scrollbar-track {
            background: transparent;
        }
        .sidebar::-webkit-scrollbar-thumb {
            background: var(--border-strong);
            border-radius: 2px;
        }

        /* Mobile drawer */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--transition), visibility var(--transition);
        }

        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .drawer {
            position: fixed;
            top: 0;
            left: -280px;
            width: 260px;
            height: 100%;
            background: var(--bg-primary);
            border-right: 1px solid var(--border-subtle);
            z-index: 201;
            transition: left var(--transition);
            padding: 24px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            overflow-y: auto;
        }

        .drawer.active {
            left: 0;
        }

        .drawer-close {
            align-self: flex-end;
            font-size: 24px;
            color: var(--text-muted);
            padding: 4px 8px;
            border-radius: 8px;
            transition: all var(--transition);
        }

        .drawer-close:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .sidebar {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-search {
                max-width: 200px;
            }
            .score-list-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-search {
                display: none;
            }
            .data-badge {
                display: none;
            }
            .h1-section h1 {
                font-size: 28px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .section {
                padding: var(--section-pad-mobile);
            }
            .score-card-score {
                font-size: 24px;
                min-width: 48px;
            }
            .news-item-thumb {
                width: 64px;
                height: 44px;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                gap: 8px;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .h1-section h1 {
                font-size: 24px;
            }
            .score-card {
                padding: 14px 16px;
            }
            .score-card-score {
                font-size: 22px;
                min-width: 40px;
            }
            .score-card-team .team-name {
                font-size: 14px;
            }
            .btn {
                font-size: 14px;
                padding: 10px 20px;
            }
            .breadcrumb-bar {
                font-size: 13px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-primary: #0E1013;
            --bg-card: #161A20;
            --bg-footer: #0B0D10;
            --accent: #00D68F;
            --accent-bright: #00E5A5;
            --accent-soft: rgba(0, 214, 143, 0.08);
            --amber: #F5A623;
            --amber-soft: rgba(245, 166, 35, 0.12);
            --text-primary: #F5F7FA;
            --text-secondary: #9AA3AE;
            --text-muted: #5C6670;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-strong: rgba(255, 255, 255, 0.12);
            --border-accent: rgba(0, 214, 143, 0.4);
            --radius-card: 14px;
            --radius-btn: 10px;
            --radius-badge: 999px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.06);
            --font-sans: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
            --font-mono: 'Roboto Mono', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --header-height: 64px;
            --sidebar-width: 240px;
            --sidebar-gap: 40px;
            --content-max: 1200px;
            --section-pad: 72px 0;
            --section-pad-mobile: 48px 0;
            --transition: 0.2s ease-in-out;
            --focus-ring: 0 0 0 3px rgba(0, 214, 143, 0.35);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            color: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            width: 100%;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-pad);
            position: relative;
        }

        .section-alt {
            background-color: rgba(255, 255, 255, 0.015);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .section-header {
            margin-bottom: 28px;
        }

        .section-header .label-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-badge);
            line-height: 1.4;
            white-space: nowrap;
        }

        .badge-live {
            background: var(--amber);
            color: #1A1400;
        }

        .badge-finished {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .badge-upcoming {
            background: rgba(0, 214, 143, 0.16);
            color: var(--accent);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            transition: all var(--transition);
            letter-spacing: 0.01em;
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn:active {
            transform: scale(0.98);
        }

        .btn-primary {
            background: var(--accent);
            color: #0A0F0D;
        }

        .btn-primary:hover {
            background: var(--accent-bright);
            box-shadow: 0 4px 24px rgba(0, 214, 143, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            background: rgba(0, 214, 143, 0.06);
            color: var(--accent);
        }

        .btn:focus-visible,
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.35;
            }
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(14, 16, 19, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            height: var(--header-height);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-nav);
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: nowrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--accent);
            color: #0A0F0D;
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 14px;
            border-radius: 6px;
            letter-spacing: -0.04em;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .logo-text .logo-highlight {
            color: var(--accent);
        }

        .header-search {
            flex: 1;
            max-width: 320px;
            margin-left: auto;
            position: relative;
        }

        .header-search input {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-btn);
            padding: 9px 16px 9px 38px;
            font-size: 14px;
            color: var(--text-primary);
            transition: border-color var(--transition), box-shadow var(--transition);
            line-height: 1.4;
        }

        .header-search input::placeholder {
            color: var(--text-muted);
        }

        .header-search input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 214, 143, 0.12);
        }

        .header-search .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 16px;
            pointer-events: none;
        }

        .header-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .version-badge {
            font-size: 12px;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            padding: 5px 14px;
            white-space: nowrap;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 8px;
            border-radius: 6px;
            transition: background var(--transition);
            flex-shrink: 0;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger:hover span {
            background: var(--accent);
        }

        /* Sidebar */
        .layout-wrapper {
            display: flex;
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 24px;
            gap: var(--sidebar-gap);
        }

        .sidebar {
            width: var(--sidebar-width);
            flex-shrink: 0;
            padding-top: 32px;
            padding-bottom: 32px;
            position: sticky;
            top: var(--header-height);
            height: calc(100vh - var(--header-height));
            overflow-y: auto;
            border-right: 1px solid var(--border-subtle);
            background: var(--bg-primary);
            z-index: 100;
        }

        .sidebar-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 16px;
            padding-left: 8px;
        }

        .sidebar-nav {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .sidebar-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 15px;
            color: var(--text-secondary);
            font-weight: 500;
            position: relative;
            transition: all var(--transition);
            line-height: 1.4;
        }

        .sidebar-nav li a:hover {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
        }

        .sidebar-nav li a.active {
            background: var(--accent-soft);
            color: var(--accent);
        }

        .sidebar-nav li a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 22px;
            background: var(--accent);
            border-radius: 0 2px 2px 0;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50%) scaleY(0.4);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) scaleY(1);
            }
        }

        .nav-icon {
            font-size: 16px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .sidebar-footer-link {
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
            padding-left: 8px;
        }

        .sidebar-footer-link a {
            font-size: 13px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition);
        }

        .sidebar-footer-link a:hover {
            color: var(--text-primary);
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 999;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }

        /* Main content */
        .main-content {
            flex: 1;
            min-width: 0;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            padding: 24px 0 8px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb .breadcrumb-sep {
            color: var(--text-muted);
            font-size: 12px;
        }

        .breadcrumb .breadcrumb-current {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* H1 Area */
        .page-h1-area {
            padding: 16px 0 32px;
        }

        .page-h1-area h1 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: -0.02em;
        }

        .page-h1-area .h1-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 680px;
            margin: 0;
        }

        /* Result cards grid */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .result-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .result-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }

        .result-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .result-league {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.01em;
        }

        .result-sport-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            letter-spacing: 0.04em;
        }

        .result-match {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .result-team {
            flex: 1;
            min-width: 0;
        }

        .result-team-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            line-height: 1.4;
        }

        .result-score {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.02em;
            white-space: nowrap;
            line-height: 1;
        }

        .result-team-right {
            text-align: right;
        }

        .result-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 10px;
            border-top: 1px solid var(--border-subtle);
        }

        .result-time {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .result-status {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.06);
            padding: 3px 12px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.02em;
        }

        /* Filter tags */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 4px;
        }

        .filter-tag {
            display: inline-block;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-badge);
            transition: all var(--transition);
            line-height: 1.4;
            white-space: nowrap;
        }

        .filter-tag:hover {
            background: rgba(0, 214, 143, 0.08);
            border-color: var(--border-accent);
            color: var(--accent);
        }

        .filter-tag.filter-tag-active {
            background: var(--accent);
            color: #0A0F0D;
            border-color: var(--accent);
        }

        /* Stats */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .stat-card:hover {
            border-color: var(--border-accent);
            box-shadow: var(--shadow-card-hover);
        }

        .stat-number {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 8px;
            letter-spacing: -0.03em;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* News list */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition);
            border-radius: 6px;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.025);
            padding-left: 12px;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-thumb {
            width: 96px;
            height: 64px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
            background: var(--bg-footer);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 4px;
            transition: color var(--transition);
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item:hover .news-title {
            color: var(--accent);
        }

        .news-excerpt {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 4px;
        }

        .news-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Info blocks */
        .info-block {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-left: 3px solid var(--accent);
            border-radius: 8px;
            padding: 20px 24px;
            margin-bottom: 12px;
        }

        .info-block p {
            margin: 0;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .info-block p strong {
            color: var(--text-primary);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item.active {
            border-left: 2px solid var(--accent);
            background: rgba(0, 214, 143, 0.04);
            border-color: var(--border-accent);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            transition: color var(--transition);
            user-select: none;
            line-height: 1.5;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-arrow {
            flex-shrink: 0;
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* More link */
        .more-link-wrap {
            display: flex;
            justify-content: center;
            padding: 12px 0 0;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 600;
            color: var(--accent);
            padding: 10px 24px;
            border: 1px solid var(--border-accent);
            border-radius: var(--radius-btn);
            transition: all var(--transition);
        }

        .more-link:hover {
            background: var(--accent-soft);
            border-color: var(--accent);
            color: var(--accent-bright);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 12px;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-secondary);
            transition: color var(--transition);
            line-height: 1.5;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-copyright {
            font-size: 12px;
            color: var(--text-muted);
        }

        .footer-copyright .domain {
            color: var(--text-secondary);
        }

        .footer-disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 720px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .sidebar {
                position: fixed;
                left: 0;
                top: var(--header-height);
                height: calc(100vh - var(--header-height));
                width: 280px;
                transform: translateX(-100%);
                transition: transform 0.28s ease-in-out;
                z-index: 1000;
                border-right: none;
                box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
                padding: 20px;
            }

            .sidebar.sidebar-open {
                transform: translateX(0);
            }

            .sidebar-overlay.sidebar-overlay-show {
                display: block;
            }

            .hamburger {
                display: flex;
            }

            .layout-wrapper {
                padding: 0 20px;
                gap: 0;
            }

            .header-search {
                max-width: 200px;
            }

            .page-h1-area h1 {
                font-size: 30px;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-search {
                display: none;
            }

            .header-meta .version-badge {
                font-size: 11px;
                padding: 4px 10px;
            }

            .page-h1-area h1 {
                font-size: 26px;
            }

            .section {
                padding: var(--section-pad-mobile);
            }

            .section-title {
                font-size: 22px;
            }

            .stats-row {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .news-thumb {
                width: 72px;
                height: 48px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .result-score {
                font-size: 24px;
            }

            .result-team-name {
                font-size: 14px;
            }

            .filter-tag {
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .layout-wrapper {
                padding: 0 16px;
            }

            .logo-text {
                font-size: 17px;
            }

            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .version-badge {
                display: none;
            }

            .page-h1-area h1 {
                font-size: 22px;
            }

            .page-h1-area .h1-subtitle {
                font-size: 15px;
            }

            .breadcrumb {
                font-size: 12px;
            }

            .result-card {
                padding: 16px;
            }

            .result-score {
                font-size: 20px;
            }

            .result-team-name {
                font-size: 13px;
            }

            .result-league {
                font-size: 12px;
            }

            .stat-number {
                font-size: 28px;
            }
        }
