/* roulang page: index */
:root {
            --primary: #0d6b36;
            --primary-dark: #085226;
            --primary-light: #e6f4ea;
            --primary-glow: rgba(13,107,54,0.12);
            --accent: #f0a500;
            --accent-hover: #d49400;
            --accent-light: #fff8e6;
            --bg: #f4f5f7;
            --surface: #ffffff;
            --surface-alt: #fafbfc;
            --text: #1a1a2e;
            --text-secondary: #5a5d6e;
            --text-muted: #8a8d9a;
            --border: #e2e4e9;
            --border-light: #eef0f3;
            --radius-xs: 6px;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-xs: 0 1px 4px rgba(0,0,0,0.04);
            --shadow: 0 2px 12px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 36px rgba(0,0,0,0.10);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
            --transition-fast: 0.15s ease;
            --transition: 0.25s ease;
            --transition-slow: 0.35s ease;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --max-width: 1200px;
            --nav-height: 64px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            outline: none;
        }

        input {
            outline: none;
        }

        ul, ol {
            list-style: none;
        }

        h1, h2, h3, h4, h5, h6 {
            line-height: 1.3;
            font-weight: 700;
            color: var(--text);
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            gap: 16px;
            height: 100%;
        }

        .nav-logo-group {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }

        .nav-logo-text {
            font-weight: 700;
            font-size: 17px;
            color: var(--text);
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .nav-logo-text span {
            color: var(--primary);
        }

        .nav-channels {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            justify-content: center;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-channels::-webkit-scrollbar {
            display: none;
        }

        .nav-channel-link {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.01em;
        }

        .nav-channel-link:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-channel-link.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .nav-right-group {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-search-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-search-input {
            width: 200px;
            height: 38px;
            padding: 0 38px 0 14px;
            border-radius: 20px;
            border: 1.5px solid var(--border);
            background: var(--surface-alt);
            font-size: 14px;
            color: var(--text);
            transition: all var(--transition);
        }

        .nav-search-input:focus {
            border-color: var(--primary);
            background: var(--surface);
            box-shadow: 0 0 0 3px var(--primary-glow);
            width: 240px;
        }

        .nav-search-input::placeholder {
            color: var(--text-muted);
        }

        .nav-search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .nav-search-btn:hover {
            color: var(--primary);
        }

        .btn-nav-cta {
            padding: 9px 20px;
            border-radius: 20px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: all var(--transition);
            letter-spacing: 0.01em;
            box-shadow: 0 2px 8px rgba(13,107,54,0.25);
        }

        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: 0 4px 16px rgba(13,107,54,0.35);
            transform: translateY(-1px);
        }

        .btn-nav-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(13,107,54,0.2);
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text);
            flex-shrink: 0;
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--bg);
        }

        /* Mobile nav overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition);
        }

        .mobile-nav-overlay.open {
            opacity: 1;
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            right: 0;
            width: 300px;
            max-width: 85vw;
            bottom: 0;
            background: var(--surface);
            z-index: 1000;
            padding: 20px;
            transform: translateX(100%);
            transition: transform var(--transition-slow);
            box-shadow: var(--shadow-xl);
            overflow-y: auto;
        }

        .mobile-nav-panel.open {
            transform: translateX(0);
        }

        .mobile-nav-panel .nav-channel-link {
            display: block;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            margin-bottom: 4px;
        }

        .mobile-nav-panel .nav-search-wrap {
            margin-bottom: 16px;
        }

        .mobile-nav-panel .nav-search-input {
            width: 100%;
        }

        .mobile-nav-panel .btn-nav-cta {
            display: block;
            text-align: center;
            margin-top: 12px;
            padding: 12px 20px;
            border-radius: var(--radius-sm);
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            background: linear-gradient(160deg, #0a3320 0%, #0d4a2c 25%, #0d6b36 50%, #0a5c2d 75%, #083d1f 100%);
            padding: 70px 0 80px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255,255,255,0.025);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -60px;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(255,255,255,0.02);
            pointer-events: none;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
                              radial-gradient(circle at 70% 60%, #fff 1px, transparent 1px),
                              radial-gradient(circle at 40% 80%, #fff 1px, transparent 1px);
            background-size: 60px 60px, 80px 80px, 50px 50px;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero-content {
            flex: 1;
            color: #fff;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(255,255,255,0.12);
            color: #c8f7d5;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
            letter-spacing: 0.02em;
        }

        .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff3b3b;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.6); }
        }

        .hero-title {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #fff;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-hero-primary {
            padding: 14px 32px;
            border-radius: 28px;
            background: var(--accent);
            color: #1a1a2e;
            font-weight: 700;
            font-size: 16px;
            transition: all var(--transition);
            box-shadow: 0 4px 16px rgba(240,165,0,0.35);
            letter-spacing: 0.01em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-primary:hover {
            background: #fbb800;
            box-shadow: 0 6px 24px rgba(240,165,0,0.5);
            transform: translateY(-2px);
        }

        .btn-hero-primary:active {
            transform: translateY(0);
        }

        .btn-hero-outline {
            padding: 13px 30px;
            border-radius: 28px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid rgba(255,255,255,0.35);
            transition: all var(--transition);
            letter-spacing: 0.01em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
        }

        .hero-stats-row {
            display: flex;
            gap: 28px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .hero-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-stat-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            line-height: 1.4;
        }

        .hero-visual {
            flex-shrink: 0;
            width: 380px;
            height: 340px;
            background: rgba(255,255,255,0.04);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .hero-visual-inner {
            text-align: center;
            z-index: 1;
        }

        .hero-visual-icon {
            font-size: 80px;
            color: rgba(255,255,255,0.2);
            margin-bottom: 12px;
        }

        .hero-visual-text {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.04em;
        }

        .hero-visual::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 2px dashed rgba(255,255,255,0.08);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate-slow 30s linear infinite;
        }

        @keyframes rotate-slow {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* ============ SECTION COMMONS ============ */
        .section {
            padding: 64px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }

        .section-label {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }

        .section-title {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ============ FEATURES GRID ============ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .feature-card-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
            background: var(--primary-light);
            color: var(--primary);
            transition: all var(--transition);
        }

        .feature-card:hover .feature-card-icon {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 14px rgba(13,107,54,0.3);
        }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ CHANNELS GRID ============ */
        .channels-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .channel-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 22px 18px;
            border: 1.5px solid var(--border-light);
            text-align: center;
            transition: all var(--transition);
            cursor: pointer;
            position: relative;
        }

        .channel-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .channel-card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 3px 10px;
            border-radius: 12px;
            background: #ff3b3b;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .channel-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            background: var(--bg);
            color: var(--primary);
            transition: all var(--transition);
        }

        .channel-card:hover .channel-card-icon {
            background: var(--primary);
            color: #fff;
        }

        .channel-card h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .channel-card .channel-quality {
            font-size: 12px;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .channel-card .channel-quality .q-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22c55e;
            display: inline-block;
        }

        /* ============ SCHEDULE / MATCH LIST ============ */
        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .match-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 18px 22px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            flex-wrap: wrap;
        }

        .match-item:hover {
            box-shadow: var(--shadow);
            border-color: transparent;
        }

        .match-date {
            font-weight: 700;
            font-size: 14px;
            color: var(--primary);
            min-width: 70px;
            text-align: center;
            line-height: 1.3;
        }

        .match-date .match-time {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            min-width: 180px;
        }

        .match-team {
            font-weight: 600;
            font-size: 15px;
        }

        .match-vs {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .match-meta {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .match-tag {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            background: var(--primary-light);
            color: var(--primary);
            white-space: nowrap;
        }

        .match-tag.hot {
            background: #fff0f0;
            color: #d32f2f;
        }

        /* ============ GUIDE STEPS ============ */
        .guide-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            counter-reset: step;
        }

        .guide-step {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            border: 1px solid var(--border-light);
            text-align: center;
            position: relative;
            transition: all var(--transition);
            counter-increment: step;
        }

        .guide-step:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .guide-step::before {
            content: counter(step);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .guide-step h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .guide-step p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============ NEWS LIST ============ */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .news-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }

        .news-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .news-card-img {
            height: 160px;
            background: linear-gradient(135deg, #e8f0e8 0%, #d4e8d8 50%, #c8dcc8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--primary);
            opacity: 0.6;
        }

        .news-card-body {
            padding: 18px 20px;
        }

        .news-card-body h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-body .news-date {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ============ FAQ ============ */
        .faq-list {
            max-width: 740px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border);
        }

        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            font-size: 13px;
            color: var(--text-muted);
            transition: transform var(--transition);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 22px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            background: linear-gradient(150deg, #0d6b36 0%, #0a552b 40%, #083d1f 100%);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255,255,255,0.03);
            top: -150px;
            right: -100px;
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .cta-desc {
            font-size: 16px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .btn-cta-large {
            padding: 15px 40px;
            border-radius: 30px;
            background: var(--accent);
            color: #1a1a2e;
            font-weight: 700;
            font-size: 17px;
            transition: all var(--transition);
            box-shadow: 0 6px 24px rgba(240,165,0,0.4);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.01em;
        }

        .btn-cta-large:hover {
            background: #fbb800;
            box-shadow: 0 8px 30px rgba(240,165,0,0.55);
            transform: translateY(-2px);
        }

        .btn-cta-large:active {
            transform: translateY(0);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: #111820;
            color: rgba(255,255,255,0.7);
            padding: 48px 0 28px;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-brand .footer-logo {
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand .footer-logo-icon {
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255,255,255,0.5);
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: var(--max-width);
            margin: 32px auto 0;
            padding: 20px 24px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 12px;
            color: rgba(255,255,255,0.4);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-inner {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-stats-row {
                justify-content: center;
            }
            .hero-visual {
                width: 280px;
                height: 260px;
            }
            .hero-title {
                font-size: 34px;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .channels-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .guide-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-inner {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-channels {
                gap: 2px;
            }
            .nav-channel-link {
                padding: 6px 10px;
                font-size: 13px;
            }
            .nav-search-input {
                width: 150px;
            }
            .nav-search-input:focus {
                width: 180px;
            }
        }

        @media (max-width: 768px) {
            .nav-channels {
                display: none;
            }
            .nav-search-wrap {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .mobile-nav-overlay {
                display: block;
                pointer-events: none;
            }
            .mobile-nav-overlay.open {
                pointer-events: auto;
            }
            .mobile-nav-panel {
                display: block;
            }
            .btn-nav-cta.desktop-only {
                display: none;
            }
            .hero {
                padding: 48px 0 56px;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-desc {
                font-size: 15px;
            }
            .hero-visual {
                width: 220px;
                height: 200px;
            }
            .hero-visual-icon {
                font-size: 56px;
            }
            .section {
                padding: 44px 0;
            }
            .section-title {
                font-size: 24px;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .channels-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .guide-steps {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .news-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .match-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .match-teams {
                min-width: auto;
            }
            .hero-stats-row {
                gap: 18px;
            }
            .hero-stat-num {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .hero-inner {
                padding: 0 16px;
            }
            .hero-title {
                font-size: 24px;
            }
            .hero-desc {
                font-size: 14px;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .btn-hero-primary, .btn-hero-outline {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .hero-visual {
                width: 180px;
                height: 170px;
            }
            .hero-visual-icon {
                font-size: 44px;
            }
            .channels-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .channel-card {
                padding: 16px 12px;
            }
            .guide-steps {
                grid-template-columns: 1fr;
            }
            .cta-title {
                font-size: 24px;
            }
            .btn-cta-large {
                width: 100%;
                justify-content: center;
            }
            .section-title {
                font-size: 21px;
            }
            .footer-bottom {
                font-size: 11px;
            }
            .match-item {
                padding: 14px 16px;
            }
            .hero-stats-row {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
        }
