/* roulang page: index */
:root {
            --bg-primary: #0B1220;
            --bg-secondary: #111B2A;
            --bg-panel: #162231;
            --bg-panel-hover: #1B2939;
            --primary: #A3E635;
            --primary-dark: #8BC530;
            --accent: #F59E0B;
            --cyan: #22D3EE;
            --text-primary: #E6EDF3;
            --text-secondary: #8A97A8;
            --text-muted: #5F6C7E;
            --border: #1F2A3A;
            --divider: #263448;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 18px 40px rgba(0,0,0,0.35);
            --shadow-hover: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.2), 0 0 24px rgba(163,230,53,0.25);
            --font-number: 'Barlow Condensed', 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', system-ui, sans-serif;
            --font-body: 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition: all 0.25s ease;
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.85;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: var(--cyan); transition: var(--transition); }
        a:hover { color: var(--primary); }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }

        /* Custom scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-secondary); }
        ::-webkit-scrollbar-thumb { background: var(--divider); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-body);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 0.75rem;
        }
        h1 { font-size: clamp(1.75rem, 3.2vw, 2.25rem); }
        h2 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
        h3 { font-size: clamp(1.1rem, 1.8vw, 1.25rem); font-weight: 600; }
        p { color: var(--text-secondary); margin-bottom: 1rem; }
        .text-primary-color { color: var(--primary) !important; }
        .text-accent { color: var(--accent) !important; }
        .text-cyan { color: var(--cyan) !important; }
        .text-muted-custom { color: var(--text-muted) !important; }
        .text-secondary-custom { color: var(--text-secondary) !important; }
        .number-font { font-family: var(--font-number); font-weight: 700; }

        /* Buttons */
        .btn { border-radius: var(--radius-md); font-weight: 600; padding: 0.6rem 1.4rem; transition: var(--transition); border: none; font-size: 0.95rem; }
        .btn:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.35); outline: none; }
        .btn:active { transform: scale(0.98); }
        .btn-primary-custom {
            background-color: var(--primary);
            color: #0B1220;
            border: 1px solid var(--primary);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(163,230,53,0.3);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.05);
            transform: translateY(-2px);
        }
        .btn-ghost-custom {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-ghost-custom:hover {
            background: rgba(163,230,53,0.1);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-accent-custom {
            background-color: var(--accent);
            color: #0B1220;
            border: 1px solid var(--accent);
            font-weight: 700;
        }
        .btn-accent-custom:hover {
            background-color: #D9820A;
            border-color: #D9820A;
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.3);
        }
        .btn-sm-custom { padding: 0.4rem 1rem; font-size: 0.85rem; }

        /* Navbar */
        .navbar-custom {
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom.scrolled {
            background: rgba(11,18,32,0.97);
            border-bottom-color: var(--divider);
            box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover { color: var(--primary); }
        .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .navbar-custom .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: var(--transition);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover {
            color: var(--text-primary) !important;
        }
        .navbar-custom .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .navbar-search {
            background: rgba(22,34,49,0.8);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 0.35rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            min-width: 180px;
        }
        .navbar-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
        }
        .navbar-search input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            outline: none;
            font-size: 0.85rem;
            width: 100%;
        }
        .navbar-search input::placeholder { color: var(--text-muted); }
        .navbar-search i { color: var(--text-muted); font-size: 0.85rem; }

        .navbar-toggler-custom {
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0.4rem 0.7rem;
            background: var(--bg-panel);
            color: var(--text-secondary);
            transition: var(--transition);
        }
        .navbar-toggler-custom:hover { border-color: var(--primary); color: var(--primary); }
        .navbar-toggler-custom:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.2); }
        .navbar-toggler-custom i { font-size: 1.2rem; }

        @media (max-width: 991.98px) {
            .navbar-collapse-custom {
                background: var(--bg-secondary);
                border-radius: var(--radius-lg);
                padding: 1rem;
                margin-top: 0.75rem;
                border: 1px solid var(--border);
                max-height: 70vh;
                overflow-y: auto;
            }
            .navbar-search { margin: 0.75rem 0; min-width: 100%; }
            .navbar-custom .nav-link { padding: 0.6rem 0.5rem !important; }
            .navbar-custom .nav-link.active::after { left: 0.5rem; right: 0.5rem; }
            .navbar-actions { flex-wrap: wrap; gap: 0.5rem; }
        }

        /* Hero */
        .hero-section {
            position: relative;
            background: var(--bg-primary);
            padding: 4rem 0 3rem;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('/assets/images/0bcc710a32b315d1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, transparent 50%, var(--bg-primary) 95%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-section > .container { position: relative; z-index: 2; }
        .hero-title {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.25;
        }
        .hero-title .highlight {
            color: var(--primary);
            position: relative;
        }
        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 540px;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        .hero-trust {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .hero-trust-item i { color: var(--primary); font-size: 1rem; }
        .hero-trust-item .number-font { font-size: 1.3rem; color: var(--text-primary); }

        .hero-schedule-panel {
            background: var(--bg-panel);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 1.25rem;
            box-shadow: var(--shadow-card);
        }
        .hero-schedule-panel .schedule-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .hero-schedule-panel .schedule-header h3 {
            font-size: 1rem;
            margin: 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-schedule-panel .schedule-header h3 i { color: var(--primary); }
        .date-picker-group {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .date-picker-group .date-chip {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .date-picker-group .date-chip:hover,
        .date-picker-group .date-chip.active {
            background: var(--primary);
            color: #0B1220;
            border-color: var(--primary);
            font-weight: 600;
        }
        .match-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--divider);
            gap: 1rem;
            flex-wrap: wrap;
        }
        .match-row:last-child { border-bottom: none; }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 0;
        }
        .match-teams .team-name { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
        .match-teams .vs { color: var(--text-muted); font-size: 0.8rem; }
        .match-score {
            font-family: var(--font-number);
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-primary);
        }
        .match-status {
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        .match-status.live {
            background: rgba(163,230,53,0.15);
            color: var(--primary);
            border: 1px solid rgba(163,230,53,0.3);
        }
        .match-status.upcoming {
            background: rgba(34,211,238,0.15);
            color: var(--cyan);
            border: 1px solid rgba(34,211,238,0.3);
        }
        .match-status.finished {
            background: rgba(138,151,168,0.2);
            color: var(--text-secondary);
            border: 1px solid rgba(138,151,168,0.3);
        }
        .match-league {
            font-size: 0.7rem;
            color: var(--text-muted);
            white-space: nowrap;
        }

        @media (max-width: 767.98px) {
            .hero-section { padding: 2.5rem 0 2rem; }
            .hero-schedule-panel { margin-top: 2rem; }
            .hero-trust { gap: 1.5rem; }
            .match-row { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
        }

        /* Section common */
        section { padding: 3.5rem 0; position: relative; }
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .section-title {
            font-size: clamp(1.4rem, 2.5vw, 1.75rem);
            margin-bottom: 0.75rem;
        }
        .section-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.8;
        }
        .section-bg-alt { background: var(--bg-secondary); }

        /* Cards */
        .card-custom {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
            height: 100%;
        }
        .card-custom:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .card-custom .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            background: rgba(163,230,53,0.1);
            color: var(--primary);
        }
        .card-custom h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
        .card-custom p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0; }

        /* Data/Stats */
        .stat-number {
            font-family: var(--font-number);
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            line-height: 1;
        }
        .stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.4rem; }

        .progress-custom {
            background: var(--bg-secondary);
            border-radius: 8px;
            height: 10px;
            overflow: hidden;
            margin-top: 0.6rem;
        }
        .progress-custom .progress-bar-custom {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 8px;
            transition: width 0.8s ease;
        }

        /* News cards */
        .news-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .news-card .news-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: var(--bg-secondary);
        }
        .news-card .news-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
        .news-card .news-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-card .news-date i { color: var(--primary); }
        .news-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; }
        .news-card .news-excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 1rem;
        }
        .news-card .btn-read-more {
            align-self: flex-start;
            background: none;
            border: none;
            color: var(--cyan);
            font-weight: 600;
            padding: 0;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .news-card .btn-read-more:hover { color: var(--primary); }
        .news-card .btn-read-more i { font-size: 0.75rem; }

        /* Case/match cards */
        .match-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .match-card:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .match-card .league-tag {
            font-size: 0.7rem;
            color: var(--cyan);
            background: rgba(34,211,238,0.1);
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 0.6rem;
        }
        .match-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
        .match-card .match-detail {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .match-card .match-result {
            font-family: var(--font-number);
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
        }
        .match-card .match-desc {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-accordion .accordion-item {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: 10px !important;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .faq-accordion .accordion-button {
            background: var(--bg-panel);
            color: var(--text-primary);
            font-weight: 600;
            padding: 1rem 1.25rem;
            border: none;
            box-shadow: none;
            font-size: 0.95rem;
            transition: var(--transition);
            border-radius: 10px !important;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: var(--bg-panel-hover);
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
            border-color: var(--primary);
        }
        .faq-accordion .accordion-button::after {
            filter: invert(1) sepia(0) saturate(0) hue-rotate(0) brightness(0.7);
        }
        .faq-accordion .accordion-body {
            background: var(--bg-panel);
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 0.5rem 1.25rem 1.25rem;
            line-height: 1.8;
        }

        /* Partner badges */
        .partner-badge {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1rem 1.5rem;
            text-align: center;
            transition: var(--transition);
            cursor: default;
        }
        .partner-badge:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        .partner-badge .partner-name {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.95rem;
        }
        .partner-badge .partner-type {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* Guarantee bar */
        .guarantee-item {
            text-align: center;
            padding: 1rem;
            border-radius: var(--radius-md);
            background: var(--bg-panel);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .guarantee-item:hover { border-color: rgba(163,230,53,0.25); }
        .guarantee-item i { font-size: 1.4rem; color: var(--primary); margin-bottom: 0.5rem; }
        .guarantee-item h4 { font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--text-primary); }
        .guarantee-item p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

        /* CTA form */
        .subscribe-form {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
        }
        .subscribe-form .form-control-custom {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
            transition: var(--transition);
            width: 100%;
        }
        .subscribe-form .form-control-custom:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
            outline: none;
        }
        .subscribe-form .form-control-custom::placeholder { color: var(--text-muted); }
        .subscribe-form .form-control-custom.error {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239,68,68,0.2);
        }
        .subscribe-form .form-control-custom.success {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.25);
        }
        .subscribe-form .form-hint {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.4rem;
        }

        /* Community banner */
        .community-banner {
            background: linear-gradient(135deg, var(--bg-panel), var(--bg-secondary));
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
        }
        .community-banner h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
        .community-banner p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

        /* Topic cards */
        .topic-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
            height: 100%;
        }
        .topic-card:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .topic-card .topic-thumb {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .topic-card .topic-body { padding: 1.25rem; }
        .topic-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
        .topic-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

        /* Brand intro */
        .brand-intro-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem 3rem;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .brand-intro-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('/assets/images/056cf6ad2dc983ae.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
        }
        .brand-intro-section > * { position: relative; z-index: 1; }

        /* Toolbar */
        .live-toolbar {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
        }
        .live-toolbar .toolbar-tabs {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .live-toolbar .toolbar-tab {
            padding: 0.4rem 1rem;
            border-radius: 20px;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .live-toolbar .toolbar-tab:hover,
        .live-toolbar .toolbar-tab.active {
            background: var(--primary);
            color: #0B1220;
            border-color: var(--primary);
            font-weight: 600;
        }

        /* Footer */
        .footer-custom {
            background: #080E17;
            border-top: 1px solid var(--border);
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-custom h5 {
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .footer-custom ul { list-style: none; padding: 0; margin: 0; }
        .footer-custom ul li { margin-bottom: 0.5rem; }
        .footer-custom ul li a {
            color: var(--text-secondary);
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-custom ul li a:hover { color: var(--primary); }
        .footer-custom .footer-brand {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-custom .footer-brand i { color: var(--primary); }
        .footer-custom .footer-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer-custom .footer-bottom {
            border-top: 1px solid var(--divider);
            margin-top: 2rem;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-custom .footer-bottom a {
            color: var(--text-muted);
            font-size: 0.8rem;
            transition: var(--transition);
        }
        .footer-custom .footer-bottom a:hover { color: var(--primary); }
        .footer-custom .footer-bottom .copyright {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        @media (max-width: 767.98px) {
            section { padding: 2.5rem 0; }
            .community-banner { padding: 1.5rem; }
            .brand-intro-section { padding: 1.5rem; }
            .footer-custom .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media (max-width: 575.98px) {
            h1 { font-size: 1.5rem; }
            h2 { font-size: 1.25rem; }
            body { font-size: 14px; }
            .btn { padding: 0.5rem 1.1rem; font-size: 0.9rem; width: 100%; }
            .btn-sm-custom { width: auto; }
            .card-custom, .news-card, .match-card, .topic-card { padding: 1rem; }
            .hero-trust { gap: 1rem; }
            .navbar-brand-custom { font-size: 1rem; }
        }
        @media (min-width: 768px) {
            .btn { width: auto; }
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0B1220;
            --bg-secondary: #111B2A;
            --bg-panel: #162231;
            --bg-panel-hover: #1B2939;
            --primary: #A3E635;
            --primary-dark: #8BC530;
            --accent: #F59E0B;
            --cyan: #22D3EE;
            --text-primary: #E6EDF3;
            --text-secondary: #8A97A8;
            --text-muted: #5F6C7E;
            --border: #1F2A3A;
            --divider: #263448;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 18px 40px rgba(0,0,0,0.35);
            --shadow-hover: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.2), 0 0 24px rgba(163,230,53,0.25);
            --font-number: 'Barlow Condensed', 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', system-ui, sans-serif;
            --font-body: 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition: all 0.25s ease;
        }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.85;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: var(--cyan); transition: var(--transition); }
        a:hover { color: var(--primary); }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }
        .text-primary-color { color: var(--primary) !important; }
        .text-accent { color: var(--accent) !important; }
        .text-cyan { color: var(--cyan) !important; }
        .text-muted-custom { color: var(--text-muted) !important; }
        .text-secondary-custom { color: var(--text-secondary) !important; }
        .font-number { font-family: var(--font-number); }

        /* Buttons */
        .btn { border-radius: var(--radius-md); font-weight: 600; padding: 0.6rem 1.4rem; transition: var(--transition); border: none; font-size: 0.95rem; }
        .btn:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.35); outline: none; }
        .btn:active { transform: scale(0.98); }
        .btn-primary-custom {
            background-color: var(--primary);
            color: #0B1220;
            border: 1px solid var(--primary);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(163,230,53,0.3);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.05);
            transform: translateY(-2px);
        }
        .btn-ghost-custom {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-ghost-custom:hover {
            background: rgba(163,230,53,0.1);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-accent-custom {
            background-color: var(--accent);
            color: #0B1220;
            border: 1px solid var(--accent);
            font-weight: 700;
        }
        .btn-accent-custom:hover {
            background-color: #D9820A;
            border-color: #D9820A;
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.3);
        }
        .btn-sm-custom { padding: 0.4rem 1rem; font-size: 0.85rem; }

        /* Navbar */
        .navbar-custom {
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom.scrolled {
            background: rgba(11,18,32,0.97);
            border-bottom-color: var(--divider);
            box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover { color: var(--primary); }
        .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .navbar-custom .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: var(--transition);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover {
            color: var(--text-primary) !important;
        }
        .navbar-custom .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-primary);
            border-radius: var(--radius-sm);
            padding: 0.4rem 0.7rem;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .navbar-toggler-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .navbar-toggler-custom:focus {
            box-shadow: 0 0 0 3px rgba(163,230,53,0.3);
            outline: none;
        }
        .navbar-search {
            display: flex;
            align-items: center;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 0.35rem 0.8rem;
            gap: 8px;
            transition: var(--transition);
            min-width: 180px;
        }
        .navbar-search i {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .navbar-search input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 0.85rem;
            outline: none;
            width: 130px;
        }
        .navbar-search input::placeholder { color: var(--text-muted); }
        .navbar-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
        }
        .navbar-collapse-custom { flex-grow: 0; }
        .navbar-actions { flex-shrink: 0; }

        /* Breadcrumb */
        .breadcrumb-custom {
            background: transparent;
            padding: 1rem 0;
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb-custom .breadcrumb-item a { color: var(--text-secondary); }
        .breadcrumb-custom .breadcrumb-item a:hover { color: var(--primary); }
        .breadcrumb-custom .breadcrumb-item.active { color: var(--text-muted); }
        .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
            content: '/';
            color: var(--text-muted);
            margin: 0 0.5rem;
        }

        /* Category Hero */
        .category-hero {
            padding: 2.5rem 0 1.5rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 2rem;
            background: linear-gradient(180deg, rgba(22,34,49,0.6) 0%, rgba(11,18,32,0) 100%);
        }
        .category-hero h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.3;
            font-family: var(--font-body);
        }
        .category-hero .lead {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 760px;
            line-height: 1.85;
        }
        .category-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(163,230,53,0.12);
            color: var(--primary);
            border: 1px solid rgba(163,230,53,0.3);
            border-radius: 20px;
            padding: 0.25rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Filter Bar */
        .filter-bar {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1rem 1.25rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }
        .filter-bar .filter-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 600;
            white-space: nowrap;
        }
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .filter-tab {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            border-radius: 20px;
            padding: 0.3rem 1rem;
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .filter-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-tab.active {
            background: rgba(163,230,53,0.15);
            border-color: var(--primary);
            color: var(--primary);
            font-weight: 600;
        }
        .filter-search-sm {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 0.3rem 0.8rem;
            margin-left: auto;
            min-width: 160px;
        }
        .filter-search-sm input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 0.85rem;
            outline: none;
            width: 100%;
        }
        .filter-search-sm input::placeholder { color: var(--text-muted); }

        /* Score Cards List */
        .score-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .score-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.1rem 1.35rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            position: relative;
            overflow: hidden;
        }
        .score-card:hover {
            border-color: rgba(163,230,53,0.4);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            background: var(--bg-panel-hover);
        }
        .score-card .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--cyan);
            background: rgba(34,211,238,0.1);
            border: 1px solid rgba(34,211,238,0.25);
            border-radius: 4px;
            padding: 0.15rem 0.55rem;
            white-space: nowrap;
        }
        .score-card .match-time {
            font-size: 0.78rem;
            color: var(--text-muted);
            white-space: nowrap;
            min-width: 60px;
        }
        .score-card .team-row {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 180px;
            flex: 1;
        }
        .score-card .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
        }
        .score-card .team-logo {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--text-secondary);
            flex-shrink: 0;
        }
        .score-card .score-display {
            font-family: var(--font-number);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-primary);
            min-width: 70px;
            text-align: center;
            letter-spacing: 1px;
        }
        .score-card .score-display.live-score {
            color: var(--primary);
        }
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 4px;
            padding: 0.2rem 0.6rem;
            white-space: nowrap;
        }
        .status-badge.live {
            background: rgba(163,230,53,0.15);
            color: var(--primary);
            border: 1px solid rgba(163,230,53,0.4);
        }
        .status-badge.live .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse-dot 1.2s infinite;
        }
        .status-badge.finished {
            background: rgba(138,151,168,0.12);
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }
        .status-badge.upcoming {
            background: rgba(245,158,11,0.12);
            color: var(--accent);
            border: 1px solid rgba(245,158,11,0.35);
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Section */
        .section-custom { padding: 2.75rem 0; }
        .section-custom .section-title {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .section-custom .section-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        .section-divider {
            height: 1px;
            background: var(--divider);
            margin: 0;
            border: none;
        }

        /* Stats Overview */
        .stats-overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }
        .stat-tile {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.25rem 1.5rem;
            transition: var(--transition);
            text-align: center;
        }
        .stat-tile:hover {
            border-color: rgba(163,230,53,0.4);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }
        .stat-tile .stat-number {
            font-family: var(--font-number);
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.1;
        }
        .stat-tile .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 0.35rem;
        }

        /* Focus Ranking */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 0.75rem 1.25rem;
            transition: var(--transition);
        }
        .ranking-item:hover {
            border-color: rgba(163,230,53,0.35);
            background: var(--bg-panel);
        }
        .ranking-item .rank-num {
            font-family: var(--font-number);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            min-width: 40px;
            text-align: center;
        }
        .ranking-item .rank-team {
            font-weight: 600;
            color: var(--text-primary);
            flex: 1;
        }
        .ranking-item .rank-value {
            font-family: var(--font-number);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--cyan);
        }

        /* CTA Section */
        .cta-section-custom {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .cta-section-custom .cta-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
        }
        .cta-section-custom .cta-text p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            margin: 0;
        }

        /* FAQ */
        .accordion-custom .accordion-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md) !important;
            margin-bottom: 0.6rem;
            overflow: hidden;
        }
        .accordion-custom .accordion-button {
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            padding: 1rem 1.25rem;
            font-size: 0.95rem;
            box-shadow: none !important;
            border: none;
        }
        .accordion-custom .accordion-button::after {
            filter: invert(0.7);
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: rgba(163,230,53,0.08);
            color: var(--primary);
        }
        .accordion-custom .accordion-body {
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding: 1rem 1.25rem;
            line-height: 1.8;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(163,230,53,0.25);
        }

        /* Topic Cards */
        .topic-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 160px;
            display: flex;
            align-items: flex-end;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .topic-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
            transition: var(--transition);
        }
        .topic-card .topic-overlay {
            position: relative;
            z-index: 1;
            padding: 1.25rem 1.5rem;
            background: linear-gradient(180deg, transparent 0%, rgba(11,18,32,0.85) 100%);
            width: 100%;
        }
        .topic-card:hover {
            border-color: rgba(163,230,53,0.45);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .topic-card:hover img { opacity: 0.65; }
        .topic-card .topic-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
        }
        .topic-card .topic-sub {
            font-size: 0.82rem;
            color: var(--text-secondary);
        }

        /* Footer */
        .footer-custom {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        .footer-desc {
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.8;
            max-width: 320px;
        }
        .footer-custom h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        .footer-custom ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-custom ul li { margin-bottom: 0.5rem; }
        .footer-custom ul li a {
            color: var(--text-secondary);
            font-size: 0.88rem;
            transition: var(--transition);
        }
        .footer-custom ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--divider);
            margin-top: 2rem;
            padding-top: 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover { color: var(--primary); }

        /* Responsive */
        @media (max-width: 991.98px) {
            .navbar-collapse-custom {
                padding-top: 1rem;
                width: 100%;
            }
            .navbar-search {
                margin: 0.5rem 0;
                width: 100%;
            }
            .navbar-search input { width: 100%; }
            .navbar-actions {
                flex-wrap: wrap;
            }
            .category-hero h1 {
                font-size: 1.8rem;
            }
            .score-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.6rem;
            }
            .score-card .team-row {
                min-width: auto;
                width: 100%;
            }
            .score-card .score-display {
                text-align: left;
            }
            .cta-section-custom {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.5rem;
            }
            .filter-search-sm {
                margin-left: 0;
                width: 100%;
            }
        }
        @media (max-width: 767.98px) {
            .category-hero h1 {
                font-size: 1.5rem;
            }
            .section-custom .section-title {
                font-size: 1.3rem;
            }
            .stats-overview-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.6rem;
            }
            .stat-tile .stat-number { font-size: 1.8rem; }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
        }
        @media (max-width: 575.98px) {
            .category-hero h1 {
                font-size: 1.35rem;
            }
            .btn { width: 100%; }
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .filter-tabs {
                flex-wrap: wrap;
            }
            .ranking-item {
                flex-wrap: wrap;
            }
            .cta-section-custom .cta-text h3 {
                font-size: 1.15rem;
            }
            .section-custom { padding: 2rem 0; }
        }
        @media (max-width: 400px) {
            .navbar-brand-custom {
                font-size: 1rem;
            }
            .brand-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0B1220;
            --bg-secondary: #111B2A;
            --bg-panel: #162231;
            --bg-panel-hover: #1B2939;
            --primary: #A3E635;
            --primary-dark: #8BC530;
            --accent: #F59E0B;
            --cyan: #22D3EE;
            --text-primary: #E6EDF3;
            --text-secondary: #8A97A8;
            --text-muted: #5F6C7E;
            --border: #1F2A3A;
            --divider: #263448;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 18px 40px rgba(0,0,0,0.35);
            --shadow-hover: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.2), 0 0 24px rgba(163,230,53,0.25);
            --font-number: 'Barlow Condensed', 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', system-ui, sans-serif;
            --font-body: 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition: all 0.25s ease;
        }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.85;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: var(--cyan); transition: var(--transition); }
        a:hover { color: var(--primary); }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }
        .text-primary-color { color: var(--primary) !important; }
        .text-accent { color: var(--accent) !important; }
        .text-cyan { color: var(--cyan) !important; }
        .text-muted-custom { color: var(--text-muted) !important; }
        .text-secondary-custom { color: var(--text-secondary) !important; }

        /* Buttons */
        .btn { border-radius: var(--radius-md); font-weight: 600; padding: 0.6rem 1.4rem; transition: var(--transition); border: none; font-size: 0.95rem; }
        .btn:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.35); outline: none; }
        .btn:active { transform: scale(0.98); }
        .btn-primary-custom {
            background-color: var(--primary);
            color: #0B1220;
            border: 1px solid var(--primary);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(163,230,53,0.3);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.05);
            transform: translateY(-2px);
        }
        .btn-ghost-custom {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-ghost-custom:hover {
            background: rgba(163,230,53,0.1);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-accent-custom {
            background-color: var(--accent);
            color: #0B1220;
            border: 1px solid var(--accent);
            font-weight: 700;
        }
        .btn-accent-custom:hover {
            background-color: #D9820A;
            border-color: #D9820A;
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.3);
        }
        .btn-sm-custom { padding: 0.4rem 1rem; font-size: 0.85rem; }

        /* Navbar */
        .navbar-custom {
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom.scrolled {
            background: rgba(11,18,32,0.97);
            border-bottom-color: var(--divider);
            box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover { color: var(--primary); }
        .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .navbar-custom .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: var(--transition);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover {
            color: var(--text-primary) !important;
        }
        .navbar-custom .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .navbar-search {
            display: flex;
            align-items: center;
            background: rgba(22,34,49,0.8);
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 0.35rem 0.9rem;
            gap: 8px;
            min-width: 180px;
            transition: var(--transition);
        }
        .navbar-search i { color: var(--text-muted); font-size: 0.8rem; }
        .navbar-search input {
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 0.85rem;
            outline: none;
            width: 100%;
        }
        .navbar-search input::placeholder { color: var(--text-muted); }
        .navbar-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.25);
            background: rgba(22,34,49,0.95);
        }
        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            font-size: 1.2rem;
        }
        .navbar-collapse-custom {
            background: transparent;
        }
        @media (max-width: 991.98px) {
            .navbar-collapse-custom {
                background: var(--bg-secondary);
                border-radius: var(--radius-lg);
                padding: 1rem;
                margin-top: 0.75rem;
                border: 1px solid var(--border);
            }
            .navbar-custom .nav-link.active::after { display: none; }
            .navbar-search { min-width: 100%; margin: 0.5rem 0; }
            .navbar-actions { flex-wrap: wrap; }
        }

        /* Section base */
        .section-custom { padding: 3.5rem 0; }
        .section-custom-sm { padding: 2.5rem 0; }
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .section-divider {
            height: 1px;
            background: var(--divider);
            margin: 2rem 0;
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
            flex-wrap: wrap;
        }
        .breadcrumb-custom a { color: var(--text-secondary); }
        .breadcrumb-custom a:hover { color: var(--primary); }
        .breadcrumb-custom span { color: var(--text-muted); }

        /* Category hero header */
        .category-hero {
            background: linear-gradient(180deg, rgba(22,34,49,0.6) 0%, rgba(11,18,32,0.9) 100%), url('/assets/images/056cf6ad2dc983ae.webp') center/cover no-repeat;
            padding: 3rem 0 2rem;
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 100%);
        }
        .category-hero .container { position: relative; z-index: 2; }
        .category-hero h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            line-height: 1.35;
        }
        .category-hero .hero-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.85;
        }

        /* Stats bar */
        .stats-bar-custom {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: -1rem;
            position: relative;
            z-index: 3;
        }
        .stat-item-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 120px;
        }
        .stat-item-custom .stat-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .stat-icon-green { background: rgba(163,230,53,0.12); color: var(--primary); }
        .stat-icon-orange { background: rgba(245,158,11,0.12); color: var(--accent); }
        .stat-icon-cyan { background: rgba(34,211,238,0.12); color: var(--cyan); }
        .stat-icon-purple { background: rgba(167,139,250,0.12); color: #A78BFA; }
        .stat-item-custom .stat-number {
            font-family: var(--font-number);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        .stat-item-custom .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
        }

        /* Filter bar */
        .filter-bar-custom {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 0.75rem 0;
        }
        .filter-chip {
            padding: 0.4rem 1rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: var(--bg-secondary);
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .filter-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.06);
        }
        .filter-chip.active {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.12);
            font-weight: 600;
        }
        .filter-chip .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }
        .status-dot-live { background: var(--primary); }
        .status-dot-upcoming { background: var(--cyan); }
        .status-dot-finished { background: var(--text-muted); }

        /* Match list rows */
        .match-list-custom {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .match-row {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: var(--transition);
            flex-wrap: wrap;
        }
        .match-row:hover {
            border-color: rgba(163,230,53,0.35);
            background: var(--bg-panel);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        .match-league-tag {
            flex-shrink: 0;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: rgba(34,211,238,0.12);
            color: var(--cyan);
            border: 1px solid rgba(34,211,238,0.25);
            min-width: 56px;
            text-align: center;
        }
        .match-time {
            font-family: var(--font-number);
            font-size: 0.9rem;
            color: var(--text-secondary);
            min-width: 70px;
            flex-shrink: 0;
        }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex: 1;
            min-width: 200px;
        }
        .match-team {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .match-score {
            font-family: var(--font-number);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
            min-width: 52px;
            text-align: center;
            flex-shrink: 0;
        }
        .match-score.finished { color: var(--text-secondary); }
        .match-score.upcoming { color: var(--text-muted); letter-spacing: 0; font-size: 0.85rem; }
        .match-status-badge {
            flex-shrink: 0;
            padding: 0.25rem 0.75rem;
            border-radius: 14px;
            font-size: 0.72rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .badge-live { background: rgba(163,230,53,0.15); color: var(--primary); border: 1px solid rgba(163,230,53,0.3); }
        .badge-upcoming { background: rgba(34,211,238,0.12); color: var(--cyan); border: 1px solid rgba(34,211,238,0.25); }
        .badge-finished { background: rgba(95,108,126,0.15); color: var(--text-muted); border: 1px solid rgba(95,108,126,0.3); }
        .match-follow-btn {
            background: transparent;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            padding: 0.35rem 0.8rem;
            font-size: 0.75rem;
            font-weight: 500;
            transition: var(--transition);
            flex-shrink: 0;
            cursor: pointer;
        }
        .match-follow-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(245,158,11,0.06);
        }

        /* Focus match cards */
        .focus-match-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .focus-match-card:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .focus-match-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .focus-match-img .overlay-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 0.3rem 0.85rem;
            border-radius: 16px;
            font-size: 0.72rem;
            font-weight: 700;
            background: rgba(11,18,32,0.85);
            color: var(--primary);
            border: 1px solid rgba(163,230,53,0.3);
        }
        .focus-match-body {
            padding: 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .focus-match-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .focus-match-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .focus-match-score {
            font-family: var(--font-number);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
        }

        /* League quick entry */
        .league-entry-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.25rem 1rem;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            height: 100%;
        }
        .league-entry-card:hover {
            border-color: rgba(34,211,238,0.35);
            background: var(--bg-panel);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.3);
        }
        .league-entry-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(34,211,238,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            font-size: 1.3rem;
            color: var(--cyan);
        }
        .league-entry-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }
        .league-entry-count {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* CTA subscribe */
        .subscribe-cta-custom {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .subscribe-cta-custom::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(163,230,53,0.06);
        }
        .subscribe-cta-text { flex: 1; min-width: 260px; position: relative; z-index: 1; }
        .subscribe-cta-text h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.4rem;
        }
        .subscribe-cta-text p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        .subscribe-cta-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .subscribe-cta-form select,
        .subscribe-cta-form input {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            color: var(--text-primary);
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
            min-width: 140px;
        }
        .subscribe-cta-form select:focus,
        .subscribe-cta-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
        }
        .subscribe-cta-form select option { background: var(--bg-secondary); }

        /* FAQ */
        .faq-custom .accordion-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md) !important;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .faq-custom .accordion-button {
            background: var(--bg-secondary);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1.1rem 1.25rem;
            border: none;
            box-shadow: none;
            transition: var(--transition);
        }
        .faq-custom .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        .faq-custom .accordion-button:not(.collapsed) {
            background: var(--bg-panel);
            color: var(--primary);
            border-bottom: 1px solid var(--border);
        }
        .faq-custom .accordion-button::after {
            filter: invert(75%) sepia(50%) saturate(400%) hue-rotate(45deg);
        }
        .faq-custom .accordion-body {
            background: var(--bg-secondary);
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.8;
            padding: 1.1rem 1.25rem;
        }
        .faq-icon-left {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(163,230,53,0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-right: 0.6rem;
        }

        /* Footer */
        .footer-custom {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }
        .footer-brand .brand-icon {
            width: 30px;
            height: 30px;
            font-size: 0.9rem;
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        .footer-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.75;
        }
        .footer-custom h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }
        .footer-custom ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-custom ul li {
            margin-bottom: 0.5rem;
        }
        .footer-custom ul li a {
            color: var(--text-secondary);
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-custom ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--divider);
            margin-top: 2rem;
            padding-top: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* View more link */
        .view-more-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            transition: var(--transition);
        }
        .view-more-link:hover {
            color: var(--primary-dark);
            gap: 12px;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .category-hero h1 { font-size: 1.6rem; }
            .stats-bar-custom { padding: 1rem; }
            .stat-item-custom .stat-number { font-size: 1.4rem; }
            .match-row { padding: 0.85rem 1rem; }
            .subscribe-cta-custom { padding: 1.5rem; }
        }
        @media (max-width: 767.98px) {
            .category-hero h1 { font-size: 1.35rem; }
            .section-custom { padding: 2.5rem 0; }
            .section-title { font-size: 1.25rem; }
            .match-row { gap: 0.6rem; padding: 0.75rem; }
            .match-teams { min-width: 150px; flex-wrap: wrap; }
            .match-score { font-size: 1.1rem; min-width: 40px; }
            .match-time { min-width: auto; font-size: 0.8rem; }
            .filter-bar-custom { gap: 0.35rem; }
            .filter-chip { padding: 0.3rem 0.75rem; font-size: 0.75rem; }
            .subscribe-cta-form { flex-direction: column; width: 100%; }
            .subscribe-cta-form select,
            .subscribe-cta-form input { width: 100%; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        @media (max-width: 575.98px) {
            .category-hero h1 { font-size: 1.2rem; }
            .category-hero .hero-desc { font-size: 0.85rem; }
            .stats-bar-custom { gap: 0.5rem; }
            .stat-item-custom { min-width: 45%; }
            .match-row { flex-wrap: wrap; }
            .match-league-tag { font-size: 0.65rem; min-width: 48px; }
            .match-teams { width: 100%; order: 2; justify-content: center; }
            .match-time { order: 1; }
            .match-score { order: 3; font-size: 1.3rem; }
            .match-status-badge { order: 4; }
            .match-follow-btn { order: 5; margin-left: auto; }
            .btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #0B1220;
            --bg-secondary: #111B2A;
            --bg-panel: #162231;
            --bg-panel-hover: #1B2939;
            --primary: #A3E635;
            --primary-dark: #8BC530;
            --accent: #F59E0B;
            --cyan: #22D3EE;
            --text-primary: #E6EDF3;
            --text-secondary: #8A97A8;
            --text-muted: #5F6C7E;
            --border: #1F2A3A;
            --divider: #263448;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 18px 40px rgba(0,0,0,0.35);
            --shadow-hover: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.2), 0 0 24px rgba(163,230,53,0.25);
            --font-number: 'Barlow Condensed','Barlow','Alibaba PuHuiTi','HarmonyOS Sans SC','Source Han Sans SC',system-ui,sans-serif;
            --font-body: 'Barlow','Alibaba PuHuiTi','HarmonyOS Sans SC','Source Han Sans SC',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
            --transition: all 0.25s ease;
        }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.85;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: var(--cyan); transition: var(--transition); }
        a:hover { color: var(--primary); }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; padding-left: 20px; padding-right: 20px; }
        .text-primary-color { color: var(--primary) !important; }
        .text-accent { color: var(--accent) !important; }
        .text-cyan { color: var(--cyan) !important; }
        .text-muted-custom { color: var(--text-muted) !important; }
        .text-secondary-custom { color: var(--text-secondary) !important; }

        /* Buttons */
        .btn { border-radius: var(--radius-md); font-weight: 600; padding: 0.6rem 1.4rem; transition: var(--transition); border: none; font-size: 0.95rem; }
        .btn:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.35); outline: none; }
        .btn:active { transform: scale(0.98); }
        .btn-primary-custom { background-color: var(--primary); color: #0B1220; border: 1px solid var(--primary); }
        .btn-primary-custom:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); color: #0B1220; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(163,230,53,0.3); }
        .btn-outline-custom { background: transparent; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.25); }
        .btn-outline-custom:hover { border-color: var(--primary); color: var(--primary); background: rgba(163,230,53,0.05); transform: translateY(-2px); }
        .btn-ghost-custom { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-ghost-custom:hover { background: rgba(163,230,53,0.1); color: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
        .btn-accent-custom { background-color: var(--accent); color: #0B1220; border: 1px solid var(--accent); font-weight: 700; }
        .btn-accent-custom:hover { background-color: #D9820A; border-color: #D9820A; color: #0B1220; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
        .btn-sm-custom { padding: 0.4rem 1rem; font-size: 0.85rem; }

        /* Navbar */
        .navbar-custom {
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom.scrolled { background: rgba(11,18,32,0.97); border-bottom-color: var(--divider); box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
        .navbar-brand-custom { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; color: var(--text-primary); white-space: nowrap; }
        .navbar-brand-custom:hover { color: var(--primary); }
        .brand-icon { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2)); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
        .navbar-custom .nav-link { color: var(--text-secondary) !important; font-weight: 500; padding: 0.5rem 1rem !important; position: relative; transition: var(--transition); font-size: 0.9rem; white-space: nowrap; }
        .navbar-custom .nav-link:hover { color: var(--text-primary) !important; }
        .navbar-custom .nav-link.active { color: var(--primary) !important; font-weight: 700; }
        .navbar-custom .nav-link.active::after { content:''; position: absolute; bottom: -2px; left: 1rem; right: 1rem; height: 2px; background: var(--primary); border-radius: 2px; }
        .navbar-toggler-custom { background: transparent; border: 1px solid var(--border); color: var(--text-primary); border-radius: var(--radius-sm); padding: 0.4rem 0.7rem; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
        .navbar-toggler-custom:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.25); outline: none; }
        .navbar-search { display: flex; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; padding: 0.3rem 0.8rem; gap: 8px; transition: var(--transition); }
        .navbar-search i { color: var(--text-muted); font-size: 0.9rem; }
        .navbar-search input { background: transparent; border: none; outline: none; color: var(--text-primary); font-size: 0.9rem; width: 140px; }
        .navbar-search input::placeholder { color: var(--text-muted); }
        .navbar-search:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(163,230,53,0.2); }
        @media (max-width: 991.98px) {
            .navbar-collapse-custom { position: fixed; top: 60px; right: 0; left: 0; background: rgba(11,18,32,0.98); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; max-height: 80vh; overflow-y: auto; z-index: 1049; }
            .navbar-custom .nav-link { padding: 0.7rem 0 !important; font-size: 1rem; border-bottom: 1px solid var(--border); }
            .navbar-custom .nav-link.active::after { display: none; }
            .navbar-search { width: 100%; margin: 0.5rem 0 1rem; }
            .navbar-search input { width: 100%; }
            .navbar-actions { flex-wrap: wrap; gap: 0.5rem !important; }
        }

        /* Page Hero Section - Team Index specific */
        .team-hero {
            padding: 4rem 0 2.5rem;
            border-bottom: 1px solid var(--border);
            background: radial-gradient(ellipse at 30% 20%, rgba(163,230,53,0.05), transparent 55%), radial-gradient(ellipse at 70% 80%, rgba(34,211,238,0.04), transparent 50%);
        }
        .team-hero .breadcrumb-custom { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
        .team-hero .breadcrumb-custom a { color: var(--text-secondary); }
        .team-hero .breadcrumb-custom a:hover { color: var(--primary); }
        .team-hero .breadcrumb-custom .sep { color: var(--text-muted); opacity: 0.6; }
        .team-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.3; color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -0.01em; }
        .team-hero .hero-sub { font-size: 1.1rem; color: var(--text-secondary); max-width: 660px; line-height: 1.8; }
        .team-search-wrap { max-width: 600px; margin-top: 1.5rem; }
        .team-search-wrap .search-field { position: relative; }
        .team-search-wrap .search-field i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
        .team-search-wrap .search-field input { width: 100%; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.8rem 1rem 0.8rem 2.6rem; color: var(--text-primary); font-size: 1rem; transition: var(--transition); }
        .team-search-wrap .search-field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(163,230,53,0.2); }
        .team-hero .chips-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
        .team-hero .chip-link { display: inline-flex; align-items: center; gap: 0.3rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 20px; padding: 0.35rem 0.9rem; font-size: 0.85rem; color: var(--text-secondary); transition: var(--transition); cursor: pointer; }
        .team-hero .chip-link:hover { border-color: var(--primary); color: var(--primary); background: rgba(163,230,53,0.06); }

        /* Stats Overview Strip */
        .stats-strip { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 0; }
        .stats-strip .stat-item { flex: 1 1 160px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.2rem 1.5rem; text-align: center; transition: var(--transition); }
        .stats-strip .stat-item:hover { border-color: rgba(163,230,53,0.3); }
        .stats-strip .stat-num { font-family: var(--font-number); font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
        .stats-strip .stat-label { font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.3rem; }

        /* Section Shared */
        .section-block { padding: 3.5rem 0; }
        .section-block.alt-bg { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .section-heading { margin-bottom: 2rem; }
        .section-heading h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--text-primary); line-height: 1.3; }
        .section-heading .heading-bar { width: 44px; height: 3px; background: var(--primary); border-radius: 3px; margin-bottom: 0.8rem; }
        .section-heading p { color: var(--text-secondary); font-size: 1rem; max-width: 720px; }

        /* Team Cards */
        .team-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        @media (max-width: 991.98px) { .team-card-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 575.98px) { .team-card-grid { grid-template-columns: 1fr; } }
        .team-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
        .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(163,230,53,0.25); }
        .team-card .team-cover { height: 140px; background-size: cover; background-position: center; position: relative; }
        .team-card .team-cover .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,32,0.2) 0%, rgba(11,18,32,0.8) 100%); }
        .team-card .team-cover .league-tag { position: absolute; top: 10px; left: 10px; background: rgba(11,18,32,0.85); border: 1px solid var(--border); border-radius: 4px; padding: 0.2rem 0.6rem; font-size: 0.75rem; color: var(--primary); font-weight: 600; }
        .team-card .team-cover img { width: 100%; height: 100%; object-fit: cover; }
        .team-card .team-body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
        .team-card .team-name-row { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.7rem; }
        .team-card .team-name { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }
        .team-card .team-rank { font-family: var(--font-number); font-size: 1.5rem; font-weight: 700; color: var(--accent); }
        .team-card .team-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0.9rem; }
        .team-card .team-meta .meta-item { font-size: 0.85rem; color: var(--text-secondary); background: rgba(255,255,255,0.04); border-radius: 4px; padding: 0.15rem 0.6rem; }
        .team-card .team-stats { display: flex; justify-content: space-between; margin-bottom: 1rem; }
        .team-card .team-stats .stat { text-align: center; }
        .team-card .team-stats .stat-val { font-family: var(--font-number); font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
        .team-card .team-stats .stat-lbl { font-size: 0.75rem; color: var(--text-muted); }
        .team-card .winrate-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 5px; overflow: hidden; margin-bottom: 1rem; }
        .team-card .winrate-bar .fill { height: 100%; background: var(--primary); border-radius: 5px; }
        .team-card .card-link { font-size: 0.9rem; font-weight: 600; color: var(--cyan); display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; }
        .team-card .card-link:hover { color: var(--primary); }

        /* Power Rankings */
        .rank-list { display: flex; flex-direction: column; gap: 0.8rem; }
        .rank-row { display: flex; align-items: center; gap: 1rem; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.9rem 1.2rem; transition: var(--transition); }
        .rank-row:hover { border-color: rgba(163,230,53,0.3); }
        .rank-row .rank-pos { font-family: var(--font-number); font-size: 1.6rem; font-weight: 700; width: 50px; text-align: center; color: var(--text-muted); flex-shrink: 0; }
        .rank-row .rank-pos.top3 { color: var(--primary); }
        .rank-row .rank-team { flex: 1; }
        .rank-row .rank-team .team-name { font-weight: 600; color: var(--text-primary); }
        .rank-row .rank-team .team-league { font-size: 0.8rem; color: var(--text-muted); }
        .rank-row .rank-data { display: flex; gap: 1.5rem; text-align: center; flex-shrink: 0; }
        .rank-row .rank-data .val { font-family: var(--font-number); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }
        .rank-row .rank-data .lbl { font-size: 0.7rem; color: var(--text-muted); }
        @media (max-width: 575.98px) { .rank-row { flex-wrap: wrap; } .rank-row .rank-data { width: 100%; justify-content: space-around; } }

        /* League Tags Filter */
        .league-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; }
        .league-filter .filter-tag { background: transparent; border: 1px solid var(--border); border-radius: 6px; padding: 0.45rem 1rem; font-size: 0.9rem; color: var(--text-secondary); cursor: pointer; transition: var(--transition); font-weight: 500; }
        .league-filter .filter-tag:hover { border-color: var(--primary); color: var(--primary); }
        .league-filter .filter-tag.active { background: var(--primary); color: #0B1220; border-color: var(--primary); font-weight: 700; }

        /* Data Standard Section */
        .data-standard-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; gap: 2rem; flex-wrap: wrap; }
        .data-standard-card .ds-left { flex: 1 1 300px; }
        .data-standard-card .ds-left h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.8rem; }
        .data-standard-card .ds-left p { color: var(--text-secondary); font-size: 0.95rem; }
        .data-standard-card .ds-right { flex: 1 1 260px; display: flex; flex-direction: column; gap: 0.6rem; justify-content: center; }
        .data-standard-card .ds-right .ds-item { display: flex; align-items: center; gap: 0.6rem; color: var(--text-secondary); font-size: 0.9rem; }
        .data-standard-card .ds-right .ds-item i { color: var(--primary); font-size: 0.9rem; }

        /* FAQ */
        .accordion-custom .accordion-item { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 0.7rem; overflow: hidden; }
        .accordion-custom .accordion-button { background: var(--bg-panel); color: var(--text-primary); font-weight: 600; padding: 1rem 1.3rem; font-size: 0.95rem; box-shadow: none; }
        .accordion-custom .accordion-button:not(.collapsed) { background: var(--bg-panel-hover); color: var(--primary); box-shadow: none; }
        .accordion-custom .accordion-button:focus { box-shadow: 0 0 0 3px rgba(163,230,53,0.2); }
        .accordion-custom .accordion-button::after { filter: invert(0.6); }
        .accordion-custom .accordion-body { color: var(--text-secondary); padding: 1rem 1.3rem 1.3rem; font-size: 0.92rem; line-height: 1.8; background: var(--bg-panel); }

        /* CTA Panel */
        .cta-panel { background: linear-gradient(135deg, rgba(163,230,53,0.08), rgba(34,211,238,0.06)); border: 1px solid rgba(163,230,53,0.2); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
        .cta-panel .cta-text { flex: 1 1 300px; }
        .cta-panel .cta-text h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
        .cta-panel .cta-text p { color: var(--text-secondary); margin-bottom: 0; }
        .cta-panel .cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

        /* Footer */
        .footer-custom { background: #060B14; border-top: 1px solid var(--border); padding: 3rem 0 0; margin-top: 2rem; }
        .footer-custom h5 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; }
        .footer-custom ul { list-style: none; padding: 0; margin: 0; }
        .footer-custom ul li { margin-bottom: 0.5rem; }
        .footer-custom ul li a { color: var(--text-secondary); font-size: 0.9rem; }
        .footer-custom ul li a:hover { color: var(--primary); }
        .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.8rem; }
        .footer-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }
        .footer-bottom { border-top: 1px solid var(--border); margin-top: 2rem; padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
        .footer-bottom .copyright { color: var(--text-muted); font-size: 0.85rem; }
        .footer-bottom a { color: var(--text-muted); font-size: 0.85rem; }
        .footer-bottom a:hover { color: var(--primary); }
        @media (max-width: 767.98px) { .footer-bottom { flex-direction: column; text-align: center; } }

        /* Responsive General */
        @media (max-width: 767.98px) {
            .section-block { padding: 2.5rem 0; }
            .team-hero { padding: 2.5rem 0 1.8rem; }
            .stats-strip .stat-item { flex: 1 1 calc(50% - 0.5rem); }
        }
        @media (max-width: 575.98px) {
            .team-hero h1 { font-size: 1.6rem; }
            .team-hero .hero-sub { font-size: 1rem; }
            .stats-strip .stat-item { flex: 1 1 100%; }
            .cta-panel { padding: 1.8rem; }
            .data-standard-card { padding: 1.5rem; }
        }

/* roulang page: category4 */
:root {
            --bg-primary: #0B1220;
            --bg-secondary: #111B2A;
            --bg-panel: #162231;
            --bg-panel-hover: #1B2939;
            --primary: #A3E635;
            --primary-dark: #8BC530;
            --accent: #F59E0B;
            --cyan: #22D3EE;
            --text-primary: #E6EDF3;
            --text-secondary: #8A97A8;
            --text-muted: #5F6C7E;
            --border: #1F2A3A;
            --divider: #263448;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 18px 40px rgba(0,0,0,0.35);
            --shadow-hover: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.2), 0 0 24px rgba(163,230,53,0.25);
            --font-number: 'Barlow Condensed', 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', system-ui, sans-serif;
            --font-body: 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition: all 0.25s ease;
        }

        /* 基础 reset 与全局样式 */
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.85;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--cyan);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            margin: 0 0 1rem;
            font-weight: 700;
        }
        p {
            margin: 0 0 1rem;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
            margin-left: auto;
            margin-right: auto;
        }
        .text-primary-color {
            color: var(--primary) !important;
        }
        .text-accent {
            color: var(--accent) !important;
        }
        .text-cyan {
            color: var(--cyan) !important;
        }
        .text-muted-custom {
            color: var(--text-muted) !important;
        }
        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }
        .section {
            padding: 4rem 0;
        }
        .section-alt {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        /* 按钮系统 */
        .btn {
            border-radius: var(--radius-md);
            font-weight: 600;
            padding: 0.6rem 1.4rem;
            transition: var(--transition);
            border: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn:focus {
            box-shadow: 0 0 0 3px rgba(163,230,53,0.35);
            outline: none;
        }
        .btn:active {
            transform: scale(0.98);
        }
        .btn-primary-custom {
            background-color: var(--primary);
            color: #0B1220;
            border: 1px solid var(--primary);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(163,230,53,0.3);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.05);
            transform: translateY(-2px);
        }
        .btn-ghost-custom {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-ghost-custom:hover {
            background: rgba(163,230,53,0.1);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-accent-custom {
            background-color: var(--accent);
            color: #0B1220;
            border: 1px solid var(--accent);
            font-weight: 700;
        }
        .btn-accent-custom:hover {
            background-color: #D9820A;
            border-color: #D9820A;
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.3);
        }
        .btn-sm-custom {
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
        }

        /* 导航 */
        .navbar-custom {
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom.scrolled {
            background: rgba(11,18,32,0.97);
            border-bottom-color: var(--divider);
            box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--primary);
        }
        .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .navbar-custom .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: var(--transition);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover {
            color: var(--text-primary) !important;
        }
        .navbar-custom .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .navbar-search {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 0.35rem 0.8rem;
            gap: 0.5rem;
            transition: var(--transition);
            min-width: 200px;
        }
        .navbar-search i {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .navbar-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-primary);
            font-size: 0.85rem;
            width: 100%;
        }
        .navbar-search input::placeholder {
            color: var(--text-muted);
        }
        .navbar-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.25);
        }
        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-primary);
            border-radius: 8px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .navbar-toggler-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .navbar-actions {
            flex-shrink: 0;
        }

        /* 面包屑 */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
        }
        .breadcrumb-custom a {
            color: var(--text-secondary);
        }
        .breadcrumb-custom a:hover {
            color: var(--primary);
        }
        .breadcrumb-custom .separator {
            color: var(--text-muted);
            font-size: 0.7rem;
        }
        .breadcrumb-custom .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Hero 分类头部 */
        .hero-category {
            padding: 3.5rem 0 2.5rem;
            background-color: var(--bg-primary);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }
        .hero-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 15% 30%, rgba(163,230,53,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 70%, rgba(34,211,238,0.05) 0%, transparent 45%),
                repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
            pointer-events: none;
        }
        .hero-category .container {
            position: relative;
            z-index: 2;
        }
        .hero-category h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.85rem;
            letter-spacing: 0.5px;
        }
        .hero-category .hero-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.85;
            margin-bottom: 1.5rem;
        }
        .hero-stats-row {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
        }
        .hero-stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        .hero-stat-item .stat-value {
            font-family: var(--font-number);
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .hero-stat-item .stat-value.accent {
            color: var(--accent);
        }
        .hero-stat-item .stat-value.cyan {
            color: var(--cyan);
        }
        .hero-stat-item .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* 通用卡片 */
        .panel-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            transition: var(--transition);
            height: 100%;
        }
        .panel-card:hover {
            background: var(--bg-panel-hover);
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
        }

        /* 数据榜单主体 - 列表行 */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .ranking-row {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1rem 1.25rem;
            transition: var(--transition);
        }
        .ranking-row:hover {
            border-color: rgba(163,230,53,0.35);
            background: var(--bg-panel-hover);
        }
        .ranking-row .rank-number {
            font-family: var(--font-number);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-muted);
            width: 48px;
            text-align: center;
            flex-shrink: 0;
        }
        .ranking-row.top1 .rank-number {
            color: var(--accent);
            font-size: 1.75rem;
        }
        .ranking-row.top2 .rank-number {
            color: var(--cyan);
        }
        .ranking-row.top3 .rank-number {
            color: var(--primary);
        }
        .ranking-row .team-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-row .team-name {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: 0.15rem;
        }
        .ranking-row .team-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .ranking-row .stat-block {
            display: flex;
            gap: 2rem;
            flex-shrink: 0;
        }
        .ranking-row .stat-cell {
            text-align: right;
            min-width: 64px;
        }
        .ranking-row .stat-cell .stat-num {
            font-family: var(--font-number);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .ranking-row .stat-cell .stat-unit {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .ranking-row .trend-up {
            color: var(--primary);
            font-size: 0.85rem;
        }
        .ranking-row .trend-down {
            color: #EF4444;
            font-size: 0.85rem;
        }
        .ranking-row .trend-flat {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* 标签筛选 */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .filter-tag {
            padding: 0.4rem 1.1rem;
            border-radius: 20px;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            user-select: none;
            white-space: nowrap;
        }
        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.06);
        }
        .filter-tag.active {
            background: var(--primary);
            color: #0B1220;
            border-color: var(--primary);
            font-weight: 700;
        }

        /* 焦点榜单卡片 */
        .focus-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        .focus-card:hover {
            border-color: rgba(163,230,53,0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .focus-card .focus-img {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--bg-secondary);
        }
        .focus-card .focus-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .focus-card .focus-img .overlay-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            padding: 0.3rem 0.8rem;
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 600;
        }
        .focus-card .focus-body {
            padding: 1.25rem 1.5rem 1.5rem;
        }
        .focus-card .focus-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        .focus-card .focus-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        .focus-card .focus-stats {
            display: flex;
            gap: 1.5rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--border);
        }
        .focus-card .focus-stat {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }
        .focus-card .focus-stat .fs-num {
            font-family: var(--font-number);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.1;
        }
        .focus-card .focus-stat .fs-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* 选手榜单 */
        .player-list {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .player-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 0.8rem 1.1rem;
            transition: var(--transition);
        }
        .player-row:hover {
            border-color: rgba(34,211,238,0.35);
            background: var(--bg-panel-hover);
        }
        .player-row .player-rank {
            font-family: var(--font-number);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-muted);
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }
        .player-row.top-player .player-rank {
            color: var(--accent);
        }
        .player-row .player-info {
            flex: 1;
            min-width: 0;
        }
        .player-row .player-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
        }
        .player-row .player-team {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .player-row .player-stats {
            display: flex;
            gap: 1.5rem;
            flex-shrink: 0;
        }
        .player-row .p-stat {
            text-align: right;
        }
        .player-row .p-stat .p-num {
            font-family: var(--font-number);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--cyan);
            line-height: 1.2;
        }
        .player-row .p-stat .p-label {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* 专题入口宽卡 */
        .wide-cta-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .wide-cta-card::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(163,230,53,0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .wide-cta-card:hover {
            border-color: rgba(163,230,53,0.4);
            box-shadow: var(--shadow-hover);
        }
        .wide-cta-card .cta-text {
            flex: 1;
            min-width: 240px;
        }
        .wide-cta-card .cta-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        .wide-cta-card .cta-text p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0;
            line-height: 1.7;
        }
        .wide-cta-card .cta-actions {
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            display: flex;
            gap: 0.8rem;
        }

        /* FAQ 手风琴自定义 */
        .faq-custom .accordion-item {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .faq-custom .accordion-button {
            background: var(--bg-panel);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1rem 1.25rem;
            border: none;
            box-shadow: none;
            position: relative;
            transition: var(--transition);
        }
        .faq-custom .accordion-button::after {
            display: none;
        }
        .faq-custom .accordion-button .faq-icon {
            margin-right: 0.75rem;
            color: var(--primary);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .faq-custom .accordion-button:not(.collapsed) {
            background: var(--bg-panel-hover);
            color: var(--primary);
            box-shadow: none;
        }
        .faq-custom .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
            border: none;
        }
        .faq-custom .accordion-button .toggle-arrow {
            margin-left: auto;
            font-size: 0.8rem;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .faq-custom .accordion-button:not(.collapsed) .toggle-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-custom .accordion-body {
            background: var(--bg-secondary);
            color: var(--text-secondary);
            padding: 1.25rem;
            font-size: 0.9rem;
            line-height: 1.8;
            border-top: 1px solid var(--border);
        }

        /* 订阅提醒 CTA */
        .subscribe-cta {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .subscribe-cta .subscribe-info h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }
        .subscribe-cta .subscribe-info p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 0;
        }
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .subscribe-form .form-input-wrap {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .subscribe-form input[type="email"],
        .subscribe-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 0.7rem 1rem;
            color: var(--text-primary);
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
        }
        .subscribe-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
        }
        .subscribe-form .form-hint {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .subscribe-form .form-success {
            font-size: 0.85rem;
            color: var(--primary);
            display: none;
        }
        .subscribe-form .form-success.show {
            display: block;
        }

        /* 相关资源链接 */
        .resource-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
        }
        .resource-link-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 1.1rem 1.25rem;
            transition: var(--transition);
            color: var(--text-primary);
        }
        .resource-link-card:hover {
            border-color: rgba(163,230,53,0.35);
            background: var(--bg-panel-hover);
            color: var(--text-primary);
            transform: translateY(-2px);
        }
        .resource-link-card .rl-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(163,230,53,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
        }
        .resource-link-card .rl-text {
            flex: 1;
        }
        .resource-link-card .rl-title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.15rem;
        }
        .resource-link-card .rl-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .resource-link-card .rl-arrow {
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .resource-link-card:hover .rl-arrow {
            color: var(--primary);
            transform: translateX(4px);
        }

        /* 查看更多按钮区 */
        .view-more-wrap {
            display: flex;
            justify-content: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            margin-top: 1rem;
        }

        /* 页脚 */
        .footer-custom {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 3.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        .footer-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.75;
            max-width: 320px;
        }
        .footer-custom h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.25rem;
        }
        .footer-custom ul li {
            margin-bottom: 0.6rem;
        }
        .footer-custom ul li a {
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-custom ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
            margin-top: 2.5rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* 响应式 */
        @media (max-width: 991.98px) {
            .navbar-custom .navbar-collapse {
                padding-top: 1rem;
                padding-bottom: 0.5rem;
            }
            .navbar-custom .nav-link {
                padding: 0.6rem 0.5rem !important;
            }
            .navbar-search {
                margin-bottom: 0.5rem;
                width: 100%;
                min-width: unset;
            }
            .navbar-actions {
                flex-wrap: wrap;
                width: 100%;
            }
            .hero-category h1 {
                font-size: 1.6rem;
            }
            .subscribe-cta {
                grid-template-columns: 1fr;
                padding: 1.75rem;
            }
            .ranking-row {
                flex-wrap: wrap;
                gap: 0.75rem;
            }
            .ranking-row .stat-block {
                gap: 1.25rem;
                flex-wrap: wrap;
            }
            .ranking-row .stat-cell {
                min-width: 52px;
            }
        }
        @media (max-width: 767.98px) {
            .section {
                padding: 2.75rem 0;
            }
            .hero-category {
                padding: 2.5rem 0 2rem;
            }
            .hero-category h1 {
                font-size: 1.4rem;
            }
            .hero-stats-row {
                gap: 1.5rem;
            }
            .hero-stat-item .stat-value {
                font-size: 1.5rem;
            }
            .ranking-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            .ranking-row .rank-number {
                width: auto;
                font-size: 1.25rem;
            }
            .ranking-row .stat-block {
                width: 100%;
                justify-content: space-between;
                gap: 0.75rem;
            }
            .ranking-row .stat-cell {
                text-align: left;
                min-width: auto;
            }
            .player-row {
                flex-wrap: wrap;
                gap: 0.6rem;
            }
            .player-row .player-stats {
                gap: 1rem;
                flex-wrap: wrap;
                width: 100%;
                justify-content: space-between;
            }
            .wide-cta-card {
                padding: 1.5rem;
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-form .form-input-wrap {
                flex-direction: column;
            }
            .subscribe-form input[type="email"],
            .subscribe-form input[type="text"] {
                min-width: 100%;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero-category h1 {
                font-size: 1.25rem;
            }
            .hero-category .hero-desc {
                font-size: 0.95rem;
            }
            .btn {
                padding: 0.55rem 1.1rem;
                font-size: 0.9rem;
                width: 100%;
            }
            .btn + .btn {
                margin-top: 0.5rem;
            }
            .navbar-brand-custom {
                font-size: 1rem;
            }
            .panel-card {
                padding: 1.1rem;
            }
            .focus-card .focus-body {
                padding: 1rem 1.1rem 1.25rem;
            }
            .wide-cta-card {
                padding: 1.25rem;
            }
            .wide-cta-card .cta-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-stats-row {
                flex-wrap: wrap;
                gap: 1.25rem;
            }
            .filter-tag {
                padding: 0.3rem 0.8rem;
                font-size: 0.75rem;
            }
        }

/* roulang page: category5 */
:root {
            --bg-primary: #0B1220;
            --bg-secondary: #111B2A;
            --bg-panel: #162231;
            --bg-panel-hover: #1B2939;
            --primary: #A3E635;
            --primary-dark: #8BC530;
            --accent: #F59E0B;
            --cyan: #22D3EE;
            --text-primary: #E6EDF3;
            --text-secondary: #8A97A8;
            --text-muted: #5F6C7E;
            --border: #1F2A3A;
            --divider: #263448;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 6px;
            --shadow-card: 0 18px 40px rgba(0,0,0,0.35);
            --shadow-hover: 0 24px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.2), 0 0 24px rgba(163,230,53,0.25);
            --font-number: 'Barlow Condensed', 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', system-ui, sans-serif;
            --font-body: 'Barlow', 'Alibaba PuHuiTi', 'HarmonyOS Sans SC', 'Source Han Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --transition: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.85;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--cyan);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .text-primary-color {
            color: var(--primary) !important;
        }
        .text-accent {
            color: var(--accent) !important;
        }
        .text-cyan {
            color: var(--cyan) !important;
        }
        .text-muted-custom {
            color: var(--text-muted) !important;
        }
        .text-secondary-custom {
            color: var(--text-secondary) !important;
        }

        .btn {
            border-radius: var(--radius-md);
            font-weight: 600;
            padding: 0.6rem 1.4rem;
            transition: var(--transition);
            border: none;
            font-size: 0.95rem;
        }
        .btn:focus {
            box-shadow: 0 0 0 3px rgba(163,230,53,0.35);
            outline: none;
        }
        .btn:active {
            transform: scale(0.98);
        }
        .btn-primary-custom {
            background-color: var(--primary);
            color: #0B1220;
            border: 1px solid var(--primary);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(163,230,53,0.3);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.05);
            transform: translateY(-2px);
        }
        .btn-ghost-custom {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-ghost-custom:hover {
            background: rgba(163,230,53,0.1);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-accent-custom {
            background-color: var(--accent);
            color: #0B1220;
            border: 1px solid var(--accent);
            font-weight: 700;
        }
        .btn-accent-custom:hover {
            background-color: #D9820A;
            border-color: #D9820A;
            color: #0B1220;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245,158,11,0.3);
        }
        .btn-sm-custom {
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
        }

        .navbar-custom {
            background: rgba(11,18,32,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom.scrolled {
            background: rgba(11,18,32,0.97);
            border-bottom-color: var(--divider);
            box-shadow: 0 4px 24px rgba(0,0,0,0.4);
        }
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
            white-space: nowrap;
        }
        .navbar-brand-custom:hover {
            color: var(--primary);
        }
        .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(163,230,53,0.2), rgba(34,211,238,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .navbar-custom .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: var(--transition);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover {
            color: var(--text-primary) !important;
        }
        .navbar-custom .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }
        .navbar-custom .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .navbar-toggler-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .navbar-collapse-custom {
            flex-basis: 100%;
            flex-grow: 1;
            align-items: center;
        }
        .navbar-search {
            display: flex;
            align-items: center;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 0.35rem 0.75rem;
            gap: 8px;
            min-width: 200px;
        }
        .navbar-search i {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .navbar-search input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-primary);
            font-size: 0.85rem;
            width: 100%;
        }
        .navbar-search input::placeholder {
            color: var(--text-muted);
        }
        .navbar-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(163,230,53,0.2);
        }
        .navbar-actions {
            flex-shrink: 0;
        }

        .section-block {
            padding: 4rem 0;
        }
        .section-block-sm {
            padding: 2.5rem 0;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        .section-subtitle {
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        .panel-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            overflow: hidden;
        }
        .panel-card:hover {
            border-color: rgba(163,230,53,0.2);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .badge-custom {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .badge-live {
            background: rgba(163,230,53,0.12);
            color: var(--primary);
            border: 1px solid rgba(163,230,53,0.3);
        }
        .badge-finished {
            background: rgba(138,151,168,0.12);
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }
        .badge-upcoming {
            background: rgba(34,211,238,0.12);
            color: var(--cyan);
            border: 1px solid rgba(34,211,238,0.3);
        }
        .badge-accent {
            background: rgba(245,158,11,0.12);
            color: var(--accent);
            border: 1px solid rgba(245,158,11,0.3);
        }

        .page-header {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border);
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 50%, rgba(163,230,53,0.04) 0%, transparent 55%),
                              radial-gradient(circle at 80% 30%, rgba(34,211,238,0.04) 0%, transparent 55%);
            pointer-events: none;
        }
        .page-header h1 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
        }
        .page-header .lead {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 780px;
            line-height: 1.85;
            position: relative;
            z-index: 1;
        }

        .league-card {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .league-card:hover {
            border-color: rgba(163,230,53,0.2);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .league-card .card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 7;
            overflow: hidden;
            background: var(--bg-secondary);
        }
        .league-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
            transition: var(--transition);
        }
        .league-card:hover .card-img-wrap img {
            opacity: 1;
            transform: scale(1.03);
        }
        .league-card .card-body {
            padding: 1.25rem 1.4rem 1.4rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .league-card .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--text-primary);
        }
        .league-card .card-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 1rem;
            flex: 1;
        }
        .league-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        .league-meta span {
            font-size: 0.78rem;
            color: var(--text-muted);
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            padding: 0.15rem 0.55rem;
            border-radius: 20px;
            white-space: nowrap;
        }

        .data-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.25rem 1.5rem;
            margin-bottom: 1.5rem;
        }
        .data-strip .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .data-strip .stat-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(163,230,53,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            flex-shrink: 0;
        }
        .data-strip .stat-num {
            font-family: var(--font-number);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }
        .data-strip .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
        .filter-btn {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            border-radius: 20px;
            padding: 0.4rem 1.1rem;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-btn.active {
            background: rgba(163,230,53,0.12);
            border-color: var(--primary);
            color: var(--primary);
            font-weight: 700;
        }

        .comparison-panel {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
        }
        .comparison-panel .comp-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--text-primary);
        }
        .comp-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.65rem 0;
            border-bottom: 1px solid var(--divider);
        }
        .comp-row:last-child {
            border-bottom: none;
        }
        .comp-row .comp-name {
            color: var(--text-secondary);
            width: 110px;
            flex-shrink: 0;
            font-size: 0.85rem;
        }
        .comp-bar {
            flex: 1;
            height: 8px;
            background: var(--bg-primary);
            border-radius: 4px;
            overflow: hidden;
        }
        .comp-bar .fill {
            height: 100%;
            border-radius: 4px;
            background: var(--primary);
            transition: width 0.8s ease;
        }
        .comp-bar .fill.accent {
            background: var(--accent);
        }
        .comp-bar .fill.cyan {
            background: var(--cyan);
        }
        .comp-value {
            font-family: var(--font-number);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            width: 60px;
            text-align: right;
            flex-shrink: 0;
        }

        .ranking-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ranking-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0.75rem 0.9rem;
            border-bottom: 1px solid var(--divider);
            transition: var(--transition);
            border-radius: 6px;
        }
        .ranking-list li:last-child {
            border-bottom: none;
        }
        .ranking-list li:hover {
            background: var(--bg-panel);
        }
        .rank-num {
            font-family: var(--font-number);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-muted);
            width: 30px;
            text-align: center;
            flex-shrink: 0;
        }
        .rank-num.top1 {
            color: var(--accent);
        }
        .rank-num.top2 {
            color: var(--text-secondary);
        }
        .rank-num.top3 {
            color: #D9820A;
        }
        .rank-team {
            flex: 1;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .rank-score {
            font-family: var(--font-number);
            font-weight: 700;
            color: var(--primary);
            font-size: 1.15rem;
        }

        .faq-custom .accordion-item {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .faq-custom .accordion-button {
            background: transparent;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1rem 1.25rem;
            border: none;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            cursor: pointer;
            transition: var(--transition);
        }
        .faq-custom .accordion-button:hover {
            color: var(--primary);
            background: rgba(163,230,53,0.04);
        }
        .faq-custom .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: rgba(163,230,53,0.06);
        }
        .faq-custom .accordion-button::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.8rem;
            color: var(--text-muted);
            transition: var(--transition);
        }
        .faq-custom .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-custom .accordion-body {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.8;
            padding: 0 1.25rem 1.25rem;
        }

        .cta-panel {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .cta-panel .cta-text h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--text-primary);
        }
        .cta-panel .cta-text p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.9rem;
        }

        .topic-tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .topic-tag {
            background: var(--bg-panel);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: var(--transition);
        }
        .topic-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(163,230,53,0.06);
        }

        .footer-custom {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-custom .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        .footer-custom .footer-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        .footer-custom h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            letter-spacing: 0.03em;
        }
        .footer-custom ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-custom ul li {
            margin-bottom: 0.5rem;
        }
        .footer-custom ul a {
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-custom ul a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--divider);
            margin-top: 2rem;
            padding-top: 1.25rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-bottom a:hover {
            color: var(--primary);
        }

        @media (max-width: 991.98px) {
            .navbar-collapse-custom {
                background: var(--bg-secondary);
                border-radius: var(--radius-md);
                padding: 1rem;
                margin-top: 0.75rem;
                border: 1px solid var(--border);
            }
            .navbar-search {
                width: 100%;
                margin: 0.75rem 0;
                min-width: 0;
            }
            .navbar-actions {
                width: 100%;
                flex-wrap: wrap;
            }
            .navbar-actions .btn {
                flex: 1;
                text-align: center;
            }
            .page-header h1 {
                font-size: 1.75rem;
            }
            .data-strip {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: flex-start;
            }
            .section-title {
                font-size: 1.35rem;
            }
        }

        @media (max-width: 767.98px) {
            .page-header {
                padding: 2rem 0 1.5rem;
            }
            .page-header h1 {
                font-size: 1.5rem;
            }
            .section-block {
                padding: 2.5rem 0;
            }
            .section-block-sm {
                padding: 2rem 0;
            }
            .cta-panel {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
            }
            .cta-panel .btn {
                width: 100%;
            }
            .comparison-panel {
                padding: 1.25rem;
            }
            .comp-row .comp-name {
                width: 85px;
                font-size: 0.75rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .data-strip .stat-num {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .page-header h1 {
                font-size: 1.35rem;
            }
            .page-header .lead {
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .filter-btn {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
            }
            .btn {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
            }
            .navbar-brand-custom {
                font-size: 1rem;
            }
            .brand-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
            .footer-custom {
                padding: 2rem 0 1rem;
            }
            .footer-bottom {
                gap: 0.5rem;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
