/* roulang page: index */
:root {
            --color-primary: #E60012;
            --color-primary-dark: #C4000F;
            --color-primary-light: #FF1A2E;
            --color-secondary: #1A1A3E;
            --color-secondary-light: #252550;
            --color-accent: #FFD700;
            --color-accent-dark: #E6BF00;
            --color-bg: #F8F9FC;
            --color-bg-alt: #EEF0F5;
            --color-bg-dark: #0D0D1A;
            --color-bg-card: #FFFFFF;
            --color-text: #1E1E30;
            --color-text-secondary: #5A5A72;
            --color-text-light: #8A8A9A;
            --color-text-on-dark: #E8E8F0;
            --color-border: #E2E4EB;
            --color-border-light: #EEF0F5;
            --color-success: #00C853;
            --color-success-bg: #E8F8EF;
            --color-live: #FF1744;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 50px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.08);
            --shadow-glow: 0 0 40px rgba(230, 0, 18, 0.25);
            --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --container-max: 1200px;
            --container-narrow: 960px;
            --section-gap: 80px;
            --section-gap-sm: 50px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            padding-left: 20px;
            padding-right: 20px;
            margin: 0 auto;
        }
        .container-narrow {
            max-width: var(--container-narrow);
            padding-left: 20px;
            padding-right: 20px;
            margin: 0 auto;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: #fff;
            box-shadow: 0 1px 0 var(--color-border-light);
            transition: box-shadow var(--transition-base);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--color-secondary);
            letter-spacing: -0.01em;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--color-primary);
        }
        .nav-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1.5px solid var(--color-border);
            background: #fff;
            color: var(--color-text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .nav-search-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: #FFF5F5;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-base);
            box-shadow: 0 2px 8px rgba(230, 0, 18, 0.3);
        }
        .nav-cta-btn:hover {
            background: var(--color-primary-dark);
            color: #fff;
            box-shadow: 0 4px 16px rgba(230, 0, 18, 0.4);
            transform: translateY(-1px);
        }
        .nav-cta-btn:active {
            transform: translateY(0);
            box-shadow: 0 1px 4px rgba(230, 0, 18, 0.3);
        }

        .nav-channels-bar {
            border-top: 1px solid var(--color-border-light);
            background: #fff;
        }
        .channel-tabs {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .channel-tabs::-webkit-scrollbar {
            display: none;
        }
        .channel-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 16px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            border: 1.5px solid transparent;
            background: transparent;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .channel-tab:hover {
            color: var(--color-primary);
            background: #FFF5F5;
            border-color: transparent;
        }
        .channel-tab.active {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            border-color: var(--color-primary);
            box-shadow: 0 2px 10px rgba(230, 0, 18, 0.25);
        }
        .channel-tab .tab-icon {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        .channel-tab .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-live);
            animation: livePulse 1.6s ease-in-out infinite;
            display: inline-block;
            flex-shrink: 0;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.7);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 8px rgba(255, 23, 68, 0);
            }
        }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--color-border);
            background: #fff;
            color: var(--color-text);
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, #0D0D1A 0%, #1A1A3E 40%, #1E1040 70%, #0D0D1A 100%);
            overflow: hidden;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            mix-blend-mode: overlay;
            pointer-events: none;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 55% 45%, rgba(230, 0, 18, 0.18) 0%, transparent 65%),
                radial-gradient(ellipse at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(13, 13, 26, 0.2) 0%, rgba(13, 13, 26, 0.7) 100%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0;
        }
        .hero-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(230, 0, 18, 0.15);
            border: 1px solid rgba(230, 0, 18, 0.4);
            color: #FF6B7A;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.03em;
            margin-bottom: 20px;
            animation: badgeGlow 2.5s ease-in-out infinite;
        }
        @keyframes badgeGlow {
            0%,
            100% {
                box-shadow: 0 0 12px rgba(230, 0, 18, 0.3);
            }
            50% {
                box-shadow: 0 0 28px rgba(230, 0, 18, 0.6);
            }
        }
        .hero-live-badge .pulse-circle {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--color-live);
            animation: livePulse 1.4s ease-in-out infinite;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            max-width: 700px;
        }
        .hero-title .accent-text {
            color: var(--color-accent);
            position: relative;
        }
        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(220, 220, 235, 0.85);
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            background: var(--color-primary);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-glow);
        }
        .btn-hero-primary:hover {
            background: #FF1A2E;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230, 0, 18, 0.45);
        }
        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.35);
            transition: all var(--transition-base);
        }
        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            transform: translateY(-2px);
        }
        .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .hero-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
        .hero-stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(200, 200, 215, 0.8);
            line-height: 1.3;
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section-sm {
            padding: var(--section-gap-sm) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--color-primary);
            background: #FFF0F2;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            margin-bottom: 12px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--color-secondary);
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--color-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .bg-dark-section {
            background: var(--color-bg-dark);
            color: var(--color-text-on-dark);
        }
        .bg-dark-section .section-title {
            color: #fff;
        }
        .bg-dark-section .section-desc {
            color: rgba(200, 200, 215, 0.8);
        }
        .bg-dark-section .section-label {
            background: rgba(230, 0, 18, 0.2);
            color: #FF6B7A;
        }

        /* ========== CARDS ========== */
        .card-custom {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-smooth);
            border: 1px solid var(--color-border-light);
            height: 100%;
        }
        .card-custom:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }
        .card-custom .card-icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 18px;
            flex-shrink: 0;
        }
        .card-custom .card-icon-red {
            background: #FFF0F2;
            color: var(--color-primary);
        }
        .card-custom .card-icon-blue {
            background: #EEF0FA;
            color: var(--color-secondary);
        }
        .card-custom .card-icon-gold {
            background: #FFFBE6;
            color: #C8960C;
        }
        .card-custom .card-icon-green {
            background: var(--color-success-bg);
            color: var(--color-success);
        }
        .card-custom h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--color-text);
        }
        .card-custom p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        .card-match {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-smooth);
            border: 1px solid var(--color-border-light);
            height: 100%;
        }
        .card-match:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }
        .card-match-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .card-match-body {
            padding: 20px;
        }
        .card-match-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            margin-bottom: 10px;
        }
        .tag-upcoming {
            background: #FFF3E0;
            color: #E65100;
        }
        .tag-live-now {
            background: #FFEBEE;
            color: #C62828;
        }
        .tag-replay {
            background: #E8F5E9;
            color: #2E7D32;
        }
        .card-match h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .card-match .match-info {
            font-size: 0.85rem;
            color: var(--color-text-light);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .card-stat {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            transition: all var(--transition-base);
        }
        .card-stat:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .card-stat .stat-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 6px;
        }
        .card-stat .stat-label {
            font-size: 0.85rem;
            color: rgba(200, 200, 215, 0.7);
            font-weight: 500;
        }

        /* ========== MATCH SCHEDULE TABLE STYLE ========== */
        .schedule-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            flex-wrap: wrap;
        }
        .schedule-card:hover {
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .schedule-date {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-secondary);
            min-width: 70px;
            text-align: center;
            line-height: 1.3;
        }
        .schedule-date span {
            display: block;
            font-size: 0.75rem;
            color: var(--color-text-light);
            font-weight: 400;
        }
        .schedule-teams {
            flex: 1;
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            min-width: 140px;
        }
        .schedule-vs {
            color: var(--color-primary);
            font-weight: 800;
            margin: 0 4px;
        }
        .schedule-status {
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            white-space: nowrap;
        }
        .status-countdown {
            background: #FFF3E0;
            color: #E65100;
        }
        .status-live {
            background: #FFEBEE;
            color: #C62828;
            animation: badgeGlow 2s ease-in-out infinite;
        }
        .status-done {
            background: #F5F5F5;
            color: #757575;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            padding: 18px 24px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--color-text);
            background: #fff;
            border: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-question i {
            transition: transform var(--transition-base);
            font-size: 0.85rem;
            color: var(--color-text-light);
            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-smooth), padding var(--transition-smooth);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 24px 18px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        /* ========== CTA ========== */
        .cta-section {
            position: relative;
            background: linear-gradient(150deg, #1A1A3E 0%, #121030 50%, #0D0D1A 100%);
            overflow: hidden;
            text-align: center;
            padding: 70px 0;
        }
        .cta-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
            mix-blend-mode: overlay;
            pointer-events: none;
        }
        .cta-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(230, 0, 18, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-content {
            position: relative;
            z-index: 2;
        }
        .cta-content h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .cta-content p {
            color: rgba(220, 220, 235, 0.8);
            margin-bottom: 28px;
            font-size: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-input-group {
            display: flex;
            gap: 10px;
            max-width: 460px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-input {
            flex: 1;
            min-width: 200px;
            padding: 13px 18px;
            border-radius: var(--radius-full);
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: all var(--transition-base);
        }
        .cta-input::placeholder {
            color: rgba(200, 200, 215, 0.5);
        }
        .cta-input:focus {
            border-color: var(--color-primary);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.15);
        }
        .cta-submit-btn {
            padding: 13px 28px;
            border-radius: var(--radius-full);
            background: var(--color-primary);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(230, 0, 18, 0.35);
        }
        .cta-submit-btn:hover {
            background: #FF1A2E;
            box-shadow: 0 6px 24px rgba(230, 0, 18, 0.5);
            transform: translateY(-1px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0A0A14;
            color: rgba(200, 200, 215, 0.7);
            padding: 50px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-brand-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-desc {
            font-size: 0.85rem;
            line-height: 1.7;
            color: rgba(180, 180, 195, 0.7);
        }
        .footer-col h4 {
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(180, 180, 195, 0.7);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            font-size: 0.8rem;
            color: rgba(160, 160, 175, 0.6);
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(200, 200, 215, 0.6);
            font-size: 0.9rem;
            transition: all var(--transition-fast);
        }
        .footer-social a:hover {
            background: var(--color-primary);
            color: #fff;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .section {
                padding: 60px 0;
            }
            .section-sm {
                padding: 40px 0;
            }
            .hero-section {
                min-height: 500px;
            }
            .hero-content {
                padding: 60px 0;
            }
            .card-match-img {
                height: 150px;
            }
            .schedule-card {
                gap: 12px;
                padding: 16px 18px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-cta-btn.desktop-only {
                display: none;
            }
            .nav-actions .nav-cta-btn {
                display: none;
            }
            .nav-actions {
                gap: 8px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-stats-row {
                gap: 20px;
                margin-top: 28px;
            }
            .hero-stat-num {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .channel-tab {
                padding: 7px 12px;
                font-size: 0.82rem;
            }
            .card-custom {
                padding: 20px;
            }
            .schedule-card {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .schedule-date {
                min-width: auto;
            }
            .cta-content h2 {
                font-size: 1.5rem;
            }
            .hero-section {
                min-height: 440px;
            }
            .hero-content {
                padding: 50px 0;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 22px;
                font-size: 0.9rem;
            }
            .section {
                padding: 45px 0;
            }
            .section-header {
                margin-bottom: 32px;
            }
            .schedule-teams {
                min-width: auto;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .hero-stats-row {
                flex-direction: column;
                gap: 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .section-desc {
                font-size: 0.9rem;
            }
            .nav-logo {
                font-size: 1.1rem;
            }
            .nav-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .channel-tab {
                padding: 6px 10px;
                font-size: 0.78rem;
            }
            .card-match-img {
                height: 130px;
            }
            .cta-input-group {
                flex-direction: column;
            }
            .cta-input {
                min-width: 100%;
            }
            .cta-submit-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .hero-section {
                min-height: 380px;
            }
            .hero-content {
                padding: 40px 0;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 0.9rem;
            }
            .faq-answer-inner {
                padding: 0 16px 14px;
                font-size: 0.85rem;
            }
            .card-stat .stat-num {
                font-size: 1.8rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
