/* roulang page: index */
:root {
            --brand-primary: #e63946;
            --brand-primary-dark: #c1121f;
            --brand-secondary: #1d3557;
            --brand-accent: #ffb703;
            --brand-accent-light: #fff3cd;
            --bg-page: #f8f9fa;
            --bg-card: #ffffff;
            --bg-dark: #0d1b2a;
            --bg-dark-2: #1b2838;
            --text-primary: #1a1a2e;
            --text-secondary: #495057;
            --text-muted: #6c757d;
            --text-light: #adb5bd;
            --text-on-dark: #e9ecef;
            --border-color: #dee2e6;
            --border-light: #e9ecef;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.14), 0 6px 14px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --section-gap: 64px;
            --section-gap-mobile: 40px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            transition: color var(--transition-fast), background-color var(--transition-fast);
            color: inherit;
        }
        a:hover {
            color: var(--brand-primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--brand-primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            line-height: 1.3;
            color: var(--text-primary);
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 48px;
            height: 3px;
            background: var(--brand-primary);
            border-radius: 3px;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            max-width: 600px;
        }

        .container-custom {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-spacing {
            padding-top: var(--section-gap);
            padding-bottom: var(--section-gap);
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-base);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            flex-wrap: nowrap;
            gap: 16px;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--brand-secondary);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .logo-link:hover {
            color: var(--brand-primary);
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--brand-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .nav-tabs-row {
            display: flex;
            flex-wrap: nowrap;
            gap: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 2px 0;
            flex-shrink: 1;
            min-width: 0;
        }
        .nav-tabs-row::-webkit-scrollbar {
            display: none;
        }
        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            background: transparent;
            white-space: nowrap;
            transition: all var(--transition-fast);
            border: 1.5px solid transparent;
            flex-shrink: 0;
        }
        .nav-chip:hover {
            color: var(--brand-primary);
            background: #fef2f2;
            border-color: #fecaca;
        }
        .nav-chip.active {
            color: #fff;
            background: var(--brand-primary);
            border-color: var(--brand-primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
        }
        .nav-chip.nav-home {
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-header-cta {
            background: var(--brand-primary);
            color: #fff;
            border: none;
            border-radius: 24px;
            padding: 9px 20px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.25);
        }
        .btn-header-cta:hover {
            background: var(--brand-primary-dark);
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
            transform: translateY(-1px);
            color: #fff;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--text-primary);
            padding: 6px;
            border-radius: 6px;
        }
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--bg-card);
            z-index: 1100;
            box-shadow: var(--shadow-xl);
            transition: right var(--transition-slow);
            padding: 24px 20px;
            overflow-y: auto;
        }
        .mobile-nav-drawer.open {
            right: 0;
        }
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1090;
        }
        .mobile-nav-overlay.show {
            display: block;
        }
        .mobile-nav-drawer .nav-chip {
            display: block;
            margin-bottom: 6px;
            text-align: center;
            border-radius: var(--radius-md);
            padding: 12px 16px;
            font-size: 1rem;
        }
        .drawer-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-muted);
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #132238 50%, #0d1f35 100%);
            color: #fff;
            padding: 70px 0 80px;
            overflow: hidden;
            min-height: 480px;
            display: flex;
            align-items: center;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0.9) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        .hero-text h1 .accent {
            color: var(--brand-accent);
        }
        .hero-text .hero-desc {
            font-size: 1.05rem;
            color: #cbd5e1;
            margin-bottom: 24px;
            line-height: 1.65;
            max-width: 480px;
        }
        .hero-stats-row {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .hero-stat-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            padding: 16px 22px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 90px;
        }
        .hero-stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--brand-accent);
            line-height: 1.1;
        }
        .hero-stat-label {
            font-size: 0.8rem;
            color: #94a3b8;
            margin-top: 4px;
        }
        .hero-visual-card {
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 20px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .hero-visual-card img {
            border-radius: var(--radius-md);
            width: 100%;
            object-fit: cover;
            aspect-ratio: 16/10;
        }
        .hero-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-primary);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 12px;
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(230, 57, 70, 0);
            }
        }
        .hero-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            animation: blink-dot 1.2s infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* ========== CATEGORY ENTRANCE ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .category-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-primary);
            color: var(--brand-primary);
        }
        .category-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .cat-icon-1 {
            background: #fef2f2;
            color: #e63946;
        }
        .cat-icon-2 {
            background: #eff6ff;
            color: #2563eb;
        }
        .cat-icon-3 {
            background: #fffbeb;
            color: #d97706;
        }
        .cat-icon-4 {
            background: #f0fdf4;
            color: #16a34a;
        }
        .cat-icon-5 {
            background: #fdf4ff;
            color: #9333ea;
        }
        .cat-icon-6 {
            background: #f0f9ff;
            color: #0891b2;
        }
        .category-card .cat-title {
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.3;
        }
        .category-card .cat-count {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ========== LIVE SCORE STRIP ========== */
        .live-strip-wrap {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }
        .live-strip-header {
            background: var(--brand-primary);
            color: #fff;
            padding: 12px 20px;
            font-weight: 700;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .live-strip-body {
            padding: 8px 0;
            max-height: 320px;
            overflow-y: auto;
        }
        .live-match-row {
            display: flex;
            align-items: center;
            padding: 11px 20px;
            border-bottom: 1px solid var(--border-light);
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .live-match-row:last-child {
            border-bottom: none;
        }
        .live-match-row:hover {
            background: #fef2f2;
        }
        .live-match-time {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--brand-primary);
            min-width: 44px;
            text-align: center;
        }
        .live-match-teams {
            flex: 1;
            font-weight: 500;
            font-size: 0.9rem;
            min-width: 0;
        }
        .live-match-score {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text-primary);
            min-width: 48px;
            text-align: center;
            background: #f8f9fa;
            border-radius: 6px;
            padding: 4px 10px;
        }
        .live-match-status {
            font-size: 0.75rem;
            color: var(--text-muted);
            min-width: 32px;
            text-align: right;
        }

        /* ========== NEWS / ARTICLES ========== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .news-item {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
            align-items: flex-start;
        }
        .news-item:hover {
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
            transform: translateX(2px);
        }
        .news-thumb {
            width: 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .news-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-excerpt {
            font-size: 0.83rem;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-readmore {
            font-size: 0.82rem;
            color: var(--brand-primary);
            font-weight: 600;
            display: inline-block;
            margin-top: 4px;
        }

        /* ========== DATA PANEL ========== */
        .data-panel-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .data-panel-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-base);
        }
        .data-panel-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .data-panel-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }
        .dp-icon-a {
            background: #fef2f2;
            color: #e63946;
        }
        .dp-icon-b {
            background: #eff6ff;
            color: #2563eb;
        }
        .dp-icon-c {
            background: #fffbeb;
            color: #d97706;
        }
        .dp-icon-d {
            background: #f0fdf4;
            color: #16a34a;
        }
        .data-panel-info .dp-value {
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-primary);
        }
        .data-panel-info .dp-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ========== FAQ ========== */
        .faq-list .accordion-button {
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius-md) !important;
            box-shadow: none !important;
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            padding: 14px 18px;
        }
        .faq-list .accordion-button:not(.collapsed) {
            background: #fef2f2;
            color: var(--brand-primary);
            border-color: #fecaca;
            box-shadow: var(--shadow-sm);
        }
        .faq-list .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
            border-color: var(--brand-primary);
        }
        .faq-list .accordion-body {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            background: var(--bg-card);
            border-radius: 0 0 var(--radius-md) var(--radius-md);
            padding: 16px 18px;
            border: 1px solid var(--border-light);
            border-top: none;
        }
        .faq-list .accordion-item {
            border: none;
            margin-bottom: 10px;
            background: transparent;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--brand-primary) 0%, #c1121f 100%);
            color: #fff;
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        .cta-section h2 {
            color: #fff;
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        .cta-section p {
            color: #fecaca;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .btn-cta-large {
            display: inline-block;
            background: #fff;
            color: var(--brand-primary);
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 1rem;
            transition: all var(--transition-base);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        }
        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            color: var(--brand-primary-dark);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-dark);
            color: var(--text-on-dark);
            padding: 40px 0 28px;
            margin-top: auto;
            font-size: 0.88rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
        }
        .footer-brand-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            color: #94a3b8;
            font-size: 0.85rem;
            line-height: 1.6;
            max-width: 280px;
        }
        .footer-col-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a {
            color: #94a3b8;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 16px;
            text-align: center;
            color: #64748b;
            font-size: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .footer-bottom a {
            color: #94a3b8;
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-text h1 {
                font-size: 2.1rem;
            }
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .data-panel-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .nav-tabs-row {
                gap: 2px;
            }
            .nav-chip {
                padding: 7px 12px;
                font-size: 0.82rem;
            }
            .header-actions .btn-header-cta {
                padding: 7px 14px;
                font-size: 0.82rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 48px 0 56px;
                min-height: auto;
            }
            .hero-text h1 {
                font-size: 1.75rem;
            }
            .hero-stats-row {
                gap: 12px;
            }
            .hero-stat-item {
                padding: 12px 14px;
                min-width: 70px;
            }
            .hero-stat-value {
                font-size: 1.4rem;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .category-card {
                padding: 16px 12px;
            }
            .nav-tabs-row {
                display: none;
            }
            .header-actions .btn-header-cta {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .mobile-nav-drawer {
                display: block;
            }
            .news-item {
                flex-direction: column;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
            }
            .data-panel-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .section-spacing {
                padding-top: var(--section-gap-mobile);
                padding-bottom: var(--section-gap-mobile);
            }
            .live-match-row {
                padding: 10px 14px;
                gap: 8px;
            }
            .live-match-teams {
                font-size: 0.8rem;
            }
            .live-match-score {
                font-size: 0.9rem;
                min-width: 36px;
                padding: 3px 8px;
            }
        }
        @media (max-width: 520px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .data-panel-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .data-panel-card {
                padding: 14px 12px;
                gap: 10px;
            }
            .data-panel-info .dp-value {
                font-size: 1.2rem;
            }
            .hero-stats-row {
                gap: 8px;
            }
            .hero-stat-item {
                padding: 10px 10px;
                min-width: 60px;
            }
            .hero-stat-value {
                font-size: 1.2rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
            .logo-link {
                font-size: 1.1rem;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #0f1b2d;
            --color-primary-light: #1a2d47;
            --color-accent: #00b341;
            --color-accent-hover: #009935;
            --color-highlight: #ff4d4d;
            --color-gold: #f5a623;
            --color-bg: #f0f2f5;
            --color-surface: #ffffff;
            --color-text: #1a1a2e;
            --color-text-secondary: #5a6a7e;
            --color-text-muted: #8899aa;
            --color-border: #e2e7ed;
            --color-border-light: #eef1f6;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06);
            --shadow-md: 0 4px 16px rgba(15, 27, 45, 0.10);
            --shadow-lg: 0 8px 32px rgba(15, 27, 45, 0.14);
            --shadow-xl: 0 16px 48px rgba(15, 27, 45, 0.18);
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-stack: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --container-max: 1200px;
            --container-padding: 20px;
            --section-gap: 56px;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: var(--container-padding);
            padding-right: var(--container-padding);
            width: 100%;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
            min-height: var(--nav-height);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 10px;
            padding-bottom: 10px;
            min-height: var(--nav-height);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-accent) 0%, #00994d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.35rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(0, 179, 65, 0.28);
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--color-primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--color-accent);
        }

        .nav-tabs-row {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 2px 0;
        }

        .nav-tabs-row::-webkit-scrollbar {
            display: none;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: transparent;
            border: 1.5px solid transparent;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            cursor: pointer;
            user-select: none;
            letter-spacing: 0.01em;
        }

        .nav-chip:hover {
            color: var(--color-primary);
            background: #f5f7fa;
            border-color: #e2e7ed;
        }

        .nav-chip.active {
            color: #fff;
            background: var(--color-accent);
            border-color: var(--color-accent);
            font-weight: 600;
            box-shadow: 0 3px 14px rgba(0, 179, 65, 0.30);
        }

        .nav-chip.active:hover {
            color: #fff;
            background: var(--color-accent-hover);
            border-color: var(--color-accent-hover);
        }

        .nav-chip:focus-visible {
            outline: 3px solid rgba(0, 179, 65, 0.45);
            outline-offset: 3px;
            border-radius: 24px;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-primary);
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .mobile-nav-toggle:hover {
            background: #f0f2f5;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background: var(--color-primary-light) url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 300px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 27, 45, 0.82) 0%, rgba(15, 27, 45, 0.55) 60%, rgba(0, 179, 65, 0.28) 100%);
            z-index: 1;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            padding: 48px 0;
            color: #fff;
        }

        .page-banner .banner-badge {
            display: inline-block;
            background: var(--color-accent);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
        }

        .page-banner h1 {
            font-size: 2.5rem;
            font-weight: 750;
            letter-spacing: 0.03em;
            margin-bottom: 10px;
            line-height: 1.25;
        }

        .page-banner .banner-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.88);
            max-width: 600px;
            line-height: 1.6;
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: var(--section-gap) 0;
        }

        .section-sm {
            padding: 36px 0;
        }

        .section-title {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-header .section-title {
            position: relative;
            display: inline-block;
        }

        .section-header .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 3px;
            border-radius: 2px;
            background: var(--color-accent);
        }

        /* ========== LIVE SCORE CARDS ========== */
        .live-score-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .live-score-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: #d5dde6;
        }

        .live-score-card .live-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--color-highlight);
            flex-shrink: 0;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
            }
        }

        .live-score-card .match-info {
            flex: 1;
            min-width: 140px;
        }

        .live-score-card .league-tag {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .live-score-card .match-teams {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-primary);
            margin: 2px 0;
        }

        .live-score-card .match-time {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
        }

        .live-score-card .score-display {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: 0.04em;
            flex-shrink: 0;
            min-width: 60px;
            text-align: center;
            background: #f8fafb;
            border-radius: var(--radius-md);
            padding: 6px 14px;
            border: 2px solid var(--color-border-light);
        }

        .live-score-card .score-display.live-now {
            border-color: var(--color-highlight);
            color: var(--color-highlight);
            background: #fff5f5;
            animation: score-glow 2s ease-in-out infinite;
        }

        @keyframes score-glow {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.25);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 77, 77, 0);
            }
        }

        /* ========== LEAGUE COVER CARDS ========== */
        .league-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .league-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }

        .league-card .card-img-wrap {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .league-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .league-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .league-card .card-img-overlay-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(15, 27, 45, 0.8);
            color: #fff;
            padding: 5px 12px;
            border-radius: 16px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            backdrop-filter: blur(4px);
        }

        .league-card .card-body-custom {
            padding: 16px 18px;
        }

        .league-card .card-title-sm {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-primary);
            margin-bottom: 4px;
        }

        .league-card .card-detail {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            line-height: 1.45;
        }

        /* ========== FEATURE LIST ========== */
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid var(--color-border-light);
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #fff;
        }

        .feature-icon-circle.green {
            background: var(--color-accent);
            box-shadow: 0 4px 14px rgba(0, 179, 65, 0.30);
        }
        .feature-icon-circle.blue {
            background: #2d7df6;
            box-shadow: 0 4px 14px rgba(45, 125, 246, 0.30);
        }
        .feature-icon-circle.orange {
            background: #ff8c00;
            box-shadow: 0 4px 14px rgba(255, 140, 0, 0.30);
        }
        .feature-icon-circle.purple {
            background: #7c3aed;
            box-shadow: 0 4px 14px rgba(124, 58, 237, 0.30);
        }

        .feature-text h4 {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-primary);
            margin-bottom: 2px;
        }

        .feature-text p {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* ========== MATCH LIST ========== */
        .match-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            flex-wrap: wrap;
        }

        .match-list-item:hover {
            box-shadow: var(--shadow-md);
            border-color: #d5dde6;
        }

        .match-list-item .ml-date {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            font-weight: 500;
            flex-shrink: 0;
            min-width: 70px;
        }

        .match-list-item .ml-teams {
            flex: 1;
            font-weight: 600;
            color: var(--color-primary);
            font-size: 0.95rem;
            min-width: 140px;
        }

        .match-list-item .ml-score {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--color-primary);
            flex-shrink: 0;
            background: #f8fafb;
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            text-align: center;
            min-width: 52px;
        }

        .match-list-item .ml-status {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 14px;
            flex-shrink: 0;
            letter-spacing: 0.03em;
        }

        .ml-status.live-tag {
            background: #fff0f0;
            color: var(--color-highlight);
        }
        .ml-status.done-tag {
            background: #f0f7f4;
            color: var(--color-accent);
        }
        .ml-status.upcoming-tag {
            background: #fef9f0;
            color: #c78200;
        }

        /* ========== STATS GRID ========== */
        .stat-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
        }

        .stat-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .stat-card .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--color-accent);
            letter-spacing: 0.02em;
            line-height: 1;
        }

        .stat-card .stat-label {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            margin-top: 6px;
            font-weight: 500;
        }

        /* ========== FAQ ========== */
        .faq-item {
            border-bottom: 1px solid var(--color-border-light);
            padding: 18px 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            user-select: none;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--color-accent);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #f0f4f8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: all var(--transition-fast);
            color: var(--color-text-secondary);
        }

        .faq-answer {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 10px;
            display: none;
            padding-left: 4px;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-icon {
            background: var(--color-accent);
            color: #fff;
            transform: rotate(45deg);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(160deg, var(--color-primary) 0%, #162544 100%);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(0, 179, 65, 0.14);
            pointer-events: none;
        }

        .cta-section h3 {
            font-weight: 750;
            font-size: 1.5rem;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }

        .cta-section p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-brand {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 28px;
            font-weight: 650;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all var(--transition-base);
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 2;
            text-decoration: none;
        }

        .btn-brand-accent {
            background: var(--color-accent);
            color: #fff;
            box-shadow: 0 6px 22px rgba(0, 179, 65, 0.38);
        }

        .btn-brand-accent:hover {
            background: var(--color-accent-hover);
            box-shadow: 0 8px 28px rgba(0, 179, 65, 0.50);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-brand-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-brand-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-primary);
            color: #c8d2dd;
            padding: 40px 0 22px;
            margin-top: auto;
            font-size: 0.88rem;
            line-height: 1.7;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 28px;
        }

        .footer-brand-name {
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }

        .footer-desc {
            color: #b0bec5;
            font-size: 0.84rem;
            margin: 0;
            line-height: 1.6;
        }

        .footer-col-title {
            font-weight: 650;
            font-size: 0.88rem;
            color: #e0e6ed;
            margin-bottom: 10px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 5px;
        }

        .site-footer ul li a,
        .site-footer ul li span {
            color: #b0bec5;
            font-size: 0.84rem;
            transition: color var(--transition-fast);
        }

        .site-footer ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            justify-content: center;
            font-size: 0.78rem;
            color: #8899aa;
        }

        .footer-bottom a {
            color: #8899aa;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: #c8d2dd;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .page-banner h1 {
                font-size: 2rem;
            }

            .page-banner {
                min-height: 240px;
            }

            .section {
                padding: 40px 0;
            }

            .live-score-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .live-score-card .score-display {
                align-self: flex-end;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 10px;
            }

            .nav-tabs-row {
                width: 100%;
                order: 3;
                gap: 4px;
                padding: 4px 0;
            }

            .nav-chip {
                font-size: 0.8rem;
                padding: 6px 11px;
                border-radius: 20px;
            }

            .mobile-nav-toggle {
                display: inline-flex;
            }

            .page-banner {
                min-height: 200px;
            }

            .page-banner h1 {
                font-size: 1.6rem;
            }

            .page-banner .banner-sub {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }

            .match-list-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .stat-card .stat-number {
                font-size: 1.8rem;
            }

            .cta-section {
                padding: 28px 20px;
            }

            .cta-section h3 {
                font-size: 1.2rem;
            }

            .league-card .card-img-wrap {
                height: 140px;
            }
        }

        @media (max-width: 520px) {
            :root {
                --container-padding: 14px;
                --section-gap: 32px;
            }

            .logo-text {
                font-size: 1rem;
            }

            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1.1rem;
            }

            .nav-chip {
                font-size: 0.74rem;
                padding: 5px 10px;
                border-radius: 18px;
            }

            .page-banner h1 {
                font-size: 1.35rem;
            }

            .page-banner .banner-badge {
                font-size: 0.72rem;
                padding: 4px 10px;
            }

            .live-score-card .score-display {
                font-size: 1.3rem;
                padding: 5px 10px;
                min-width: 48px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                gap: 4px;
            }

            .section-header .section-title {
                font-size: 1.15rem;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1a5f3a;
            --primary-dark: #0f3d24;
            --primary-light: #2e8b57;
            --accent: #e8932d;
            --accent-hover: #c77a1f;
            --bg: #f6f8f5;
            --surface: #ffffff;
            --surface-alt: #eef5ed;
            --text: #1c2a1e;
            --text-muted: #5c6b5e;
            --text-light: #7d8c7e;
            --border: #dce5db;
            --border-light: #e8efe7;
            --shadow-sm: 0 1px 3px rgba(15, 40, 20, 0.06);
            --shadow-md: 0 4px 14px rgba(15, 40, 20, 0.08);
            --shadow-lg: 0 12px 32px rgba(15, 40, 20, 0.10);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s ease;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-md);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container-custom {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 1400px) {
            .container-custom {
                max-width: 1320px;
            }
        }

        /* Header */
        .site-header {
            background: var(--surface);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
            min-height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .header-logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--primary);
            letter-spacing: 0.02em;
            white-space: nowrap;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color var(--transition-fast);
        }
        .header-logo:hover {
            color: var(--primary-dark);
        }
        .header-logo i {
            font-size: 1.5rem;
            color: var(--accent);
        }

        .nav-tabs-row {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 2px 0;
        }
        .nav-tabs-row::-webkit-scrollbar {
            display: none;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--surface-alt);
            border: 1.5px solid transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
            user-select: none;
            flex-shrink: 0;
        }
        .nav-chip:hover {
            color: var(--primary);
            background: #e6f0e8;
            border-color: #c5dcc8;
        }
        .nav-chip.active {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26, 95, 58, 0.25);
        }
        .nav-chip.nav-home {
            font-weight: 600;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: var(--surface-alt);
        }

        @media (max-width: 920px) {
            .mobile-menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .nav-tabs-row {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 2px;
                background: var(--surface);
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-lg);
                padding: 8px;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                z-index: 1040;
                max-height: 60vh;
                overflow-y: auto;
            }
            .nav-tabs-row.open {
                display: flex;
            }
            .nav-chip {
                width: 100%;
                justify-content: center;
                border-radius: var(--radius-sm);
                padding: 10px 16px;
                font-size: 0.95rem;
            }
            .header-inner {
                position: relative;
            }
            .site-header {
                min-height: var(--nav-height);
            }
        }

        @media (max-width: 520px) {
            .header-logo {
                font-size: 1.15rem;
            }
            .header-logo i {
                font-size: 1.25rem;
            }
            .container-custom {
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        /* Main */
        .main-content {
            flex: 1;
        }

        /* Page Banner */
        .page-banner {
            background: linear-gradient(170deg, #1a3d2a 0%, #1a5f3a 40%, #0f3d24 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 52px;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.14;
            pointer-events: none;
        }
        .page-banner .container-custom {
            position: relative;
            z-index: 1;
        }
        .page-banner .banner-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            color: #c5e8cf;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .page-banner h1 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 2.4rem;
            color: #ffffff;
            margin: 0 0 12px;
            letter-spacing: 0.02em;
            line-height: 1.3;
        }
        .page-banner .banner-desc {
            font-size: 1.08rem;
            color: #c5dcc8;
            max-width: 620px;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0 36px;
            }
            .page-banner h1 {
                font-size: 1.75rem;
            }
            .page-banner .banner-desc {
                font-size: 0.95rem;
            }
        }
        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 1.45rem;
            }
            .page-banner .banner-desc {
                font-size: 0.9rem;
            }
        }

        /* Section */
        .section {
            padding: 52px 0;
        }
        .section-alt {
            background: var(--surface);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.65rem;
            color: var(--text);
            margin: 0 0 8px;
            letter-spacing: 0.01em;
        }
        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
            max-width: 600px;
        }
        @media (max-width: 768px) {
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.35rem;
            }
        }

        /* Cards */
        .card-custom {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .card-custom:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: #c5dcc8;
        }
        .card-custom .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #e8efe7;
        }
        .card-custom .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform var(--transition-slow);
        }
        .card-custom:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .card-custom .card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
            letter-spacing: 0.02em;
            z-index: 2;
        }
        .card-custom .card-body-custom {
            padding: 20px 18px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-custom .card-title-custom {
            font-family: var(--font-heading);
            font-weight: 650;
            font-size: 1.08rem;
            color: var(--text);
            margin: 0 0 8px;
            line-height: 1.4;
        }
        .card-custom .card-text-custom {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0 0 14px;
            line-height: 1.6;
            flex: 1;
        }
        .card-custom .card-meta {
            font-size: 0.82rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .card-custom .card-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--primary);
            transition: color var(--transition-fast);
            margin-top: 6px;
        }
        .card-custom .card-link:hover {
            color: var(--primary-dark);
        }
        .card-custom .card-link i {
            font-size: 0.75rem;
            transition: transform var(--transition-fast);
        }
        .card-custom .card-link:hover i {
            transform: translateX(3px);
        }

        /* Stat Row */
        .stat-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            padding: 28px 22px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            height: 100%;
        }
        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 12px;
        }
        .stat-card .stat-value {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 2rem;
            color: var(--primary);
            line-height: 1.1;
        }
        .stat-card .stat-label {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
        .stat-card .stat-change {
            font-size: 0.82rem;
            font-weight: 600;
            margin-top: 4px;
        }
        .stat-change.up {
            color: #16a34a;
        }
        .stat-change.down {
            color: #dc2626;
        }

        /* Table style */
        .table-custom-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
        }
        .table-custom {
            margin-bottom: 0;
            font-size: 0.9rem;
            width: 100%;
            border-collapse: collapse;
        }
        .table-custom thead th {
            background: #f1f6f0;
            color: var(--text);
            font-weight: 650;
            padding: 14px 16px;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        .table-custom tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
            color: var(--text);
        }
        .table-custom tbody tr:hover {
            background: #f9fbf8;
        }
        .table-custom tbody tr:last-child td {
            border-bottom: none;
        }
        .badge-rank {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.8rem;
            color: #fff;
            background: var(--primary);
        }
        .badge-rank.top {
            background: var(--accent);
        }

        /* Timeline */
        .timeline-item {
            display: flex;
            gap: 18px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
            align-items: flex-start;
        }
        .timeline-item:last-child {
            border-bottom: none;
        }
        .timeline-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            flex-shrink: 0;
            margin-top: 6px;
            box-shadow: 0 0 0 4px rgba(26, 95, 58, 0.12);
        }
        .timeline-date {
            font-size: 0.82rem;
            color: var(--text-light);
            flex-shrink: 0;
            min-width: 70px;
        }
        .timeline-content h4 {
            font-size: 0.98rem;
            font-weight: 650;
            margin: 0 0 4px;
            color: var(--text);
        }
        .timeline-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* FAQ */
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 650;
            font-size: 0.98rem;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            user-select: none;
            background: var(--surface);
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: #f9fbf8;
        }
        .faq-question i {
            font-size: 0.8rem;
            color: var(--text-muted);
            transition: transform var(--transition-fast);
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            background: #fcfdfb;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(155deg, #1a5f3a 0%, #0f3d24 100%);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }
        .cta-section h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0 0 10px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            font-size: 0.95rem;
            color: #c5dcc8;
            margin: 0 0 20px;
            position: relative;
            z-index: 1;
        }
        .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ffffff;
            color: var(--primary);
            font-weight: 650;
            padding: 12px 28px;
            border-radius: 28px;
            font-size: 0.95rem;
            transition: all var(--transition-fast);
            position: relative;
            z-index: 1;
            border: none;
            cursor: pointer;
        }
        .btn-cta-white:hover {
            background: #e8f5ea;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
            color: var(--primary-dark);
        }
        @media (max-width: 520px) {
            .cta-section {
                padding: 28px 20px;
            }
            .cta-section h3 {
                font-size: 1.2rem;
            }
        }

        /* Footer */
        .site-footer {
            background: #1c2a1e;
            color: #c5d0c6;
            padding: 44px 0 28px;
            font-size: 0.88rem;
            line-height: 1.8;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-brand-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .footer-desc {
            color: #9aa89c;
            font-size: 0.85rem;
            line-height: 1.7;
            margin: 0;
            max-width: 280px;
        }
        .footer-col-title {
            font-weight: 650;
            color: #e8efe7;
            margin-bottom: 10px;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 4px;
        }
        .site-footer ul li a {
            color: #9aa89c;
            transition: color var(--transition-fast);
            font-size: 0.85rem;
        }
        .site-footer ul li a:hover {
            color: #c5dcc8;
        }
        .footer-bottom {
            border-top: 1px solid #2d3d2f;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            justify-content: center;
            color: #7d8c7e;
            font-size: 0.8rem;
        }
        .footer-bottom span,
        .footer-bottom a {
            color: #7d8c7e;
            font-size: 0.8rem;
        }
        .footer-bottom a:hover {
            color: #c5dcc8;
        }

        @media (max-width: 900px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-bottom {
                gap: 6px 12px;
                font-size: 0.75rem;
            }
            .footer-desc {
                max-width: 100%;
            }
        }

        /* Utility */
        .text-accent {
            color: var(--accent);
        }
        .fw-650 {
            font-weight: 650;
        }

/* roulang page: category3 */
:root {
            --color-primary: #1a56db;
            --color-primary-dark: #1040b0;
            --color-primary-light: #e8f0fe;
            --color-accent: #f59e0b;
            --color-accent-dark: #d97706;
            --color-accent-light: #fef3c7;
            --color-bg: #f8fafc;
            --color-surface: #ffffff;
            --color-text: #1e293b;
            --color-text-secondary: #64748b;
            --color-text-muted: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --color-success: #10b981;
            --color-danger: #ef4444;
            --color-info: #3b82f6;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.40s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container-custom {
            width: 100%;
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-base);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            padding-bottom: 14px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-primary) 0%, #2563eb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.15rem;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(26, 86, 219, 0.3);
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--color-text);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--color-primary);
        }

        .nav-tabs-row {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 22px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: transparent;
            border: 1.5px solid transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
            letter-spacing: 0.1px;
        }

        .nav-chip:hover {
            color: var(--color-primary);
            background: var(--color-primary-light);
            border-color: rgba(26, 86, 219, 0.25);
        }

        .nav-chip.active {
            background: var(--color-primary);
            color: #ffffff;
            border-color: var(--color-primary);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(26, 86, 219, 0.35);
        }

        .nav-chip.nav-home {
            font-weight: 600;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: 1.5px solid var(--color-border);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            font-size: 1.3rem;
            color: var(--color-text);
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--color-primary-light);
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        @media (max-width: 1024px) {
            .nav-tabs-row {
                gap: 4px;
            }
            .nav-chip {
                padding: 6px 12px;
                font-size: 0.82rem;
                border-radius: 18px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                padding-top: 10px;
                padding-bottom: 10px;
            }
            .mobile-menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .nav-tabs-row {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 3px;
                padding-top: 8px;
                border-top: 1px solid var(--color-border);
                margin-top: 4px;
            }
            .nav-tabs-row.open {
                display: flex;
            }
            .nav-chip {
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: 10px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .logo-text {
                font-size: 1.05rem;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 0.95rem;
            }
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            background: linear-gradient(170deg, #0f172a 0%, #1e3a5f 40%, #1a3c6e 70%, #0d1f3c 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 52px;
            color: #ffffff;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            pointer-events: none;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, var(--color-bg), transparent);
            pointer-events: none;
        }

        .banner-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .banner-text-area {
            flex: 1;
            min-width: 280px;
        }

        .banner-badge {
            display: inline-block;
            background: rgba(245, 158, 11, 0.18);
            color: var(--color-accent);
            border: 1px solid rgba(245, 158, 11, 0.35);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            margin-bottom: 16px;
        }

        .banner-text-area h1 {
            font-family: var(--font-heading);
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin: 0 0 12px;
            line-height: 1.25;
            color: #ffffff;
        }

        .banner-text-area h1 span {
            color: var(--color-accent);
        }

        .banner-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.78);
            margin: 0;
            max-width: 560px;
            line-height: 1.6;
        }

        .banner-stats {
            display: flex;
            gap: 28px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }

        .banner-stat-item {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            text-align: center;
            backdrop-filter: blur(4px);
            min-width: 100px;
        }

        .banner-stat-num {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
            margin-bottom: 6px;
        }

        .banner-stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0 36px;
            }
            .banner-text-area h1 {
                font-size: 1.7rem;
            }
            .banner-subtitle {
                font-size: 0.95rem;
            }
            .banner-stats {
                gap: 14px;
            }
            .banner-stat-item {
                padding: 14px 16px;
            }
            .banner-stat-num {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 520px) {
            .banner-text-area h1 {
                font-size: 1.4rem;
            }
            .banner-stats {
                width: 100%;
                justify-content: space-between;
            }
            .banner-stat-item {
                flex: 1;
                min-width: 0;
                padding: 12px 10px;
            }
            .banner-stat-num {
                font-size: 1.3rem;
            }
        }

        /* ========== SECTION COMMONS ========== */
        .section-block {
            padding: 56px 0;
        }

        .section-block.section-alt {
            background: var(--color-surface);
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-tag {
            display: inline-block;
            background: var(--color-primary-light);
            color: var(--color-primary);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 8px;
            letter-spacing: -0.3px;
        }

        .section-desc {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin: 0 auto;
            max-width: 600px;
            line-height: 1.65;
        }

        @media (max-width: 768px) {
            .section-block {
                padding: 38px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .section-header {
                margin-bottom: 28px;
            }
        }

        /* ========== RECOMMENDATION CARDS ========== */
        .rec-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .rec-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }

        .rec-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--color-primary);
        }

        .rec-card-top {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .rec-card-top img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .rec-card:hover .rec-card-top img {
            transform: scale(1.04);
        }

        .rec-card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--color-accent);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 0.78rem;
            padding: 5px 12px;
            border-radius: 16px;
            letter-spacing: 0.3px;
            z-index: 1;
        }

        .rec-card-confidence {
            position: absolute;
            top: 14px;
            right: 14px;
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            font-size: 0.76rem;
            padding: 5px 10px;
            border-radius: 14px;
            z-index: 1;
            backdrop-filter: blur(2px);
        }

        .rec-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .rec-card-match {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            margin-bottom: 6px;
            letter-spacing: 0.2px;
        }

        .rec-card-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .rec-card-desc {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            margin: 0 0 14px;
            line-height: 1.55;
            flex: 1;
        }

        .rec-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }

        .rec-card-tag {
            display: inline-block;
            background: var(--color-primary-light);
            color: var(--color-primary);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.76rem;
            font-weight: 500;
        }

        .rec-card-odds {
            font-weight: 700;
            color: var(--color-accent-dark);
            font-size: 0.88rem;
        }

        .btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 16px;
            border: 1.5px solid var(--color-primary);
            color: var(--color-primary);
            background: transparent;
            border-radius: 20px;
            font-size: 0.84rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-outline-sm:hover {
            background: var(--color-primary);
            color: #fff;
            box-shadow: 0 3px 12px rgba(26, 86, 219, 0.3);
        }

        @media (max-width: 768px) {
            .rec-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .rec-card-top {
                height: 160px;
            }
        }

        /* ========== ANALYSIS LIST ========== */
        .analysis-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .analysis-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }

        .analysis-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-primary);
        }

        .analysis-rank {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-primary);
        }

        .analysis-rank.top1 {
            background: #fef3c7;
            color: #b45309;
        }

        .analysis-rank.top2 {
            background: #e8f0fe;
            color: #1a56db;
        }

        .analysis-rank.top3 {
            background: #fce7f3;
            color: #be185d;
        }

        .analysis-info {
            flex: 1;
            min-width: 0;
        }

        .analysis-match {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.02rem;
            color: var(--color-text);
            margin: 0 0 4px;
        }

        .analysis-reason {
            font-size: 0.86rem;
            color: var(--color-text-secondary);
            margin: 0 0 6px;
            line-height: 1.5;
        }

        .analysis-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.76rem;
        }

        .analysis-tag {
            background: var(--color-border-light);
            padding: 2px 10px;
            border-radius: 10px;
            color: var(--color-text-secondary);
        }

        .analysis-odds-badge {
            flex-shrink: 0;
            background: var(--color-accent-light);
            color: var(--color-accent-dark);
            font-weight: 700;
            padding: 6px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.88rem;
            white-space: nowrap;
            align-self: center;
        }

        @media (max-width: 768px) {
            .analysis-item {
                flex-direction: column;
                gap: 12px;
                padding: 14px 16px;
            }
            .analysis-rank {
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
            }
            .analysis-odds-badge {
                align-self: flex-start;
            }
        }

        /* ========== PLAY METHODS ========== */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        .method-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 26px 22px;
            text-align: center;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }

        .method-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--color-primary);
        }

        .method-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .method-icon.icon-blue {
            background: var(--color-primary-light);
            color: var(--color-primary);
        }
        .method-icon.icon-amber {
            background: var(--color-accent-light);
            color: var(--color-accent-dark);
        }
        .method-icon.icon-green {
            background: #d1fae5;
            color: #059669;
        }
        .method-icon.icon-rose {
            background: #fce7f3;
            color: #be185d;
        }

        .method-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-text);
            margin: 0 0 6px;
        }

        .method-desc {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .methods-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .method-card {
                padding: 20px 14px;
            }
        }
        @media (max-width: 520px) {
            .methods-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }

        .faq-item:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 22px;
            text-align: left;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            transition: color var(--transition-fast);
            line-height: 1.4;
        }

        .faq-question:hover {
            color: var(--color-primary);
        }

        .faq-icon {
            flex-shrink: 0;
            color: var(--color-text-muted);
            font-size: 0.8rem;
            transition: transform var(--transition-fast);
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--color-primary);
        }

        .faq-answer {
            display: none;
            padding: 0 22px 18px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 50%, #0d1f3c 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: 1.65rem;
            font-weight: 700;
            margin: 0 0 10px;
            letter-spacing: -0.3px;
        }

        .cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.75);
            margin: 0 auto 24px;
            max-width: 500px;
            line-height: 1.6;
        }

        .btn-primary-lg {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--color-accent);
            color: #1a1a1a;
            border: none;
            padding: 13px 32px;
            border-radius: 26px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.2px;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4);
        }

        .btn-primary-lg:hover {
            background: #fbbf24;
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.55);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 34px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-title {
                font-size: 1.35rem;
            }
            .btn-primary-lg {
                padding: 11px 24px;
                font-size: 0.9rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 48px 0 28px;
            margin-top: auto;
            font-size: 0.88rem;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 36px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }

        .footer-desc {
            color: #94a3b8;
            font-size: 0.84rem;
            line-height: 1.6;
            margin: 0;
        }

        .footer-col-title {
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 12px;
            font-size: 0.92rem;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 7px;
        }
        .site-footer ul li a,
        .site-footer ul li span {
            color: #94a3b8;
            font-size: 0.84rem;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .site-footer ul li a:hover {
            color: #ffffff;
            cursor: pointer;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 20px;
            justify-content: center;
            align-items: center;
            padding-top: 22px;
            font-size: 0.78rem;
            color: #64748b;
        }
        .footer-bottom a {
            color: #94a3b8;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #1a56db;
            --primary-dark: #1040b0;
            --primary-light: #e8effd;
            --accent: #f59e0b;
            --accent-dark: #d97706;
            --accent-light: #fef3c7;
            --bg: #f8fafc;
            --bg-white: #ffffff;
            --bg-dark: #0f172a;
            --bg-card: #ffffff;
            --text: #1e293b;
            --text-secondary: #64748b;
            --text-light: #94a3b8;
            --text-white: #f1f5f9;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.22s ease;
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --container-max: 1200px;
            --nav-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }

        p {
            margin: 0;
            color: var(--text-secondary);
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* ========== Header & Nav ========== */
        .site-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text);
            white-space: nowrap;
            letter-spacing: -0.3px;
        }

        .logo-text .accent-dot {
            color: var(--accent);
        }

        .nav-tabs-row {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 2px 0;
        }

        .nav-tabs-row::-webkit-scrollbar {
            display: none;
        }

        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            background: transparent;
            white-space: nowrap;
            transition: all var(--transition);
            border: 1.5px solid transparent;
            position: relative;
            letter-spacing: 0.2px;
        }

        .nav-chip:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-color: transparent;
        }

        .nav-chip.active {
            color: #fff;
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 2px 10px rgba(26, 86, 219, 0.3);
            font-weight: 700;
        }

        .nav-chip.active:hover {
            background: var(--primary-dark);
            color: #fff;
            border-color: var(--primary-dark);
        }

        .header-cta {
            flex-shrink: 0;
        }

        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
            transform: translateY(-1px);
            color: #fff;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 4px;
            cursor: pointer;
            transition: color var(--transition);
        }

        .mobile-menu-toggle:hover {
            color: var(--primary);
        }

        /* ========== Page Banner ========== */
        .page-banner {
            position: relative;
            padding: 60px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a3e6b 100%);
            overflow: hidden;
            color: #fff;
            text-align: center;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 30%, rgba(15, 23, 42, 0.7) 100%);
            z-index: 1;
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
        }

        .page-banner .banner-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            color: #e2e8f0;
        }

        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .page-banner .banner-subtitle {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ========== Search Filter Section ========== */
        .filter-section {
            padding: 32px 0;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: var(--nav-height);
            z-index: 500;
            box-shadow: var(--shadow-sm);
        }

        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: flex-end;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
            min-width: 140px;
        }

        .filter-group label {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-group select,
        .filter-group input {
            padding: 10px 14px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            background: var(--bg);
            color: var(--text);
            transition: all var(--transition);
            outline: none;
            min-width: 0;
        }

        .filter-group select:focus,
        .filter-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.08);
            background: #fff;
        }

        .btn-search-filter {
            padding: 10px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.2px;
        }

        .btn-search-filter:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        .btn-reset-filter {
            padding: 10px 18px;
            background: transparent;
            color: var(--text-secondary);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-reset-filter:hover {
            border-color: var(--text-light);
            color: var(--text);
            background: var(--bg);
        }

        /* ========== Section Common ========== */
        .section-padding {
            padding: 56px 0;
        }

        .section-header {
            margin-bottom: 36px;
            text-align: left;
        }

        .section-header h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }

        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 600px;
        }

        .section-badge {
            display: inline-block;
            padding: 4px 12px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.75rem;
            border-radius: 14px;
            letter-spacing: 0.4px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        /* ========== History Table ========== */
        .history-table-wrap {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .history-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .history-table thead th {
            background: #f1f5f9;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
        }

        .history-table tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
            color: var(--text);
        }

        .history-table tbody tr {
            transition: background var(--transition);
        }

        .history-table tbody tr:hover {
            background: #f8fafc;
        }

        .history-table .score-highlight {
            display: inline-block;
            padding: 6px 14px;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            border-radius: var(--radius-sm);
            letter-spacing: 1px;
            min-width: 50px;
            text-align: center;
        }

        .history-table .team-name {
            font-weight: 700;
            color: var(--text);
        }

        .history-table .league-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            background: var(--accent-light);
            color: var(--accent-dark);
            white-space: nowrap;
        }

        .history-table .date-cell {
            color: var(--text-light);
            font-size: 0.82rem;
            white-space: nowrap;
        }

        .table-responsive-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        /* ========== Classic Match Cards ========== */
        .classic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .classic-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .classic-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: #d0d7e2;
        }

        .classic-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .classic-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .classic-card-body .match-date-badge {
            display: inline-block;
            padding: 3px 10px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.75rem;
            border-radius: 12px;
            margin-bottom: 8px;
            align-self: flex-start;
        }

        .classic-card-body h3 {
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 6px;
            color: var(--text);
            line-height: 1.4;
        }

        .classic-card-body .match-score-display {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary);
            margin: 6px 0;
            letter-spacing: 1px;
        }

        .classic-card-body p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }

        .classic-card-body .card-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .card-tag {
            padding: 4px 10px;
            background: #f1f5f9;
            border-radius: 12px;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* ========== Stats Section ========== */
        .stats-section {
            background: var(--bg-dark);
            color: #fff;
            padding: 48px 0;
        }

        .stats-section .section-header h2 {
            color: #fff;
        }

        .stats-section .section-subtitle {
            color: #cbd5e1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            transition: all var(--transition);
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .stat-card .stat-num {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -1px;
            line-height: 1;
        }

        .stat-card .stat-label {
            font-size: 0.85rem;
            color: #cbd5e1;
            margin-top: 6px;
            font-weight: 500;
        }

        .stat-card .stat-unit {
            font-size: 0.9rem;
            font-weight: 400;
            color: #94a3b8;
        }

        /* ========== Timeline ========== */
        .timeline-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 28px;
        }

        .timeline-list::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: var(--border);
            border-radius: 1px;
        }

        .timeline-item {
            position: relative;
            padding: 14px 0 14px 24px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition);
            cursor: default;
        }

        .timeline-item:last-child {
            border-bottom: none;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -22px;
            top: 20px;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 3px var(--primary-light);
            z-index: 1;
        }

        .timeline-item .tl-date {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 2px;
        }

        .timeline-item .tl-title {
            font-weight: 700;
            color: var(--text);
            font-size: 0.95rem;
        }

        .timeline-item .tl-desc {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: var(--bg-white);
            padding: 56px 0;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border-light);
            padding: 18px 0;
        }

        .faq-question {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: color var(--transition);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            font-size: 0.8rem;
            color: var(--text-light);
            transition: transform var(--transition);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-top: 0;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-top: 10px;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-item.open .faq-question {
            color: var(--primary);
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: 56px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #fff;
            color: var(--primary);
            border: none;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition);
            position: relative;
            z-index: 1;
            letter-spacing: 0.2px;
        }

        .btn-cta-large:hover {
            background: #f1f5f9;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
            color: var(--primary-dark);
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-dark);
            color: #cbd5e1;
            padding: 48px 0 28px;
            font-size: 0.9rem;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand-name {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .footer-desc {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
            max-width: 280px;
        }

        .footer-col-title {
            font-weight: 700;
            font-size: 0.85rem;
            color: #e2e8f0;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .site-footer ul li {
            margin-bottom: 7px;
        }

        .site-footer ul li a {
            color: #94a3b8;
            font-size: 0.85rem;
            transition: color var(--transition);
        }

        .site-footer ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.78rem;
            color: #64748b;
            justify-content: center;
            text-align: center;
        }

        .footer-bottom a {
            color: #94a3b8;
            transition: color var(--transition);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        .footer-bottom span {
            white-space: nowrap;
        }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) {
            .page-banner h1 {
                font-size: 2rem;
            }

            .classic-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .nav-chip {
                padding: 6px 12px;
                font-size: 0.8rem;
            }

            .logo-text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0;
            }

            .page-banner h1 {
                font-size: 1.6rem;
            }

            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }

            .section-padding {
                padding: 36px 0;
            }

            .section-header h2 {
                font-size: 1.35rem;
            }

            .classic-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-card .stat-num {
                font-size: 1.8rem;
            }

            .filter-row {
                flex-direction: column;
                gap: 8px;
            }

            .filter-group {
                min-width: 100%;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-desc {
                max-width: 100%;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-tabs-row {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 12px 20px;
                gap: 2px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                z-index: 999;
            }

            .nav-tabs-row.open {
                display: flex;
            }

            .nav-chip {
                border-radius: var(--radius-sm);
                padding: 10px 14px;
                font-size: 0.9rem;
                width: 100%;
            }

            .header-cta {
                display: none;
            }

            .history-table thead th,
            .history-table tbody td {
                padding: 10px 8px;
                font-size: 0.78rem;
            }

            .history-table .score-highlight {
                padding: 4px 10px;
                font-size: 0.85rem;
                min-width: 36px;
            }
        }

        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 1.35rem;
            }

            .page-banner {
                padding: 30px 0;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .stat-card {
                padding: 16px 14px;
            }

            .stat-card .stat-num {
                font-size: 1.5rem;
            }

            .classic-card-img {
                height: 140px;
            }

            .cta-section h2 {
                font-size: 1.3rem;
            }

            .btn-cta-large {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .section-header h2 {
                font-size: 1.2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                align-items: center;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #1a6fb5;
            --primary-dark: #125488;
            --primary-light: #e8f4fd;
            --accent: #e85d3a;
            --accent-hover: #c94a2c;
            --bg: #f5f7fa;
            --surface: #ffffff;
            --surface-alt: #f0f4f8;
            --text: #1e293b;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            line-height: 1.3;
            margin: 0;
            color: var(--text);
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ============ HEADER & NAV ============ */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1050;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 20px;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--primary);
            white-space: nowrap;
            font-family: var(--font-heading);
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .logo-link:hover {
            color: var(--primary-dark);
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary) 0%, #0d8ddb 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 800;
            flex-shrink: 0;
        }
        .nav-tabs-row {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 2px;
        }
        .nav-tabs-row::-webkit-scrollbar {
            display: none;
        }
        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            background: transparent;
            transition: all var(--transition);
            white-space: nowrap;
            border: 1.5px solid transparent;
            letter-spacing: -0.1px;
            flex-shrink: 0;
        }
        .nav-chip:hover {
            color: var(--primary);
            background: var(--primary-light);
            border-color: transparent;
        }
        .nav-chip.active {
            background: var(--primary);
            color: #ffffff;
            font-weight: 600;
            border-color: var(--primary);
            box-shadow: 0 2px 8px rgba(26, 111, 181, 0.3);
        }
        .nav-chip.nav-home {
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 14px;
        }
        .nav-chip.nav-home.active {
            background: var(--primary);
            color: #fff;
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 6px;
            cursor: pointer;
            flex-shrink: 0;
        }

        /* ============ PAGE BANNER ============ */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #1a3c5e 0%, #1a5f8a 40%, #1a6fb5 100%);
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            background-blend-mode: overlay;
            min-height: 280px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 60, 94, 0.65) 0%, rgba(18, 40, 60, 0.8) 100%);
            z-index: 1;
        }
        .page-banner-content {
            position: relative;
            z-index: 2;
            padding: 50px 0;
            width: 100%;
        }
        .page-banner-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .page-banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            transition: color var(--transition);
        }
        .page-banner-breadcrumb a:hover {
            color: #ffffff;
        }
        .page-banner-breadcrumb .separator {
            color: rgba(255, 255, 255, 0.5);
        }
        .page-banner h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }
        .page-banner .banner-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.82);
            max-width: 600px;
            line-height: 1.6;
        }

        /* ============ SECTION COMMON ============ */
        .section {
            padding: 56px 0;
        }
        .section-header {
            margin-bottom: 36px;
            text-align: center;
        }
        .section-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        .section-header .section-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* ============ TEAM CARDS GRID ============ */
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .team-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: #d0dde8;
        }
        .team-card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #e8edf2;
        }
        .team-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .team-card:hover .team-card-img-wrap img {
            transform: scale(1.06);
        }
        .team-card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--accent);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            z-index: 2;
        }
        .team-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .team-card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
        }
        .team-card-league {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .team-card-league i {
            font-size: 0.7rem;
            color: var(--primary);
        }
        .team-card-stats {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        .team-stat-item {
            text-align: center;
            flex: 1;
            min-width: 50px;
        }
        .team-stat-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .team-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 3px;
        }
        .team-card-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
            flex: 1;
            margin-bottom: 12px;
        }
        .team-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            transition: gap var(--transition);
            align-self: flex-start;
            margin-top: auto;
        }
        .team-card-link:hover {
            gap: 10px;
            color: var(--primary-dark);
        }
        .team-card-link i {
            font-size: 0.7rem;
        }

        /* ============ DEEP ANALYSIS SECTION ============ */
        .analysis-block {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
        .analysis-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-bottom: 1px solid var(--border-light);
        }
        .analysis-row:last-child {
            border-bottom: none;
        }
        .analysis-img-col {
            position: relative;
            min-height: 280px;
            overflow: hidden;
            background: #e8edf2;
        }
        .analysis-img-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }
        .analysis-text-col {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .analysis-text-col h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }
        .analysis-text-col .analysis-league {
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .analysis-text-col p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .analysis-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
        .analysis-tag {
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 16px;
            background: var(--surface-alt);
            color: var(--text-secondary);
            font-weight: 500;
            border: 1px solid var(--border);
        }
        .analysis-tag.hot {
            background: #fef2f2;
            color: #c0392b;
            border-color: #fecaca;
        }
        .analysis-tag.good {
            background: #ecfdf5;
            color: #0d7c4d;
            border-color: #bbf7d0;
        }
        .btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 22px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
            transition: all var(--transition);
            align-self: flex-start;
            cursor: pointer;
        }
        .btn-outline-sm:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ============ NEWS LIST ============ */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            background: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 22px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition);
            cursor: pointer;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item:hover {
            background: #fafcfd;
        }
        .news-date-badge {
            flex-shrink: 0;
            width: 54px;
            text-align: center;
            background: var(--surface-alt);
            border-radius: 10px;
            padding: 8px 6px;
            font-weight: 700;
            line-height: 1.2;
            border: 1px solid var(--border);
        }
        .news-date-day {
            font-size: 1.3rem;
            color: var(--primary);
            display: block;
        }
        .news-date-month {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
            letter-spacing: -0.2px;
            line-height: 1.4;
        }
        .news-content p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-arrow {
            flex-shrink: 0;
            color: var(--text-muted);
            font-size: 0.8rem;
            align-self: center;
            transition: transform var(--transition);
        }
        .news-item:hover .news-arrow {
            transform: translateX(4px);
            color: var(--primary);
        }

        /* ============ FAQ ============ */
        .faq-section {
            background: var(--surface-alt);
            border-radius: var(--radius-xl);
            padding: 48px 32px;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .faq-item {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 20px 22px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
            border-color: #d0dde8;
        }
        .faq-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text);
            letter-spacing: -0.2px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .faq-item h4 .faq-q {
            color: var(--primary);
            font-weight: 700;
            flex-shrink: 0;
            font-size: 1rem;
        }
        .faq-item p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.65;
            padding-left: 22px;
        }

        /* ============ CTA ============ */
        .cta-section {
            background: linear-gradient(135deg, #1a3c5e 0%, #1a5f8a 50%, #1a6fb5 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 30px;
            border-radius: 28px;
            font-size: 1rem;
            font-weight: 700;
            background: #ffffff;
            color: var(--primary);
            border: none;
            transition: all var(--transition);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
            cursor: pointer;
        }
        .btn-cta:hover {
            background: #f0f4f8;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            color: var(--primary-dark);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #1a2535;
            color: #cbd5e1;
            padding: 48px 0 28px;
            margin-top: auto;
            font-size: 0.88rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .footer-desc {
            color: #94a3b8;
            font-size: 0.82rem;
            line-height: 1.6;
            margin: 0;
        }
        .footer-col-title {
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 12px;
            font-size: 0.9rem;
            letter-spacing: -0.2px;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 7px;
        }
        .site-footer ul li a,
        .site-footer ul li span {
            color: #94a3b8;
            font-size: 0.82rem;
            transition: color var(--transition);
        }
        .site-footer ul li a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            border-top: 1px solid #2d3a4a;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            font-size: 0.78rem;
            color: #64748b;
            text-align: center;
        }
        .footer-bottom span,
        .footer-bottom a {
            color: #64748b;
            white-space: nowrap;
            font-size: 0.78rem;
        }
        .footer-bottom a:hover {
            color: #cbd5e1;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .team-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .analysis-row {
                grid-template-columns: 1fr;
            }
            .analysis-img-col {
                min-height: 200px;
                aspect-ratio: 16 / 9;
            }
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .page-banner h1 {
                font-size: 2rem;
            }
            .nav-chip {
                padding: 7px 13px;
                font-size: 0.82rem;
            }
            .header-inner {
                gap: 12px;
            }
            .logo-link {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 768px) {
            .team-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .team-card-body {
                padding: 14px 14px 16px;
            }
            .team-card-body h3 {
                font-size: 1rem;
            }
            .team-stat-value {
                font-size: 1.1rem;
            }
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.45rem;
            }
            .page-banner {
                min-height: 200px;
            }
            .page-banner h1 {
                font-size: 1.6rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.88rem;
            }
            .analysis-text-col {
                padding: 20px 16px;
            }
            .analysis-text-col h3 {
                font-size: 1.1rem;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .faq-section {
                padding: 28px 16px;
            }
            .faq-item {
                padding: 14px 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .nav-tabs-row {
                gap: 2px;
            }
            .nav-chip {
                padding: 6px 11px;
                font-size: 0.78rem;
                border-radius: 20px;
            }
            .logo-link {
                font-size: 1.05rem;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
                border-radius: 8px;
            }
            .news-item {
                padding: 14px 14px;
                gap: 12px;
            }
            .news-date-badge {
                width: 44px;
                padding: 6px 4px;
                border-radius: 8px;
            }
            .news-date-day {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 520px) {
            .team-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .analysis-row {
                grid-template-columns: 1fr;
            }
            .analysis-img-col {
                min-height: 180px;
            }
            .page-banner h1 {
                font-size: 1.35rem;
            }
            .page-banner {
                min-height: 170px;
            }
            .page-banner-content {
                padding: 30px 0;
            }
            .section {
                padding: 28px 0;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .container-custom {
                padding: 0 14px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                gap: 10px;
                font-size: 0.72rem;
            }
            .footer-bottom span,
            .footer-bottom a {
                font-size: 0.72rem;
            }
            .nav-chip {
                padding: 5px 10px;
                font-size: 0.74rem;
                border-radius: 18px;
            }
            .header-inner {
                gap: 6px;
            }
            .logo-link {
                font-size: 0.95rem;
                gap: 6px;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
                border-radius: 7px;
            }
            .cta-section {
                padding: 24px 16px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 1.15rem;
            }
            .btn-cta {
                padding: 10px 22px;
                font-size: 0.9rem;
                border-radius: 24px;
            }
            .faq-section {
                border-radius: var(--radius-lg);
                padding: 22px 12px;
            }
            .news-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 12px 12px;
            }
            .news-date-badge {
                width: 40px;
                padding: 5px 3px;
            }
            .news-date-day {
                font-size: 1rem;
            }
            .news-content h4 {
                font-size: 0.85rem;
            }
            .team-stat-value {
                font-size: 1rem;
            }
            .team-card-badge {
                font-size: 0.7rem;
                padding: 3px 10px;
                top: 10px;
                left: 10px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1a365d;
            --primary-light: #2b6cb0;
            --primary-soft: #ebf4ff;
            --accent: #e8850c;
            --accent-light: #fbbf24;
            --accent-soft: #fffbeb;
            --bg: #f7f8fa;
            --card-bg: #ffffff;
            --text: #1e293b;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.10);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== Header ===== */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .header-logo {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-logo i {
            color: var(--accent);
            font-size: 1.5rem;
        }
        .header-logo:hover {
            color: var(--primary);
        }
        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-header {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 8px 18px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-header:hover {
            background: #c97a0a;
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(232, 133, 12, 0.35);
        }

        /* ===== Nav Tabs ===== */
        .nav-tabs-wrapper {
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }
        .nav-tabs-row {
            display: flex;
            gap: 6px;
            padding: 10px 0;
            flex-wrap: nowrap;
            white-space: nowrap;
            align-items: center;
        }
        .nav-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 22px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            background: transparent;
            border: 1.5px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-chip:hover {
            color: var(--primary);
            background: var(--primary-soft);
            border-color: var(--primary-soft);
        }
        .nav-chip.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            border-color: var(--primary);
            box-shadow: 0 3px 12px rgba(26, 54, 93, 0.25);
        }
        .nav-chip.nav-home {
            font-weight: 600;
        }
        .nav-chip.nav-home i {
            margin-right: 4px;
            font-size: 0.8rem;
        }

        /* ===== Page Banner ===== */
        .page-banner {
            position: relative;
            background: linear-gradient(160deg, #1a365d 0%, #1e4d7b 35%, #1a3c5e 70%, #0f2a45 100%);
            color: #fff;
            padding: 52px 0 48px;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            align-items: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
            z-index: 0;
        }
        .banner-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }
        .banner-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
            backdrop-filter: blur(6px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        .banner-text h1 {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 6px;
            letter-spacing: -0.01em;
        }
        .banner-text p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            max-width: 600px;
            line-height: 1.6;
        }
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #fff;
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 10px;
            animation: pulse-badge 2.4s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(232, 133, 12, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(232, 133, 12, 0);
            }
        }

        /* ===== Section ===== */
        .section {
            padding: 48px 0;
        }
        .section-title {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 28px;
            line-height: 1.5;
        }
        .section-header {
            margin-bottom: 28px;
        }

        /* ===== League Selector Cards ===== */
        .league-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: var(--text);
            display: block;
            border: 1.5px solid transparent;
            height: 100%;
        }
        .league-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-soft);
            color: var(--text);
        }
        .league-card-img {
            height: 130px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .league-card-img .league-flag-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
        }
        .league-card-body {
            padding: 16px 18px;
        }
        .league-card-body h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 4px;
            color: var(--primary);
        }
        .league-card-body .league-meta {
            font-size: 0.82rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .league-card-body .league-meta span {
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .league-tag {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            margin-top: 8px;
        }

        /* ===== Standings Table ===== */
        .standings-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
        .standings-card-header {
            padding: 18px 22px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            background: #fafbfc;
        }
        .standings-card-header h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .standings-card-header h3 .league-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
        }
        .standings-update {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .table-standings {
            margin: 0;
            font-size: 0.9rem;
        }
        .table-standings thead th {
            background: #f1f5f9;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            border-bottom: 2px solid var(--border);
            padding: 12px 10px;
            white-space: nowrap;
            vertical-align: middle;
        }
        .table-standings tbody td {
            padding: 11px 10px;
            vertical-align: middle;
            border-bottom: 1px solid var(--border-light);
            white-space: nowrap;
        }
        .table-standings tbody tr {
            transition: background var(--transition);
        }
        .table-standings tbody tr:hover {
            background: #f8fafd;
        }
        .table-standings .rank-col {
            width: 50px;
            text-align: center;
            font-weight: 700;
            font-size: 0.95rem;
        }
        .table-standings .team-col {
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .team-dot-indicator {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--primary-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.7rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        .rank-zone-top {
            color: #16a34a;
            font-weight: 700;
        }
        .rank-zone-mid {
            color: var(--text-secondary);
            font-weight: 600;
        }
        .rank-zone-relegation {
            color: #dc2626;
            font-weight: 700;
        }
        .pts-highlight {
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
        }
        .gd-positive {
            color: #16a34a;
            font-weight: 600;
        }
        .gd-negative {
            color: #dc2626;
            font-weight: 600;
        }
        .gd-neutral {
            color: var(--text-muted);
        }
        .table-standings .form-indicator {
            display: inline-flex;
            gap: 3px;
        }
        .form-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .form-dot.win {
            background: #16a34a;
        }
        .form-dot.draw {
            background: #94a3b8;
        }
        .form-dot.loss {
            background: #dc2626;
        }

        /* ===== Stats Highlight Cards ===== */
        .stat-highlight-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            height: 100%;
        }
        .stat-highlight-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-highlight-card .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        .stat-highlight-card .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .stat-highlight-card .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .stat-icon-green {
            background: #f0fdf4;
            color: #16a34a;
        }
        .stat-icon-blue {
            background: #eff6ff;
            color: #2563eb;
        }
        .stat-icon-amber {
            background: #fffbeb;
            color: #d97706;
        }
        .stat-icon-red {
            background: #fef2f2;
            color: #dc2626;
        }

        /* ===== Info Card ===== */
        .info-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 24px 26px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            flex-wrap: wrap;
            transition: all var(--transition);
        }
        .info-card:hover {
            box-shadow: var(--shadow-md);
        }
        .info-card-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-sm);
            background: var(--primary-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        .info-card-content h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 4px;
        }
        .info-card-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-question {
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
            transition: color var(--transition);
            user-select: none;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question i {
            transition: transform var(--transition);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
        }
        .faq-answer-inner {
            padding: 0 20px 18px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(145deg, #1a365d 0%, #1e4d7b 50%, #1a3c5e 100%);
            border-radius: var(--radius-xl);
            padding: 44px 36px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            z-index: 0;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-size: 1.55rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .cta-section p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-main {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-cta-main:hover {
            background: #c97a0a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 133, 12, 0.45);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #1a1f2e;
            color: #cbd5e1;
            padding: 44px 0 28px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
            margin: 0;
        }
        .footer-col-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #e2e8f0;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        .site-footer ul li {
            margin-bottom: 6px;
        }
        .site-footer ul li a,
        .site-footer ul li span {
            font-size: 0.84rem;
            color: #94a3b8;
            transition: color var(--transition);
        }
        .site-footer ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            justify-content: center;
            padding-top: 22px;
            font-size: 0.78rem;
            color: #64748b;
            text-align: center;
        }
        .footer-bottom a {
            color: #94a3b8;
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        /* ===== Table Responsive Wrapper ===== */
        .table-responsive-custom {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .table-responsive-custom::-webkit-scrollbar {
            height: 5px;
        }
        .table-responsive-custom::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }
        .table-responsive-custom::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .page-banner {
                padding: 36px 0 32px;
                min-height: auto;
            }
            .banner-text h1 {
                font-size: 1.6rem;
            }
            .section {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 10px 0;
                gap: 8px;
            }
            .header-logo {
                font-size: 1.15rem;
            }
            .banner-content {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            .banner-icon {
                width: 56px;
                height: 56px;
                font-size: 1.5rem;
            }
            .banner-text h1 {
                font-size: 1.4rem;
            }
            .banner-text p {
                font-size: 0.9rem;
            }
            .nav-chip {
                padding: 6px 13px;
                font-size: 0.8rem;
                border-radius: 18px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .standings-card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .table-standings {
                font-size: 0.78rem;
            }
            .table-standings thead th,
            .table-standings tbody td {
                padding: 8px 6px;
            }
            .cta-section {
                padding: 30px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .info-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .section {
                padding: 28px 0;
            }
            .stat-highlight-card .stat-value {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 520px) {
            .container-custom {
                padding: 0 12px;
            }
            .banner-text h1 {
                font-size: 1.2rem;
            }
            .league-card-img {
                height: 100px;
            }
            .nav-chip {
                padding: 5px 10px;
                font-size: 0.75rem;
                border-radius: 16px;
            }
            .nav-tabs-row {
                gap: 3px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                gap: 6px;
            }
            .table-standings {
                font-size: 0.7rem;
            }
            .table-standings .team-dot-indicator {
                width: 20px;
                height: 20px;
                font-size: 0.6rem;
            }
        }
