/* roulang page: index */
:root {
            --color-primary: #E53935;
            --color-primary-dark: #C62828;
            --color-primary-light: #FF5252;
            --color-accent: #FF6B35;
            --color-accent-gold: #FFB300;
            --color-bg-deep: #0A0A16;
            --color-bg-dark: #111128;
            --color-bg-card: #1A1A36;
            --color-bg-card-hover: #202044;
            --color-bg-surface: #161630;
            --color-text-primary: #F5F5F7;
            --color-text-secondary: #B0B0C0;
            --color-text-muted: #7A7A90;
            --color-border: rgba(255,255,255,0.08);
            --color-border-light: rgba(255,255,255,0.14);
            --color-success: #4CAF50;
            --color-warning: #FF9800;
            --color-live: #FF1744;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 6px 24px rgba(0,0,0,0.4);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
            --shadow-glow-red: 0 0 30px rgba(229,57,53,0.35);
            --shadow-glow-gold: 0 0 25px rgba(255,179,0,0.3);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --section-gap: 80px;
            --section-gap-mobile: 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);
            background-color: var(--color-bg-deep);
            color: var(--color-text-primary);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 3px;
            border-radius: 4px;
        }

        ::selection {
            background: var(--color-primary);
            color: #fff;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(10, 10, 22, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--color-border);
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(10, 10, 22, 0.97);
        }
        .navbar {
            padding: 0 20px;
            min-height: 64px;
            display: flex;
            align-items: center;
        }
        .navbar-brand-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            margin-right: 24px;
        }
        .navbar-brand-logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 9px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .navbar-brand-logo .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            color: #fff;
            flex-shrink: 0;
        }
        .navbar-brand-logo:hover {
            color: #fff;
            opacity: 0.9;
        }
        .navbar-nav-wrap {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 1;
            overflow-x: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .navbar-nav-wrap::-webkit-scrollbar {
            display: none;
        }
        .nav-link-custom {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            border-radius: 22px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-link-custom:hover {
            color: #fff;
            background: rgba(255,255,255,0.06);
        }
        .nav-link-custom.active-nav {
            color: #fff;
            background: rgba(229,57,53,0.18);
            font-weight: 600;
        }
        .nav-link-custom .nav-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-live);
            animation: pulse-dot 1.4s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.6); }
        }
        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .search-box-nav {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-box-nav input {
            background: rgba(255,255,255,0.06);
            border: 1px solid var(--color-border);
            border-radius: 24px;
            padding: 9px 16px 9px 38px;
            color: #fff;
            font-size: 0.88rem;
            width: 180px;
            transition: all var(--transition-smooth);
            outline: none;
        }
        .search-box-nav input::placeholder {
            color: var(--color-text-muted);
        }
        .search-box-nav input:focus {
            width: 220px;
            border-color: var(--color-primary-light);
            background: rgba(255,255,255,0.1);
            box-shadow: var(--shadow-glow-red);
        }
        .search-box-nav .search-icon {
            position: absolute;
            left: 13px;
            color: var(--color-text-muted);
            font-size: 0.9rem;
            pointer-events: none;
        }
        .btn-nav-login {
            padding: 9px 20px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 500;
            border: 1px solid var(--color-border-light);
            background: transparent;
            color: #fff;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-nav-login:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.3);
            color: #fff;
        }
        .btn-nav-cta {
            padding: 9px 22px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: #fff;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 20px rgba(229,57,53,0.3);
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .btn-nav-cta:hover {
            box-shadow: var(--shadow-glow-red);
            transform: translateY(-1px);
            color: #fff;
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
        }
        .btn-nav-cta .live-dot-sm {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        .navbar-toggler {
            border: none;
            color: #fff;
            padding: 8px;
            font-size: 1.35rem;
            background: transparent;
        }
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 2px solid var(--color-primary-light);
            outline-offset: 3px;
            border-radius: 6px;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 620px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--color-bg-deep);
            padding: 60px 20px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.38;
            z-index: 0;
            filter: brightness(0.7) saturate(1.2);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,10,22,0.55) 0%, rgba(10,10,22,0.85) 60%, var(--color-bg-deep) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(229,57,53,0.2);
            border: 1px solid rgba(229,57,53,0.4);
            border-radius: 30px;
            padding: 7px 18px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #FF8A80;
            margin-bottom: 20px;
            animation: fadeInUp 0.7s ease forwards;
        }
        .hero-badge .live-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--color-live);
            animation: pulse-dot 1s ease-in-out infinite;
            box-shadow: 0 0 12px var(--color-live);
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 18px;
            letter-spacing: 1px;
            animation: fadeInUp 0.7s ease 0.1s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1.12rem;
            color: var(--color-text-secondary);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.7s ease 0.2s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 0.7s ease 0.3s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .btn-hero-primary {
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-primary), #FF5722);
            color: #fff;
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-red);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 45px rgba(229,57,53,0.5);
            color: #fff;
        }
        .btn-hero-outline {
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 600;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.35);
            transition: all var(--transition-smooth);
        }
        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
            color: #fff;
            transform: translateY(-3px);
        }
        .hero-stats-row {
            display: flex;
            gap: 36px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 0.7s ease 0.4s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .hero-stat-item {
            text-align: center;
        }
        .hero-stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            display: block;
        }
        .hero-stat-label {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin-top: 2px;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(28px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== SECTIONS ========== */
        .section-gap {
            padding: var(--section-gap) 20px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-primary-light);
            margin-bottom: 10px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--color-text-secondary);
            margin-bottom: 36px;
            max-width: 620px;
        }
        .text-center .section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== LIVE CARDS ========== */
        .live-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            height: 100%;
            position: relative;
        }
        .live-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            background: var(--color-bg-card-hover);
        }
        .live-card-thumb {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: var(--color-bg-surface);
        }
        .live-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .live-card:hover .live-card-thumb img {
            transform: scale(1.06);
        }
        .live-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--color-live);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 3;
            box-shadow: 0 0 16px rgba(255,23,68,0.5);
        }
        .live-badge .dot-anim {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            animation: pulse-dot 1s ease-in-out infinite;
        }
        .live-card-body {
            padding: 18px 20px;
        }
        .live-card-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .live-card-meta {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .live-card-viewers {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--color-accent-gold);
            font-weight: 600;
            font-size: 0.8rem;
        }

        /* ========== SCHEDULE TABLE STYLE ========== */
        .schedule-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .schedule-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            border-radius: var(--radius-md);
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            margin-bottom: 10px;
            transition: all var(--transition-fast);
            flex-wrap: wrap;
        }
        .schedule-item:hover {
            border-color: var(--color-border-light);
            background: var(--color-bg-card-hover);
            box-shadow: var(--shadow-sm);
        }
        .schedule-time {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-accent-gold);
            min-width: 70px;
            flex-shrink: 0;
        }
        .schedule-info {
            flex: 1;
            min-width: 150px;
        }
        .schedule-info .match-teams {
            font-weight: 600;
            color: #fff;
            font-size: 1rem;
        }
        .schedule-info .match-league {
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }
        .schedule-status {
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 0.78rem;
            font-weight: 600;
            flex-shrink: 0;
        }
        .status-upcoming {
            background: rgba(255,152,0,0.15);
            color: #FFB74D;
        }
        .status-live-now {
            background: rgba(229,57,53,0.2);
            color: #FF8A80;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        /* ========== FEATURE CARDS ========== */
        .feature-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            height: 100%;
            text-align: center;
        }
        .feature-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
            background: var(--color-bg-card-hover);
        }
        .feature-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.5rem;
            color: #fff;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            box-shadow: var(--shadow-glow-red);
        }
        .feature-card h4 {
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .feature-card p {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.6;
        }

        /* ========== STATS BAND ========== */
        .stats-band {
            background: var(--color-bg-dark);
            border-radius: var(--radius-xl);
            padding: 40px 20px;
            border: 1px solid var(--color-border);
            position: relative;
            overflow: hidden;
        }
        .stats-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }
        .stats-band-content {
            position: relative;
            z-index: 1;
        }
        .stat-block {
            text-align: center;
            padding: 10px;
        }
        .stat-block .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            display: block;
        }
        .stat-block .stat-number.gradient-text {
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-block .stat-label-sm {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 6px;
        }

        /* ========== GUIDE STEPS ========== */
        .step-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            height: 100%;
            position: relative;
            text-align: center;
        }
        .step-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            font-weight: 800;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            box-shadow: var(--shadow-glow-red);
        }
        .step-card h5 {
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            font-size: 1rem;
        }
        .step-card p {
            color: var(--color-text-secondary);
            font-size: 0.85rem;
            margin: 0;
        }

        /* ========== TESTIMONIAL CARDS ========== */
        .testimonial-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--color-border);
            transition: all var(--transition-smooth);
            height: 100%;
        }
        .testimonial-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-md);
            background: var(--color-bg-card-hover);
        }
        .testimonial-stars {
            color: var(--color-accent-gold);
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        .testimonial-text {
            color: var(--color-text-secondary);
            font-size: 0.92rem;
            margin-bottom: 14px;
            line-height: 1.6;
            font-style: italic;
        }
        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .testimonial-name {
            font-weight: 600;
            color: #fff;
            font-size: 0.88rem;
        }
        .testimonial-role {
            font-size: 0.76rem;
            color: var(--color-text-muted);
        }

        /* ========== FAQ ========== */
        .faq-accordion .accordion-item {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-accordion .accordion-button {
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 18px 22px;
            border: none;
            box-shadow: none;
            border-radius: var(--radius-md) !important;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(229,57,53,0.08);
            color: #fff;
            box-shadow: none;
        }
        .faq-accordion .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: var(--color-primary-light);
        }
        .faq-accordion .accordion-body {
            color: var(--color-text-secondary);
            padding: 6px 22px 20px;
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* ========== CTA BAND ========== */
        .cta-band {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            padding: 55px 30px;
            text-align: center;
            background: var(--color-bg-dark);
            border: 1px solid var(--color-border);
        }
        .cta-band-bg {
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
        }
        .cta-band-content {
            position: relative;
            z-index: 1;
        }
        .cta-band h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .cta-band p {
            color: var(--color-text-secondary);
            margin-bottom: 24px;
            font-size: 1rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-large {
            padding: 15px 38px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: #fff;
            border: none;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-red);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(229,57,53,0.5);
            color: #fff;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-bg-dark);
            border-top: 1px solid var(--color-border);
            padding: 50px 20px 30px;
            color: var(--color-text-muted);
            font-size: 0.88rem;
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.84rem;
            color: var(--color-text-muted);
            max-width: 340px;
            line-height: 1.6;
        }
        .footer-links-title {
            font-weight: 700;
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links-list li {
            margin-bottom: 8px;
        }
        .footer-links-list a {
            color: var(--color-text-muted);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-links-list a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }

        /* ========== UTILITY ========== */
        .container-custom {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .text-gradient-gold {
            background: linear-gradient(135deg, #FFD54F, #FFB300);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 2.4rem;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .search-box-nav input {
                width: 140px;
            }
            .search-box-nav input:focus {
                width: 170px;
            }
        }
        @media (max-width: 991.98px) {
            .navbar {
                flex-wrap: wrap;
                padding: 0 14px;
                min-height: 58px;
            }
            .navbar-nav-wrap {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(16,16,38,0.98);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 16px 20px;
                gap: 2px;
                border-bottom: 1px solid var(--color-border);
                box-shadow: var(--shadow-lg);
            }
            .navbar-nav-wrap.show-mobile {
                display: flex;
            }
            .nav-link-custom {
                padding: 12px 16px;
                width: 100%;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
            }
            .navbar-actions {
                margin-left: auto;
                gap: 8px;
            }
            .search-box-nav input {
                width: 120px;
                font-size: 0.82rem;
                padding: 8px 12px 8px 32px;
            }
            .search-box-nav input:focus {
                width: 140px;
            }
            .btn-nav-login {
                padding: 7px 14px;
                font-size: 0.8rem;
            }
            .btn-nav-cta {
                padding: 7px 16px;
                font-size: 0.8rem;
            }
            .hero-section {
                min-height: 500px;
                padding: 40px 16px;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .section-gap {
                padding: var(--section-gap-mobile) 16px;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .hero-stats-row {
                gap: 20px;
            }
            .hero-stat-num {
                font-size: 1.4rem;
            }
            .cta-band h3 {
                font-size: 1.5rem;
            }
            .stats-band {
                padding: 30px 14px;
            }
            .stat-block .stat-number {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 1.7rem;
                letter-spacing: 0;
            }
            .hero-desc {
                font-size: 0.88rem;
            }
            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
                padding: 13px 24px;
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .hero-stats-row {
                gap: 14px;
            }
            .hero-stat-num {
                font-size: 1.2rem;
            }
            .hero-stat-label {
                font-size: 0.72rem;
            }
            .live-card-body {
                padding: 14px 16px;
            }
            .live-card-title {
                font-size: 0.95rem;
            }
            .feature-card {
                padding: 24px 18px;
            }
            .feature-icon-circle {
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }
            .cta-band {
                padding: 35px 18px;
            }
            .cta-band h3 {
                font-size: 1.3rem;
            }
            .btn-cta-large {
                padding: 13px 28px;
                font-size: 0.95rem;
            }
            .schedule-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .navbar-brand-logo {
                font-size: 1.05rem;
            }
            .navbar-brand-logo .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }
            .search-box-nav input {
                width: 100px;
                font-size: 0.78rem;
            }
            .search-box-nav input:focus {
                width: 120px;
            }
            .stats-band {
                padding: 24px 12px;
            }
            .stat-block .stat-number {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.4rem;
            }
            .hero-section {
                min-height: 420px;
                padding: 28px 12px;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 5px 14px;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .hero-stats-row {
                gap: 10px;
            }
            .hero-stat-num {
                font-size: 1rem;
            }
            .hero-stat-label {
                font-size: 0.68rem;
            }
            .navbar-actions {
                gap: 4px;
            }
            .search-box-nav {
                display: none;
            }
            .btn-nav-login {
                padding: 6px 12px;
                font-size: 0.76rem;
            }
            .btn-nav-cta {
                padding: 6px 12px;
                font-size: 0.76rem;
            }
            .navbar-brand-logo {
                font-size: 0.95rem;
                gap: 6px;
            }
            .navbar-brand-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
            .live-card-thumb {
                aspect-ratio: 16/11;
            }
            .cta-band h3 {
                font-size: 1.15rem;
            }
            .cta-band p {
                font-size: 0.85rem;
            }
            .btn-cta-large {
                padding: 12px 22px;
                font-size: 0.88rem;
            }
            .stat-block .stat-number {
                font-size: 1.3rem;
            }
            .stat-block .stat-label-sm {
                font-size: 0.72rem;
            }
        }
