/* roulang page: index */
:root {
            --color-primary: #1e40af;
            --color-primary-light: #2563eb;
            --color-accent: #eab308;
            --color-accent-glow: #facc15;
            --color-bg: #f8fafc;
            --color-surface: #ffffff;
            --color-text: #0f172a;
            --color-text-soft: #64748b;
            --color-text-muted: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --color-live: #dc2626;
            --color-upcoming: #f59e0b;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
            --transition-fast: 150ms cubic-bezier(0.4,0,0.2,1);
            --transition-smooth: 250ms 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;
            padding: 0;
            font-family: "PingFang SC","Microsoft YaHei","Hiragino Sans GB","Noto Sans SC",system-ui,-apple-system,sans-serif;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input {
            font-family: inherit;
        }

        /* 导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            transition: box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
            height: 60px;
            max-width: 1280px;
            margin: 0 auto;
            gap: 1rem;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--color-primary);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-brand-icon {
            width: 34px;
            height: 34px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #1e40af, #2563eb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-soft);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--color-primary);
            background: #f0f4ff;
        }
        .nav-links a.active {
            color: var(--color-primary);
            background: #eff6ff;
            font-weight: 600;
        }
        .nav-search-wrap {
            position: relative;
            flex-shrink: 0;
        }
        .nav-search {
            width: 220px;
            height: 38px;
            padding: 0 2.5rem 0 1rem;
            border: 1.5px solid var(--color-border);
            border-radius: 2rem;
            font-size: 0.85rem;
            background: var(--color-bg);
            color: var(--color-text);
            outline: none;
            transition: all var(--transition-fast);
        }
        .nav-search:focus {
            border-color: var(--color-primary-light);
            box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
            background: #fff;
        }
        .nav-search-icon {
            position: absolute;
            right: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-text-muted);
            pointer-events: none;
            font-size: 0.9rem;
        }
        .nav-hot-tags {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
            flex-shrink: 0;
        }
        .nav-hot-tag {
            display: inline-block;
            padding: 0.25rem 0.7rem;
            border-radius: 2rem;
            font-size: 0.78rem;
            background: #fef9e7;
            color: #b45309;
            font-weight: 500;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .nav-hot-tag:hover {
            background: #fde68a;
            color: #92400e;
        }
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text);
            padding: 0.25rem;
            line-height: 1;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 99;
            padding: 1.5rem;
            flex-direction: column;
            gap: 0.5rem;
            overflow-y: auto;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text);
            transition: all var(--transition-fast);
        }
        .mobile-menu a:hover,
        .mobile-menu a.active {
            background: #eff6ff;
            color: var(--color-primary);
        }
        .mobile-menu .mobile-search {
            width: 100%;
            height: 42px;
            padding: 0 2.5rem 0 1rem;
            border: 1.5px solid var(--color-border);
            border-radius: 2rem;
            font-size: 0.9rem;
            background: var(--color-bg);
            outline: none;
            margin-bottom: 0.5rem;
        }

        /* Hero */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(160deg, #0f1d52 0%, #1e3a8a 30%, #1e40af 60%, #0f1d52 100%);
            color: #fff;
            padding: 5rem 1.5rem 6rem;
            text-align: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 160%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 20%, rgba(250,204,21,0.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 60%, rgba(37,99,235,0.12) 0%, transparent 55%),
                        radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .hero-particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.06);
            animation: floatUp 8s infinite ease-in-out;
        }
        @keyframes floatUp {
            0% { transform: translateY(0) scale(1); opacity: 0; }
            20% { opacity: 0.5; }
            80% { opacity: 0.3; }
            100% { transform: translateY(-120px) scale(1.5); opacity: 0; }
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 1rem;
            border-radius: 2rem;
            background: rgba(220,38,38,0.9);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 1.75rem;
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
            50% { box-shadow: 0 0 0 14px rgba(220,38,38,0); }
        }
        .hero-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            animation: blink-dot 1s infinite;
        }
        @keyframes blink-dot {
            0%,100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin: 0 0 1.25rem;
        }
        .hero-title .highlight {
            color: var(--color-accent-glow);
            text-shadow: 0 0 40px rgba(250,204,21,0.4);
        }
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255,255,255,0.8);
            margin: 0 0 2.25rem;
            line-height: 1.7;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 2rem;
            border-radius: 3rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-primary {
            background: #fff;
            color: var(--color-primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            background: #fef9e7;
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.5);
        }
        .btn-outline-light:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
            transform: translateY(-2px);
        }
        .hero-stats-row {
            display: flex;
            gap: 2.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-accent-glow);
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.65);
            margin-top: 0.2rem;
        }

        /* 通用板块 */
        .section {
            padding: 5rem 1.5rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .section-label {
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            background: #eff6ff;
            color: var(--color-primary);
            margin-bottom: 0.75rem;
            letter-spacing: 0.03em;
        }
        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 0.75rem;
            letter-spacing: -0.01em;
        }
        .section-desc {
            color: var(--color-text-soft);
            font-size: 1rem;
            max-width: 560px;
            margin: 0 auto;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }

        /* 特色卡片 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1.5rem;
        }
        .feature-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
        }
        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.5rem;
        }
        .feature-icon.blue { background: #eff6ff; color: #2563eb; }
        .feature-icon.green { background: #f0fdf4; color: #16a34a; }
        .feature-icon.amber { background: #fef9e7; color: #d97706; }
        .feature-icon.purple { background: #f5f3ff; color: #7c3aed; }
        .feature-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 0 0 0.5rem;
            color: var(--color-text);
        }
        .feature-card p {
            font-size: 0.88rem;
            color: var(--color-text-soft);
            margin: 0;
            line-height: 1.6;
        }

        /* 赛事卡片 */
        .matches-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 1.5rem;
        }
        .match-card {
            background: #fff;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
        }
        .match-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .match-card-header {
            padding: 1rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--color-border-light);
            font-size: 0.82rem;
            font-weight: 500;
        }
        .match-badge {
            padding: 0.2rem 0.65rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .match-badge.live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-badge 2s infinite;
        }
        .match-badge.upcoming {
            background: #fef9e7;
            color: #d97706;
        }
        .match-badge.finished {
            background: #f1f5f9;
            color: #64748b;
        }
        .match-card-body {
            padding: 1.5rem 1.25rem;
            text-align: center;
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            margin-bottom: 0.75rem;
        }
        .match-team {
            text-align: center;
        }
        .match-team-flag {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.4rem;
            font-size: 1.5rem;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
        }
        .match-team-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text);
        }
        .match-vs {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-text-muted);
        }
        .match-score {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-text);
            margin: 0.25rem 0 0.5rem;
            letter-spacing: 0.04em;
        }
        .match-info {
            font-size: 0.8rem;
            color: var(--color-text-soft);
        }
        .match-card-footer {
            padding: 0.9rem 1.25rem;
            border-top: 1px solid var(--color-border-light);
            text-align: center;
        }
        .btn-sm {
            padding: 0.5rem 1.4rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border: none;
            cursor: pointer;
        }
        .btn-sm-primary {
            background: var(--color-primary);
            color: #fff;
        }
        .btn-sm-primary:hover {
            background: var(--color-primary-light);
            box-shadow: 0 4px 16px rgba(37,99,235,0.3);
        }
        .btn-sm-outline {
            background: #fff;
            color: var(--color-primary);
            border: 1.5px solid var(--color-primary);
        }
        .btn-sm-outline:hover {
            background: #eff6ff;
        }

        /* 数据亮点 */
        .stats-banner {
            background: linear-gradient(135deg, #1e40af, #1e3a8a);
            border-radius: var(--radius-xl);
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1.5rem;
            text-align: center;
            color: #fff;
        }
        .stat-item {
            padding: 0.75rem;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--color-accent-glow);
            line-height: 1;
            margin-bottom: 0.4rem;
        }
        .stat-label-text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
            font-weight: 500;
        }

        /* 观看指南 */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 1.5rem;
            position: relative;
        }
        .step-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            position: relative;
            transition: all var(--transition-smooth);
        }
        .step-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 auto 1rem;
        }
        .step-card h4 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.4rem;
            color: var(--color-text);
        }
        .step-card p {
            font-size: 0.85rem;
            color: var(--color-text-soft);
            margin: 0;
            line-height: 1.6;
        }

        /* 赛程资讯 */
        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .schedule-item {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding: 1.1rem 1.5rem;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
        }
        .schedule-item:hover {
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .schedule-date {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-primary);
            min-width: 70px;
            text-align: center;
            flex-shrink: 0;
        }
        .schedule-matchup {
            flex: 1;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--color-text);
        }
        .schedule-stage {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            flex-shrink: 0;
            padding: 0.25rem 0.7rem;
            background: #f8fafc;
            border-radius: 2rem;
        }

        /* FAQ */
        .faq-list {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--color-border);
        }
        .faq-question {
            width: 100%;
            padding: 1.1rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-arrow {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            transition: all var(--transition-fast);
            color: var(--color-text-soft);
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            background: #eff6ff;
            color: var(--color-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 1.5rem;
            font-size: 0.9rem;
            color: var(--color-text-soft);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.25rem;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(160deg, #0f1d52, #1e40af);
            color: #fff;
            text-align: center;
            padding: 5rem 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(250,204,21,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
            max-width: 650px;
            margin: 0 auto;
        }
        .cta-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin: 0 0 1rem;
        }
        .cta-desc {
            color: rgba(255,255,255,0.75);
            margin: 0 0 2rem;
            font-size: 1rem;
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: rgba(255,255,255,0.7);
            padding: 3rem 1.5rem 2rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-brand-name {
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .footer-brand-desc {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.5);
        }
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .footer-col ul a {
            color: rgba(255,255,255,0.55);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul a:hover {
            color: #fff;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 2.5rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(2,1fr); }
            .matches-grid { grid-template-columns: repeat(2,1fr); }
            .steps-grid { grid-template-columns: repeat(2,1fr); }
            .stats-banner { grid-template-columns: repeat(2,1fr); }
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .nav-hot-tags { display: none; }
            .nav-search-wrap { width: 160px; }
            .nav-search { width: 100%; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-hot-tags { display: none; }
            .nav-search-wrap { display: none; }
            .nav-mobile-toggle { display: block; }
            .nav-inner { padding: 0 1rem; }
            .hero-section { padding: 3rem 1rem 4rem; }
            .hero-stats-row { gap: 1.5rem; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .matches-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
            .steps-grid { grid-template-columns: 1fr 1fr; }
            .stats-banner { grid-template-columns: repeat(2,1fr); gap: 1rem; padding: 2rem 1rem; }
            .section { padding: 3rem 1rem; }
            .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
            .schedule-item { flex-wrap: wrap; gap: 0.5rem; }
            .schedule-date { min-width: auto; }
        }
        @media (max-width: 520px) {
            .features-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .stats-banner { grid-template-columns: 1fr; }
            .hero-cta-group { flex-direction: column; align-items: center; }
            .hero-stats-row { flex-direction: column; gap: 1rem; }
            .hero-title { font-size: 1.7rem; }
            .btn { width: 100%; justify-content: center; }
            .btn-sm { width: auto; }
            .match-teams { gap: 0.75rem; }
            .match-team-flag { width: 36px; height: 36px; font-size: 1.2rem; }
            .match-team-name { font-size: 0.8rem; }
            .section-title { font-size: 1.35rem; }
            .stat-number { font-size: 1.8rem; }
        }
        @media (max-width: 380px) {
            .nav-brand { font-size: 0.95rem; }
            .nav-brand-icon { width: 28px; height: 28px; font-size: 0.8rem; }
            .hero-title { font-size: 1.4rem; }
            .hero-subtitle { font-size: 0.9rem; }
        }
