/* roulang page: index */
:root {
            --color-primary: #1e40af;
            --color-primary-light: #3b82f6;
            --color-primary-dark: #172554;
            --color-accent: #c8963e;
            --color-accent-light: #d4a745;
            --color-green: #2d7d46;
            --color-green-dark: #1a6b3c;
            --color-bg: #f8fafc;
            --color-bg-alt: #f1f5f9;
            --color-surface: #ffffff;
            --color-text: #1e293b;
            --color-text-soft: #475569;
            --color-text-muted: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --radius-2xl: 1.5rem;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.10);
            --transition-fast: 150ms ease;
            --transition-base: 250ms ease;
            --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            margin: 0;
            font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            min-height: 100vh;
            -webkit-tap-highlight-color: transparent;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
        }
        input {
            outline: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        @media (min-width: 768px) {
            .container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }
        /* ===== HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-base);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .nav-upper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
            gap: 1rem;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--color-primary);
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            opacity: 0.85;
        }
        .nav-logo-icon {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .nav-search-wrap {
            display: none;
            position: relative;
            flex: 1;
            max-width: 360px;
        }
        @media (min-width: 768px) {
            .nav-search-wrap {
                display: block;
            }
        }
        .nav-search-input {
            width: 100%;
            padding: 0.55rem 1rem 0.55rem 2.5rem;
            border: 1.5px solid var(--color-border);
            border-radius: 999px;
            background: var(--color-bg-alt);
            font-size: 0.9rem;
            color: var(--color-text);
            transition: all var(--transition-base);
        }
        .nav-search-input:focus {
            border-color: var(--color-primary-light);
            background: var(--color-surface);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
        }
        .nav-search-input::placeholder {
            color: var(--color-text-muted);
        }
        .nav-search-icon {
            position: absolute;
            left: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-text-muted);
            font-size: 0.9rem;
            pointer-events: none;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1.25rem;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: #fff;
            font-weight: 600;
            font-size: 0.875rem;
            border-radius: 999px;
            white-space: nowrap;
            transition: all var(--transition-base);
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
        }
        .nav-cta:hover {
            box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
            transform: translateY(-1px);
        }
        .nav-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
        }
        .nav-mobile-search-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 50%;
            background: var(--color-bg-alt);
            color: var(--color-text-soft);
            font-size: 1rem;
            transition: all var(--transition-fast);
        }
        .nav-mobile-search-btn:hover {
            background: var(--color-border);
            color: var(--color-text);
        }
        @media (min-width: 768px) {
            .nav-mobile-search-btn {
                display: none;
            }
        }
        .nav-lower {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding-bottom: 0.6rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-lower::-webkit-scrollbar {
            display: none;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.9rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--color-text-soft);
            border-radius: 999px;
            white-space: nowrap;
            transition: all var(--transition-base);
            cursor: pointer;
            flex-shrink: 0;
            position: relative;
        }
        .nav-tab:hover {
            background: var(--color-bg-alt);
            color: var(--color-text);
        }
        .nav-tab.active {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
        }
        .nav-tab.active:hover {
            background: var(--color-primary-dark);
            color: #fff;
        }
        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #1a3c4a 70%, #0f172a 100%);
            padding: 3.5rem 0 4rem;
            overflow: hidden;
            color: #fff;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(200, 150, 60, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(45, 125, 70, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
        }
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
            }
        }
        .hero-title {
            font-size: 2.25rem;
            font-weight: 900;
            line-height: 1.2;
            margin: 0 0 1rem;
            letter-spacing: -0.02em;
            color: #fff;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, #f0c040, #d4a745, #c8963e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        @media (min-width: 640px) {
            .hero-title {
                font-size: 2.75rem;
            }
        }
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.25rem;
            }
        }
        @media (min-width: 1024px) {
            .hero-title {
                font-size: 3.75rem;
            }
        }
        .hero-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0 auto 2rem;
            max-width: 560px;
            line-height: 1.7;
        }
        @media (min-width: 768px) {
            .hero-desc {
                font-size: 1.1rem;
            }
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 999px;
            transition: all var(--transition-base);
            white-space: nowrap;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: #fff;
            box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
        }
        .btn-primary:hover {
            box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-outline {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(4px);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.5);
        }
        .btn-lg {
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }
        .btn-sm {
            padding: 0.45rem 1rem;
            font-size: 0.8rem;
        }
        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-num {
            font-size: 1.75rem;
            font-weight: 800;
            color: #f0c040;
            letter-spacing: -0.01em;
        }
        .hero-stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 0.15rem;
        }
        /* ===== SECTION COMMON ===== */
        .section {
            padding: 3.5rem 0;
        }
        @media (min-width: 768px) {
            .section {
                padding: 5rem 0;
            }
        }
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        @media (min-width: 768px) {
            .section-header {
                margin-bottom: 3.5rem;
            }
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--color-primary);
            background: rgba(59, 130, 246, 0.08);
            padding: 0.3rem 0.8rem;
            border-radius: 999px;
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-text);
            margin: 0 0 0.6rem;
            letter-spacing: -0.01em;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 2.25rem;
            }
        }
        .section-desc {
            font-size: 0.95rem;
            color: var(--color-text-soft);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .section-alt {
            background: var(--color-bg-alt);
        }
        /* ===== CARDS ===== */
        .card {
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            border: 1px solid var(--color-border);
            padding: 1.5rem;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }
        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: var(--color-border);
        }
        .card-highlight {
            border-left: 4px solid var(--color-primary);
        }
        .card-gold-border {
            border: 1.5px solid rgba(200, 150, 60, 0.3);
            background: linear-gradient(135deg, #fffef9, #fffdf5);
        }
        .card-gold-border:hover {
            border-color: rgba(200, 150, 60, 0.55);
        }
        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (min-width: 1024px) {
            .card-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.75rem;
            }
        }
        .card-grid-4 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (min-width: 1024px) {
            .card-grid-4 {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.75rem;
            }
        }
        .card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            flex-shrink: 0;
        }
        .card-icon-blue {
            background: #eff6ff;
            color: #3b82f6;
        }
        .card-icon-green {
            background: #ecfdf5;
            color: #10b981;
        }
        .card-icon-gold {
            background: #fffbeb;
            color: #c8963e;
        }
        .card-icon-red {
            background: #fef2f2;
            color: #ef4444;
        }
        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 0.4rem;
            letter-spacing: -0.01em;
        }
        .card-text {
            font-size: 0.9rem;
            color: var(--color-text-soft);
            line-height: 1.6;
            margin: 0;
        }
        .card-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.25rem 0.65rem;
            border-radius: 999px;
            margin-bottom: 0.5rem;
        }
        .tag-live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-live 2s infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        .tag-upcoming {
            background: #fffbeb;
            color: #b8860b;
        }
        .tag-info {
            background: #eff6ff;
            color: #2563eb;
        }
        /* ===== STATS BLOCK ===== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        @media (min-width: 640px) {
            .stats-row {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.25rem;
            }
        }
        .stat-card {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            border: 1px solid var(--color-border);
            transition: all var(--transition-base);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--color-primary);
            letter-spacing: -0.02em;
        }
        .stat-num-gold {
            color: #c8963e;
        }
        .stat-label {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 0.25rem;
        }
        /* ===== LIST ===== */
        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--color-border-light);
            font-size: 0.95rem;
            color: var(--color-text-soft);
        }
        .info-list li:last-child {
            border-bottom: none;
        }
        .info-list-icon {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--color-primary);
            margin-top: 0.1rem;
        }
        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            margin-bottom: 0.75rem;
            background: var(--color-surface);
            overflow: hidden;
            transition: all var(--transition-base);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.1rem 1.25rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-text);
            text-align: left;
            cursor: pointer;
            gap: 1rem;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: var(--color-bg-alt);
        }
        .faq-question i {
            transition: transform var(--transition-base);
            color: var(--color-text-muted);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--color-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 1.25rem 1.1rem;
            font-size: 0.9rem;
            color: var(--color-text-soft);
            line-height: 1.7;
        }
        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(160deg, #1e3a5f 0%, #172554 100%);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-title {
            font-size: 1.75rem;
            font-weight: 800;
            margin: 0 0 0.75rem;
            letter-spacing: -0.01em;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 768px) {
            .cta-title {
                font-size: 2.25rem;
            }
        }
        .cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 500px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }
        .cta-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            position: relative;
            z-index: 1;
            max-width: 480px;
            margin: 0 auto;
        }
        .cta-input {
            flex: 1;
            min-width: 200px;
            padding: 0.7rem 1.2rem;
            border-radius: 999px;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 0.9rem;
            backdrop-filter: blur(4px);
            transition: all var(--transition-base);
        }
        .cta-input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
        .cta-input:focus {
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
        }
        .btn-cta-submit {
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, #f0c040, #c8963e);
            color: #1a1a1a;
            font-weight: 700;
            border-radius: 999px;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-base);
            box-shadow: 0 4px 16px rgba(200, 150, 60, 0.3);
        }
        .btn-cta-submit:hover {
            box-shadow: 0 6px 24px rgba(200, 150, 60, 0.45);
            transform: translateY(-2px);
        }
        .btn-cta-submit:active {
            transform: translateY(0);
        }
        /* ===== FOOTER ===== */
        .site-footer {
            background: #0f172a;
            color: rgba(255, 255, 255, 0.6);
            padding: 2.5rem 0;
            font-size: 0.85rem;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }
        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }
        .footer-brand {
            font-weight: 700;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
        }
        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        .footer-copy {
            color: rgba(255, 255, 255, 0.35);
        }
        /* ===== MATCH CARD SPECIFIC ===== */
        .match-card {
            background: var(--color-surface);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--color-border);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        .match-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #f0c040, #2d7d46);
        }
        .match-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-3px);
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text);
        }
        @media (min-width: 640px) {
            .match-teams {
                font-size: 2rem;
                gap: 2.5rem;
            }
        }
        .match-vs {
            font-size: 1rem;
            color: var(--color-text-muted);
            font-weight: 500;
            background: var(--color-bg-alt);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .match-info-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 1.25rem;
            font-size: 0.85rem;
            color: var(--color-text-soft);
        }
        .match-info-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .match-info-item i {
            color: var(--color-primary);
            font-size: 0.8rem;
        }
        /* ===== MOBILE MENU OVERLAY ===== */
        .mobile-search-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 200;
            background: var(--color-surface);
            padding: 1rem;
            box-shadow: var(--shadow-lg);
            transform: translateY(-100%);
            transition: transform var(--transition-base);
        }
        .mobile-search-overlay.show {
            transform: translateY(0);
        }
        @media (min-width: 768px) {
            .mobile-search-overlay {
                display: none !important;
            }
        }
        /* ===== RESPONSIVE FINE-TUNING ===== */
        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.75rem;
            }
            .hero-desc {
                font-size: 0.9rem;
            }
            .hero-stats-row {
                gap: 1rem;
            }
            .hero-stat-num {
                font-size: 1.35rem;
            }
            .nav-cta {
                padding: 0.45rem 1rem;
                font-size: 0.8rem;
            }
            .nav-logo {
                font-size: 1.05rem;
            }
            .section {
                padding: 2.5rem 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .match-teams {
                font-size: 1.2rem;
                gap: 1rem;
            }
            .match-card {
                padding: 1.25rem;
            }
            .card {
                padding: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .nav-tab {
                padding: 0.4rem 0.7rem;
                font-size: 0.78rem;
            }
            .hero-section {
                padding: 2.5rem 0 3rem;
            }
        }
        /* ===== FOCUS & ACCESSIBILITY ===== */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 2px;
            border-radius: 4px;
        }
        .nav-tab:focus-visible {
            outline-offset: -1px;
        }
        /* ===== SMOOTH SECTION DIVIDER ===== */
        .section-divider {
            height: 1px;
            background: var(--color-border);
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-alt .section-divider {
            display: none;
        }
