/* roulang page: index */
:root {
            --sidebar-width: 240px;
            --sidebar-bg: #0f172a;
            --sidebar-text: #cbd5e1;
            --sidebar-hover: #e2e8f0;
            --sidebar-active-bg: rgba(59, 130, 246, 0.2);
            --sidebar-active-text: #60a5fa;
            --sidebar-active-border: #3b82f6;
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --accent: #f59e0b;
            --accent-light: #fbbf24;
            --bg-main: #f1f5f9;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --bg-dark-section: #0f172a;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --text-light: #e2e8f0;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --radius-2xl: 24px;
            --transition: 0.2s ease;
            --transition-slow: 0.35s ease;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-mono: 'SF Mono', 'Menlo', 'Consolas', monospace;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--bg-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all var(--transition);
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        ul,
        ol {
            list-style: none;
        }

        /* ==================== SIDEBAR NAVIGATION ==================== */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-width);
            height: 100vh;
            background: var(--sidebar-bg);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            padding: 0;
            overflow-y: auto;
            transition: transform var(--transition-slow), box-shadow var(--transition-slow);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        }

        .sidebar-brand {
            padding: 28px 24px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 8px;
        }

        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            line-height: 1.3;
            letter-spacing: 0.02em;
        }

        .sidebar-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), #1e40af);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
        }

        .sidebar-nav {
            flex: 1;
            padding: 8px 16px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: var(--radius);
            color: var(--sidebar-text);
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.01em;
            transition: all var(--transition);
            position: relative;
        }

        .sidebar-nav a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--sidebar-hover);
        }

        .sidebar-nav a.active {
            background: var(--sidebar-active-bg);
            color: var(--sidebar-active-text);
            font-weight: 600;
            box-shadow: inset 3px 0 0 var(--sidebar-active-border);
        }

        .sidebar-nav a .nav-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
        }

        .sidebar-footer {
            padding: 16px 24px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: auto;
        }

        .sidebar-footer-text {
            font-size: 12px;
            color: rgba(203, 213, 225, 0.5);
            letter-spacing: 0.03em;
        }

        /* ==================== MOBILE HEADER ==================== */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: var(--sidebar-bg);
            z-index: 999;
            align-items: center;
            padding: 0 16px;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
        }

        .mobile-header .mobile-logo {
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            flex: 1;
            text-align: center;
            letter-spacing: 0.02em;
        }

        .hamburger {
            width: 36px;
            height: 36px;
            background: transparent;
            border: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            z-index: 1001;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all var(--transition);
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 998;
            opacity: 0;
            transition: opacity var(--transition-slow);
            pointer-events: none;
        }
        .sidebar-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }

        /* ==================== MAIN CONTENT AREA ==================== */
        .main-wrapper {
            margin-left: var(--sidebar-width);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            transition: margin-left var(--transition-slow);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .container-narrow {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a2744 100%);
            color: #ffffff;
            padding: 80px 0 90px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -180px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.02em;
            margin-bottom: 18px;
            color: #ffffff;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content .hero-desc {
            font-size: 17px;
            line-height: 1.8;
            color: #cbd5e1;
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius);
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
            transform: translateY(-2px);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: #e2e8f0;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
        }
        .btn-outline:hover {
            border-color: rgba(255, 255, 255, 0.7);
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        .btn-accent {
            background: var(--accent);
            color: #1e293b;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
        }
        .btn-accent:hover {
            background: var(--accent-light);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
            transform: translateY(-2px);
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 17px;
            border-radius: var(--radius-lg);
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-card-cluster {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            width: 100%;
            max-width: 420px;
        }

        .hero-mini-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            backdrop-filter: blur(4px);
            transition: all var(--transition);
        }
        .hero-mini-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .hero-mini-card .mini-icon {
            font-size: 30px;
            margin-bottom: 8px;
        }
        .hero-mini-card .mini-label {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 2px;
        }
        .hero-mini-card .mini-value {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        /* ==================== SECTION STYLES ==================== */
        .section {
            padding: 72px 0;
        }
        .section-sm {
            padding: 48px 0;
        }
        .section-lg {
            padding: 90px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .section-header .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .section-tag {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(37, 99, 235, 0.08);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            border-radius: 20px;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
        }

        /* ==================== LIVE MATCHES SECTION ==================== */
        .bg-white-section {
            background: var(--bg-white);
        }

        .live-matches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .match-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 24px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .match-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: #cbd5e1;
        }
        .match-card .live-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #ef4444;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 14px;
            letter-spacing: 0.04em;
            animation: pulse-live 2s infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        .match-card .upcoming-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #f59e0b;
            color: #1e293b;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 14px;
            letter-spacing: 0.04em;
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin: 10px 0 16px;
        }
        .match-card .team {
            text-align: center;
            flex: 1;
        }
        .match-card .team-flag {
            font-size: 40px;
            display: block;
            margin-bottom: 6px;
        }
        .match-card .team-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
        }
        .match-card .match-vs {
            font-weight: 800;
            font-size: 14px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .match-card .match-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 14px;
            border-top: 1px solid var(--border-light);
            font-size: 13px;
            color: var(--text-muted);
        }
        .match-card .match-score {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-primary);
            text-align: center;
            letter-spacing: 0.04em;
        }

        /* ==================== FEATURES SECTION ==================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .feature-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .feature-card .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(37, 99, 235, 0.07);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 26px;
            color: var(--primary);
            transition: all var(--transition);
        }
        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
        }
        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ==================== STATS SECTION ==================== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
        }
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-number {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.02em;
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ==================== STEPS SECTION ==================== */
        .steps-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 24px;
        }
        .step-item {
            text-align: center;
            position: relative;
            padding: 0 8px;
        }
        .step-number {
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 16px;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
        }
        .step-item h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .step-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ==================== FAQ SECTION ==================== */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            text-align: left;
            letter-spacing: 0.01em;
            transition: background var(--transition);
        }
        .faq-question:hover {
            background: #f8fafc;
        }
        .faq-question .faq-arrow {
            font-size: 12px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-arrow {
            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 24px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
            color: #fff;
            padding: 72px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            font-size: 16px;
            color: #cbd5e1;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .btn {
            position: relative;
            z-index: 1;
        }

        /* ==================== FOOTER ==================== */
        .site-footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 48px 0 28px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-brand-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        .footer-desc {
            font-size: 13px;
            line-height: 1.8;
            color: #64748b;
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: #e2e8f0;
            letter-spacing: 0.05em;
            margin-bottom: 14px;
            text-transform: uppercase;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #64748b;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #e2e8f0;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            font-size: 12px;
            color: #475569;
            text-align: center;
            letter-spacing: 0.03em;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .sidebar {
                transform: translateX(-100%);
            }
            .sidebar.open {
                transform: translateX(0);
                box-shadow: 4px 0 30px rgba(0, 0, 0, 0.4);
            }
            .sidebar-overlay {
                display: block;
            }
            .mobile-header {
                display: flex;
            }
            .main-wrapper {
                margin-left: 0;
                padding-top: 56px;
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero-visual {
                order: -1;
            }
            .hero-card-cluster {
                max-width: 320px;
                margin: 0 auto;
            }
            .hero-content h1 {
                font-size: 32px;
                text-align: center;
            }
            .hero-content .hero-desc {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .container,
            .container-narrow {
                padding: 0 20px;
            }
            .section {
                padding: 48px 0;
            }
            .section-lg {
                padding: 60px 0;
            }
            .section-header h2 {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 48px 0 56px;
            }
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-content .hero-desc {
                font-size: 15px;
            }
            .btn {
                padding: 11px 22px;
                font-size: 14px;
            }
            .btn-lg {
                padding: 14px 28px;
                font-size: 15px;
            }
            .live-matches-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .steps-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .section-header .section-subtitle {
                font-size: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cta-section h2 {
                font-size: 24px;
            }
            .match-card .team-flag {
                font-size: 32px;
            }
            .match-card .team-name {
                font-size: 13px;
            }
            .stat-number {
                font-size: 30px;
            }
            .container,
            .container-narrow {
                padding: 0 16px;
            }
        }

        @media (max-width: 520px) {
            .hero {
                padding: 36px 0 44px;
            }
            .hero-content h1 {
                font-size: 22px;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }
            .hero-card-cluster {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                max-width: 280px;
            }
            .hero-mini-card {
                padding: 14px 10px;
            }
            .hero-mini-card .mini-icon {
                font-size: 22px;
            }
            .hero-mini-card .mini-value {
                font-size: 15px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 20px 14px;
            }
            .stat-number {
                font-size: 26px;
            }
            .section {
                padding: 36px 0;
            }
            .section-lg {
                padding: 44px 0;
            }
            .section-header {
                margin-bottom: 32px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .sidebar {
                width: 260px;
            }
        }
