/* roulang page: index */
:root {
            --bg-deep: #080e1f;
            --bg-secondary: #0b1329;
            --card-glass-bg: rgba(255, 255, 255, 0.04);
            --card-glass-bg-hover: rgba(255, 255, 255, 0.07);
            --blue-glow: #00aaff;
            --blue-glow-rgb: 0, 170, 255;
            --cyan-bright: #00e5ff;
            --cyan-bright-rgb: 0, 229, 255;
            --electric-green: #39ff14;
            --electric-green-rgb: 57, 255, 20;
            --deep-gray-blue: #1e2744;
            --text-body: #d0d7e4;
            --text-muted: #7f8aa0;
            --text-heading: #e8edf5;
            --border-glass: rgba(255, 255, 255, 0.1);
            --border-glow: rgba(0, 170, 255, 0.4);
            --radius-card: 16px;
            --radius-btn: 12px;
            --radius-input: 10px;
            --font-cn: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --font-num: "Inter", "Roboto", "Helvetica Neue", sans-serif;
            --nav-height: 64px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 20px rgba(0, 170, 255, 0.3);
            --shadow-glow-strong: 0 0 32px rgba(0, 170, 255, 0.55);
            --shadow-btn: 0 0 12px rgba(0, 170, 255, 0.5);
            --shadow-btn-hover: 0 0 22px rgba(0, 170, 255, 0.75);
            --container-max: 1200px;
            --section-gap: 80px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-cn);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-body);
            background: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.008) 40px, rgba(255, 255, 255, 0.008) 41px),
                repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.006) 40px, rgba(255, 255, 255, 0.006) 41px);
            opacity: 0.5;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            cursor: pointer;
        }
        input {
            cursor: text;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* ============ NAVIGATION ============ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(8, 14, 31, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 170, 255, 0.2);
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
        }
        .nav.scrolled {
            background: rgba(8, 14, 31, 0.95);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
            border-bottom-color: rgba(0, 170, 255, 0.35);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            white-space: nowrap;
            z-index: 1001;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--blue-glow);
        }
        .nav-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--blue-glow), #0055ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #fff;
            box-shadow: 0 0 14px rgba(0, 170, 255, 0.5);
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }
        .nav-links a {
            display: inline-block;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #cbd5e9;
            border-radius: 8px;
            position: relative;
            transition: color var(--transition-fast), background var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 2px;
            background: var(--blue-glow);
            border-radius: 1px;
            transition: transform var(--transition-fast);
            box-shadow: 0 0 8px rgba(0, 170, 255, 0.7);
        }
        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-links a:hover::after,
        .nav-links a:focus-visible::after {
            transform: translateX(-50%) scaleX(1);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            padding: 8px;
            background: none;
            border: none;
            width: 40px;
            height: 36px;
            justify-content: center;
            align-items: center;
        }
        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: #cbd5e9;
            border-radius: 2px;
            transition: all var(--transition-fast);
            transform-origin: center;
        }
        .nav-hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background: #fff;
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background: #fff;
        }
        .nav-mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        .nav-mobile-overlay.active {
            display: block;
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            height: 100vh;
            z-index: 1000;
            background: rgba(11, 19, 41, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 90px 28px 40px;
            flex-direction: column;
            gap: 4px;
            border-left: 1px solid rgba(0, 170, 255, 0.25);
            box-shadow: -8px 0 30px rgba(0, 0, 0, 0.6);
            transform: translateX(100%);
            transition: transform var(--transition-smooth);
        }
        .nav-mobile-menu.active {
            transform: translateX(0);
        }
        .nav-mobile-menu a {
            display: block;
            padding: 14px 16px;
            font-size: 17px;
            font-weight: 500;
            color: #cbd5e9;
            border-radius: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all var(--transition-fast);
        }
        .nav-mobile-menu a:hover,
        .nav-mobile-menu a:focus-visible {
            color: #fff;
            background: rgba(0, 170, 255, 0.12);
            border-bottom-color: rgba(0, 170, 255, 0.35);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-mobile-menu {
                display: flex;
            }
            .nav-logo {
                font-size: 18px;
            }
            .nav-logo-icon {
                width: 28px;
                height: 28px;
                font-size: 15px;
            }
        }

        /* ============ HERO ============ */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: calc(var(--nav-height) + 40px) 24px 60px;
            text-align: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            filter: brightness(0.35) saturate(0.7);
        }
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: radial-gradient(ellipse at center, rgba(8, 14, 31, 0.3) 0%, rgba(8, 14, 31, 0.85) 70%, #080e1f 100%);
        }
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.5;
        }
        .hero-particle {
            position: absolute;
            border-radius: 50%;
            background: var(--blue-glow);
            animation: floatUp linear infinite;
            opacity: 0;
        }
        @keyframes floatUp {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            30% {
                opacity: 0.4;
            }
            100% {
                transform: translateY(-10vh) scale(2);
                opacity: 0;
            }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            width: 100%;
        }
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--electric-green);
            border: 1px solid rgba(57, 255, 20, 0.4);
            background: rgba(57, 255, 20, 0.06);
            margin-bottom: 20px;
            animation: pulseBadge 2s ease-in-out infinite;
        }
        @keyframes pulseBadge {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
            }
            50% {
                box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
            }
        }
        .hero-dot-live {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--electric-green);
            margin-right: 6px;
            animation: dotBlink 1.2s ease-in-out infinite;
            box-shadow: 0 0 10px var(--electric-green);
        }
        @keyframes dotBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.2;
            }
        }
        .hero h1 {
            font-family: var(--font-cn);
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 16px;
            text-shadow: 0 0 40px rgba(0, 170, 255, 0.5), 0 0 80px rgba(0, 170, 255, 0.2);
            letter-spacing: 1px;
        }
        .hero h1 span {
            color: var(--cyan-bright);
        }
        .hero-subtitle {
            font-size: 19px;
            color: #b0bbd3;
            margin-bottom: 36px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 40px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 16px;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.3px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: linear-gradient(135deg, #00aaff 0%, #0055ff 100%);
            color: #fff;
            box-shadow: var(--shadow-btn);
            border: none;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-btn-hover);
            transform: scale(1.03);
            filter: brightness(1.1);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 0 0 rgba(0, 170, 255, 0);
        }
        .btn-outline:hover {
            border-color: var(--blue-glow);
            box-shadow: 0 0 18px rgba(0, 170, 255, 0.45);
            color: #fff;
            background: rgba(0, 170, 255, 0.06);
        }
        .btn-sm {
            padding: 10px 18px;
            font-size: 14px;
            border-radius: 8px;
        }
        .hero-dashboard {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 780px;
            margin: 0 auto;
        }
        .hero-stat-card {
            background: rgba(30, 39, 68, 0.55);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-card);
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .hero-stat-card:hover {
            border-color: rgba(0, 170, 255, 0.5);
            box-shadow: 0 0 28px rgba(0, 170, 255, 0.25);
            transform: translateY(-3px);
            background: rgba(30, 39, 68, 0.7);
        }
        .hero-stat-label {
            font-size: 13px;
            color: #8a95b5;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .hero-stat-value {
            font-family: var(--font-num);
            font-size: 48px;
            font-weight: 800;
            color: var(--cyan-bright);
            line-height: 1;
            text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
            transition: color var(--transition-fast);
            letter-spacing: -1px;
            font-variant-numeric: tabular-nums;
        }
        .hero-stat-card:hover .hero-stat-value {
            text-shadow: 0 0 32px rgba(0, 229, 255, 0.75);
        }
        .hero-stat-sub {
            font-size: 12px;
            color: #6b7795;
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            .hero-subtitle {
                font-size: 16px;
            }
            .hero-dashboard {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .hero-stat-card:last-child {
                grid-column: 1 / -1;
                max-width: 280px;
                justify-self: center;
                width: 100%;
            }
            .hero-stat-value {
                font-size: 36px;
            }
            .btn {
                padding: 12px 22px;
                font-size: 15px;
            }
        }
        @media (max-width: 520px) {
            .hero {
                min-height: auto;
                padding: calc(var(--nav-height) + 24px) 16px 40px;
            }
            .hero h1 {
                font-size: 28px;
            }
            .hero-dashboard {
                grid-template-columns: 1fr;
                gap: 8px;
                max-width: 280px;
            }
            .hero-stat-card:last-child {
                grid-column: auto;
                max-width: none;
            }
            .hero-stat-value {
                font-size: 32px;
            }
            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }
            .hero-cta-group .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }

        /* ============ SECTIONS COMMON ============ */
        .section {
            padding: var(--section-gap) 24px;
            position: relative;
            z-index: 1;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-family: var(--font-cn);
            font-size: 40px;
            font-weight: 700;
            color: var(--text-heading);
            margin-bottom: 12px;
            display: inline-block;
            position: relative;
        }
        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            margin: 12px auto 0;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--blue-glow), var(--cyan-bright));
            box-shadow: 0 0 12px rgba(0, 170, 255, 0.5);
        }
        .section-header p {
            color: #8a95b5;
            font-size: 17px;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section {
                padding: 48px 16px;
            }
            .section-header h2 {
                font-size: 30px;
            }
            .section-header p {
                font-size: 15px;
            }
            :root {
                --section-gap: 48px;
            }
        }

        /* ============ STATS SECTION ============ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: var(--card-glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 170, 255, 0.06) 0%, transparent 60%);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .stat-card:hover::before {
            opacity: 1;
        }
        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
            transform: translateY(-4px);
        }
        .stat-card-icon {
            font-size: 32px;
            margin-bottom: 10px;
        }
        .stat-card-value {
            font-family: var(--font-num);
            font-size: 50px;
            font-weight: 800;
            color: var(--cyan-bright);
            line-height: 1;
            text-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
            transition: all var(--transition-smooth);
            letter-spacing: -1px;
            font-variant-numeric: tabular-nums;
        }
        .stat-card:hover .stat-card-value {
            transform: scale(1.08);
            text-shadow: 0 0 28px rgba(0, 229, 255, 0.65);
        }
        .stat-card-label {
            font-size: 14px;
            color: #8a95b5;
            margin-top: 6px;
            font-weight: 500;
        }
        .stat-card-trend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 4px;
            padding: 3px 10px;
            border-radius: 20px;
        }
        .stat-card-trend.up {
            color: var(--electric-green);
            background: rgba(57, 255, 20, 0.08);
        }
        .stat-card-trend.down {
            color: #ff5c5c;
            background: rgba(255, 92, 92, 0.08);
        }
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .stat-card-value {
                font-size: 38px;
            }
        }

        /* ============ SERVICES SECTION ============ */
        .services-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            grid-template-rows: auto auto;
            gap: 16px;
        }
        .service-card {
            background: var(--card-glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .service-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }
        .service-card.featured {
            grid-row: 1 / -1;
            background: rgba(30, 39, 68, 0.5);
            border-color: rgba(0, 170, 255, 0.3);
            box-shadow: 0 0 20px rgba(0, 170, 255, 0.15);
        }
        .service-card.featured:hover {
            border-color: rgba(0, 170, 255, 0.6);
            box-shadow: 0 0 32px rgba(0, 170, 255, 0.3);
        }
        .service-card-img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 4px;
        }
        .service-card.featured .service-card-img {
            height: 200px;
        }
        .service-card-icon {
            font-size: 36px;
            flex-shrink: 0;
        }
        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-heading);
            line-height: 1.3;
        }
        .service-card.featured h3 {
            font-size: 24px;
        }
        .service-card p {
            font-size: 14px;
            color: #8a95b5;
            line-height: 1.6;
            flex-grow: 1;
        }
        .service-card.featured p {
            font-size: 15px;
        }
        .service-card-tag {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(0, 170, 255, 0.12);
            color: var(--blue-glow);
            align-self: flex-start;
            letter-spacing: 0.5px;
        }
        .service-sub-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            grid-column: 2;
            grid-row: 2;
        }
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            .service-card.featured {
                grid-row: auto;
            }
            .service-sub-grid {
                grid-column: 1;
                grid-row: auto;
                grid-template-columns: 1fr 1fr;
            }
            .service-card.featured .service-card-img {
                height: 160px;
            }
            .service-card-img {
                height: 120px;
            }
        }
        @media (max-width: 520px) {
            .service-sub-grid {
                grid-template-columns: 1fr;
            }
            .service-card.featured h3 {
                font-size: 20px;
            }
        }

        /* ============ COMPARISON SECTION ============ */
        .comparison-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .match-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--card-glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-glass);
            border-radius: var(--radius-card);
            padding: 18px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            flex-wrap: wrap;
        }
        .match-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-glow);
        }
        .match-card.winner-highlight {
            border-left: 3px solid var(--electric-green);
            box-shadow: 0 0 16px rgba(57, 255, 20, 0.15);
        }
        .match-teams {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 180px;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-heading);
        }
        .match-teams .vs-text {
            color: #5a6885;
            font-size: 14px;
            font-weight: 500;
        }
        .match-score {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 800;
            color: var(--cyan-bright);
            text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
            min-width: 70px;
            text-align: center;
            letter-spacing: 2px;
            font-variant-numeric: tabular-nums;
        }
        .match-score.pending {
            color: #5a6885;
            text-shadow: none;
            font-size: 20px;
            letter-spacing: 1px;
        }
        .match-meta {
            font-size: 13px;
            color: #6b7795;
            text-align: right;
            min-width: 100px;
        }
        .match-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 14px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .match-tag.finished {
            background: rgba(57, 255, 20, 0.1);
            color: var(--electric-green);
        }
        .match-tag.upcoming {
            background: rgba(0, 170, 255, 0.1);
            color: var(--blue-glow);
        }
        .match-subscribe-btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            background: transparent;
            border: 1px solid rgba(0, 170, 255, 0.5);
            color: var(--blue-glow);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .match-subscribe-btn:hover {
            background: rgba(0, 170, 255, 0.15);
            border-color: var(--blue-glow);
            box-shadow: 0 0 10px rgba(0, 170, 255, 0.35);
        }
        @media (max-width: 600px) {
            .match-card {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                gap: 10px;
                padding: 16px;
            }
            .match-teams {
                justify-content: center;
                min-width: auto;
            }
            .match-score {
                text-align: center;
                min-width: auto;
                font-size: 26px;
            }
            .match-meta {
                text-align: center;
                min-width: auto;
            }
            .match-subscribe-btn {
                align-self: center;
            }
        }

        /* ============ FAQ SECTION ============ */
        .faq-stats-bar {
            text-align: center;
            margin-bottom: 40px;
            padding: 16px 24px;
            background: rgba(0, 170, 255, 0.06);
            border-radius: var(--radius-card);
            border: 1px solid rgba(0, 170, 255, 0.2);
            display: inline-block;
            margin-left: auto;
            margin-right: auto;
            width: fit-content;
        }
        .faq-stats-bar .faq-stat-num {
            font-family: var(--font-num);
            font-size: 38px;
            font-weight: 800;
            color: var(--cyan-bright);
            text-shadow: 0 0 14px rgba(0, 229, 255, 0.4);
        }
        .faq-stats-bar span {
            font-size: 15px;
            color: #b0bbd3;
        }
        .faq-wrapper {
            max-width: 700px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all var(--transition-fast);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 8px 18px 16px;
            cursor: pointer;
            font-size: 17px;
            font-weight: 600;
            color: var(--text-heading);
            transition: all var(--transition-fast);
            border-left: 3px solid transparent;
            gap: 12px;
            text-align: left;
            width: 100%;
            background: none;
            border-top: none;
            border-right: none;
            border-bottom: none;
            font-family: inherit;
        }
        .faq-question:hover {
            border-left-color: var(--blue-glow);
            background: rgba(0, 170, 255, 0.03);
            color: #fff;
        }
        .faq-item.open .faq-question {
            border-left-color: var(--blue-glow);
            background: rgba(0, 170, 255, 0.05);
            color: #fff;
        }
        .faq-arrow {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            transition: transform var(--transition-smooth);
            color: #6b7795;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--blue-glow);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 8px 0 20px;
            font-size: 15px;
            color: #8a95b5;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 8px 18px 20px;
        }
        @media (max-width: 520px) {
            .faq-question {
                font-size: 15px;
                padding: 14px 6px 14px 12px;
            }
            .faq-answer {
                font-size: 14px;
            }
            .faq-stats-bar .faq-stat-num {
                font-size: 30px;
            }
        }

        /* ============ CONTACT / CTA SECTION ============ */
        .cta-section {
            text-align: center;
            padding: 60px 24px;
            position: relative;
            z-index: 1;
            background: radial-gradient(ellipse at center, rgba(0, 170, 255, 0.08) 0%, transparent 65%);
            border-radius: var(--radius-card);
            margin: 0 24px;
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section h2 {
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }
        .cta-section p {
            color: #8a95b5;
            margin-bottom: 28px;
            font-size: 16px;
        }
        .cta-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-input {
            flex: 1;
            min-width: 220px;
            padding: 14px 18px;
            border-radius: var(--radius-input);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #334;
            color: #fff;
            font-size: 15px;
            transition: all var(--transition-fast);
            font-family: inherit;
        }
        .cta-input::placeholder {
            color: #5a6885;
        }
        .cta-input:focus {
            outline: none;
            border-color: var(--blue-glow);
            box-shadow: 0 0 16px rgba(0, 170, 255, 0.3);
            background: rgba(255, 255, 255, 0.07);
        }
        .cta-privacy {
            font-size: 12px;
            color: #5a6885;
            margin-top: 16px;
        }
        @media (max-width: 520px) {
            .cta-section {
                margin: 0 12px;
                padding: 40px 16px;
            }
            .cta-section h2 {
                font-size: 26px;
            }
            .cta-form {
                flex-direction: column;
                align-items: center;
            }
            .cta-input {
                width: 100%;
                min-width: auto;
            }
            .cta-form .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ============ FOOTER ============ */
        .footer {
            padding: 32px 24px;
            text-align: center;
            border-top: 1px solid rgba(0, 170, 255, 0.2);
            position: relative;
            z-index: 1;
            background: rgba(8, 14, 31, 0.6);
        }
        .footer-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .footer-links a {
            font-size: 13px;
            color: #6b7795;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--blue-glow);
        }
        .footer-copy {
            font-size: 13px;
            color: #4a5570;
        }
        .footer-copy strong {
            color: #7f8aa0;
            font-weight: 600;
        }

        /* ============ UTILS ============ */
        .text-center {
            text-align: center;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        :focus-visible {
            outline: 2px solid var(--blue-glow);
            outline-offset: 2px;
            border-radius: 4px;
        }
