/* roulang page: index */
:root {
            --bg-deep: #0A0F1A;
            --bg-card: rgba(20, 28, 40, 0.7);
            --bg-nav-scrolled: rgba(10, 15, 26, 0.94);
            --green-electric: #00E676;
            --green-glow: rgba(0, 230, 118, 0.25);
            --orange-heat: #FF3D00;
            --gold-track: #FFD700;
            --gold-glow: rgba(255, 215, 0, 0.35);
            --text-primary: #EAF0F6;
            --text-secondary: #8899AA;
            --text-disabled: #4A5568;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-green: rgba(0, 230, 118, 0.35);
            --radius-card: 12px;
            --radius-inner: 8px;
            --radius-btn: 50px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 230, 118, 0.05);
            --shadow-btn: 0 0 24px rgba(0, 230, 118, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-btn-gold: 0 0 28px rgba(255, 215, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.35);
            --font-zh: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-num: 'Inter', 'SF Pro Display', 'Menlo', 'Consolas', monospace;
            --max-width: 1280px;
            --section-gap: 100px;
            --section-gap-mobile: 56px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-zh);
            font-size: 16px;
            line-height: 1.6;
            font-weight: 400;
            color: var(--text-primary);
            background-color: var(--bg-deep);
            background-image:
                radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.03) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(26, 46, 31, 0.35) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 60%, rgba(255, 61, 0, 0.03) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        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;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .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;
        }

        /* ============ NAVIGATION ============ */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all var(--transition-smooth);
            padding: 0 16px;
            height: 68px;
            display: flex;
            align-items: center;
            background: rgba(10, 15, 26, 0.55);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .site-header.scrolled {
            background: var(--bg-nav-scrolled);
            border-bottom-color: rgba(0, 230, 118, 0.15);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }

        .header-inner {
            max-width: var(--max-width);
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-icon .football-outline {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2.5px solid var(--green-electric);
            position: absolute;
            opacity: 0.9;
        }

        .logo-icon .lightning {
            position: absolute;
            width: 10px;
            height: 18px;
            background: var(--gold-track);
            clip-path: polygon(55% 0%, 20% 55%, 48% 55%, 30% 100%, 85% 42%, 52% 42%, 75% 0%);
            filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
            animation: logo-pulse 2.5s ease-in-out infinite;
        }

        @keyframes logo-pulse {
            0%,
            100% {
                filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
            }
            50% {
                filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.95));
            }
        }

        .logo-text {
            font-family: var(--font-zh);
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0.5px;
            white-space: nowrap;
            color: var(--text-primary);
        }

        .logo-text .mk-highlight {
            color: var(--green-electric);
            font-weight: 900;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-block;
            padding: 8px 15px;
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 24px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-links a.active {
            color: var(--green-electric);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2.5px;
            background: var(--green-electric);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--green-glow);
        }

        .nav-cta-btn {
            display: inline-flex !important;
            align-items: center;
            gap: 6px;
            padding: 9px 20px !important;
            background: var(--gold-track) !important;
            color: #1a1a1a !important;
            font-weight: 700 !important;
            border-radius: var(--radius-btn) !important;
            box-shadow: var(--shadow-btn-gold);
            transition: all var(--transition-bounce) !important;
            letter-spacing: 0.3px;
            font-size: 14px !important;
            animation: btn-breathe 3s ease-in-out infinite;
        }

        @keyframes btn-breathe {
            0%,
            100% {
                box-shadow: 0 0 28px rgba(255, 215, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.35);
            }
            50% {
                box-shadow: 0 0 40px rgba(255, 215, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.4);
            }
        }

        .nav-cta-btn:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 0 44px rgba(255, 215, 0, 0.8), 0 8px 22px rgba(0, 0, 0, 0.45) !important;
            background: #ffe44d !important;
            color: #111 !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: none;
            border: none;
            width: 40px;
            height: 34px;
            justify-content: center;
            align-items: center;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 15, 26, 0.96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 36px;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-smooth);
        }

        .mobile-nav-panel.open {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-panel a {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.5px;
            transition: color var(--transition-fast);
            padding: 12px 24px;
            border-radius: 30px;
        }

        .mobile-nav-panel a:hover,
        .mobile-nav-panel a:focus-visible {
            color: var(--green-electric);
            background: rgba(255, 255, 255, 0.03);
        }

        .mobile-nav-panel .mobile-cta {
            background: var(--gold-track);
            color: #1a1a1a !important;
            font-weight: 700;
            padding: 14px 32px !important;
            border-radius: var(--radius-btn);
            box-shadow: var(--shadow-btn-gold);
            font-size: 18px !important;
        }

        /* ============ HERO ============ */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 68px;
            overflow: hidden;
            isolation: isolate;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            filter: brightness(0.55) saturate(1.1);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg,
                    rgba(10, 15, 26, 0.55) 0%,
                    rgba(10, 15, 26, 0.35) 40%,
                    rgba(10, 15, 26, 0.7) 75%,
                    rgba(10, 15, 26, 0.92) 100%);
            pointer-events: none;
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--green-electric);
            border-radius: 50%;
            animation: float-up 8s linear infinite;
            opacity: 0;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.9;
            }
            70% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-10vh) scale(1.8);
                opacity: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 40px 24px 60px;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 230, 118, 0.12);
            border: 1px solid var(--border-green);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            color: var(--green-electric);
            letter-spacing: 1px;
            width: fit-content;
            animation: fadeInUp 0.7s ease-out;
        }

        .hero-badge .live-dot {
            width: 9px;
            height: 9px;
            background: var(--orange-heat);
            border-radius: 50%;
            animation: live-blink 1.2s ease-in-out infinite;
        }

        @keyframes live-blink {
            0%,
            100% {
                box-shadow: 0 0 6px var(--orange-heat);
            }
            50% {
                box-shadow: 0 0 18px var(--orange-heat), 0 0 30px rgba(255, 61, 0, 0.6);
            }
        }

        .hero-h1 {
            font-family: var(--font-zh);
            font-size: 46px;
            line-height: 1.18;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA000 35%, #FF6D00 70%, #FFD700 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: gradient-shift 4s ease-in-out infinite, fadeInUp 0.7s ease-out 0.1s both;
            margin: 0;
        }

        @keyframes gradient-shift {
            0%,
            100% {
                background-position: 0% center;
            }
            50% {
                background-position: 200% center;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 460px;
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }

        .hero-countdown-block {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.7s ease-out 0.3s both;
        }

        .countdown-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .countdown-digits {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .countdown-digit {
            font-family: var(--font-num);
            font-size: 38px;
            font-weight: 800;
            color: var(--green-electric);
            background: rgba(0, 230, 118, 0.08);
            border: 1px solid rgba(0, 230, 118, 0.25);
            border-radius: var(--radius-inner);
            padding: 6px 12px;
            min-width: 52px;
            text-align: center;
            letter-spacing: 1px;
            text-shadow: 0 0 18px var(--green-glow);
            transition: all var(--transition-smooth);
            animation: digit-glow 2s ease-in-out infinite;
        }

        @keyframes digit-glow {
            0%,
            100% {
                text-shadow: 0 0 18px var(--green-glow);
            }
            50% {
                text-shadow: 0 0 32px rgba(0, 230, 118, 0.7);
            }
        }

        .countdown-separator {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            animation: blink-sep 1s step-end infinite;
        }

        @keyframes blink-sep {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .hero-online {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            animation: fadeInUp 0.7s ease-out 0.35s both;
        }

        .hero-online .online-count {
            font-family: var(--font-num);
            font-weight: 700;
            color: var(--text-primary);
            font-size: 16px;
        }

        .hero-online .online-dot {
            width: 8px;
            height: 8px;
            background: var(--green-electric);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--green-glow);
        }

        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: fadeInUp 0.7s ease-out 0.4s both;
        }

        .btn-primary-gold {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            background: var(--gold-track);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 16px;
            border-radius: var(--radius-btn);
            box-shadow: var(--shadow-btn-gold);
            transition: all var(--transition-bounce);
            letter-spacing: 0.3px;
            border: none;
            cursor: pointer;
        }

        .btn-primary-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 44px rgba(255, 215, 0, 0.8), 0 8px 22px rgba(0, 0, 0, 0.45);
            background: #ffe44d;
        }

        .btn-outline-glass {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-btn);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all var(--transition-bounce);
            letter-spacing: 0.3px;
            cursor: pointer;
        }

        .btn-outline-glass:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
        }

        .hero-right {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.25s both;
        }

        .hero-phone-mock {
            width: 240px;
            height: 480px;
            background: rgba(20, 28, 40, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 32px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 230, 118, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-phone-mock .mock-screen {
            width: 88%;
            height: 92%;
            border-radius: 20px;
            background: linear-gradient(180deg, #0d1520 0%, #0f1a18 40%, #0d1520 100%);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px;
        }

        .mock-match-card {
            width: 100%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 14px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mock-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 18px;
            color: var(--text-primary);
        }

        .mock-vs {
            font-size: 12px;
            color: var(--orange-heat);
            font-weight: 800;
        }

        .mock-badge-live {
            display: inline-block;
            background: var(--orange-heat);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 10px;
            letter-spacing: 1px;
            margin-top: 6px;
            animation: live-blink 1.2s ease-in-out infinite;
        }

        .mock-stream-bars {
            display: flex;
            gap: 3px;
            align-items: flex-end;
            height: 20px;
            margin-top: 8px;
        }

        .mock-stream-bars span {
            width: 4px;
            background: var(--green-electric);
            border-radius: 1px;
            animation: bar-dance 0.8s ease-in-out infinite alternate;
        }

        .mock-stream-bars span:nth-child(1) {
            height: 10px;
            animation-delay: 0s;
        }
        .mock-stream-bars span:nth-child(2) {
            height: 18px;
            animation-delay: 0.15s;
        }
        .mock-stream-bars span:nth-child(3) {
            height: 8px;
            animation-delay: 0.3s;
        }
        .mock-stream-bars span:nth-child(4) {
            height: 15px;
            animation-delay: 0.45s;
        }
        .mock-stream-bars span:nth-child(5) {
            height: 11px;
            animation-delay: 0.6s;
        }

        @keyframes bar-dance {
            from {
                transform: scaleY(0.6);
                opacity: 0.6;
            }
            to {
                transform: scaleY(1.3);
                opacity: 1;
            }
        }

        /* ============ STATS SECTION ============ */
        .stats-section {
            padding: var(--section-gap) 0;
            position: relative;
            z-index: 2;
            margin-top: -40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 28px 22px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-bounce);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--green-electric);
            border-radius: 0 0 4px 4px;
            opacity: 0.5;
            transition: all var(--transition-smooth);
        }

        .stat-card:hover {
            border-color: var(--border-green);
            box-shadow: var(--shadow-card), 0 0 32px rgba(0, 230, 118, 0.08);
            transform: translateY(-4px);
        }

        .stat-card:hover::before {
            width: 120px;
            opacity: 1;
            box-shadow: 0 0 16px var(--green-glow);
        }

        .stat-icon {
            font-size: 28px;
            color: var(--green-electric);
            margin-bottom: 10px;
            display: block;
        }

        .stat-value {
            font-family: var(--font-num);
            font-size: 40px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            line-height: 1;
            margin-bottom: 6px;
            transition: all var(--transition-smooth);
        }

        .stat-value.highlight-orange {
            color: var(--orange-heat);
            text-shadow: 0 0 16px rgba(255, 61, 0, 0.4);
        }

        .stat-unit {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-left: 2px;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .stats-refresh-note {
            text-align: center;
            margin-top: 20px;
            font-size: 12px;
            color: var(--text-disabled);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .stats-refresh-note .refresh-dot {
            width: 6px;
            height: 6px;
            background: var(--green-electric);
            border-radius: 50%;
            animation: live-blink 2s ease-in-out infinite;
        }

        /* ============ SERVICES SECTION ============ */
        .services-section {
            padding: var(--section-gap) 0;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 52px;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--green-electric);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-h2 {
            font-family: var(--font-zh);
            font-size: 32px;
            line-height: 1.3;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 10px;
            letter-spacing: -0.3px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-bounce);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .service-card:hover {
            border-color: var(--green-electric);
            box-shadow: var(--shadow-card), 0 0 40px rgba(0, 230, 118, 0.08);
            transform: translateY(-4px);
            background: rgba(22, 32, 46, 0.8);
        }

        .service-card .service-icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(0, 230, 118, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--green-electric);
            transition: all var(--transition-smooth);
            flex-shrink: 0;
        }

        .service-card:hover .service-icon-wrap {
            background: rgba(0, 230, 118, 0.16);
            box-shadow: 0 0 24px var(--green-glow);
            transform: scale(1.08);
        }

        .service-card h3 {
            font-family: var(--font-zh);
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.3;
            margin: 0;
        }

        .service-card p {
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.55;
            margin: 0;
            flex-grow: 1;
        }

        .service-card .service-link {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--green-electric);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition-fast);
            cursor: pointer;
            width: fit-content;
        }

        .service-card .service-link:hover {
            gap: 10px;
            color: #5cffa0;
        }

        .service-card .card-image {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: var(--radius-inner);
            margin-bottom: 4px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* ============ COMPARE SECTION ============ */
        .compare-section {
            padding: var(--section-gap) 0;
            position: relative;
            z-index: 2;
        }

        .compare-wrapper {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            align-items: stretch;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .compare-panel {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 32px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .compare-panel.bad {
            border-color: rgba(255, 255, 255, 0.06);
            background: rgba(15, 20, 30, 0.75);
        }

        .compare-panel.good {
            border-color: var(--border-green);
            background: rgba(15, 28, 22, 0.8);
            box-shadow: var(--shadow-card), 0 0 36px rgba(0, 230, 118, 0.06);
        }

        .compare-panel h3 {
            font-family: var(--font-zh);
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
        }

        .compare-panel.bad h3 {
            color: var(--text-disabled);
        }
        .compare-panel.good h3 {
            color: var(--green-electric);
        }

        .compare-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .compare-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14.5px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .compare-item:last-child {
            border-bottom: none;
        }

        .compare-item .icon-check {
            color: var(--green-electric);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .compare-item .icon-cross {
            color: var(--orange-heat);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .compare-vs-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 16px;
            z-index: 3;
            flex-shrink: 0;
        }

        .vs-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-deep);
            border: 2px solid var(--gold-track);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-num);
            font-weight: 900;
            font-size: 18px;
            color: var(--gold-track);
            box-shadow: 0 0 32px var(--gold-glow), 0 0 60px rgba(255, 215, 0, 0.2);
            animation: vs-pulse 2s ease-in-out infinite;
        }

        @keyframes vs-pulse {
            0%,
            100% {
                box-shadow: 0 0 32px var(--gold-glow), 0 0 60px rgba(255, 215, 0, 0.2);
            }
            50% {
                box-shadow: 0 0 48px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.35);
            }
        }

        /* ============ FAQ SECTION ============ */
        .faq-section {
            padding: var(--section-gap) 0;
            position: relative;
            z-index: 2;
        }

        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all var(--transition-smooth);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 18px 8px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-zh);
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
            gap: 12px;
            transition: color var(--transition-fast);
            line-height: 1.4;
            letter-spacing: 0.2px;
        }

        .faq-question:hover {
            color: var(--green-electric);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-secondary);
            transition: all var(--transition-smooth);
            line-height: 1;
        }

        .faq-item.open .faq-icon {
            border-color: var(--green-electric);
            color: var(--green-electric);
            transform: rotate(45deg);
            box-shadow: 0 0 14px var(--green-glow);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 8px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 8px 18px;
        }

        .faq-answer-inner {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============ DOWNLOAD SECTION ============ */
        .download-section {
            padding: var(--section-gap) 0;
            position: relative;
            z-index: 2;
        }

        .download-block {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            isolation: isolate;
            padding: 60px 32px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.06) 0%, rgba(10, 15, 26, 0.9) 70%);
            border: 1px solid rgba(0, 230, 118, 0.2);
            box-shadow: 0 0 80px rgba(0, 230, 118, 0.05), 0 16px 48px rgba(0, 0, 0, 0.5);
        }

        .download-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/coverpic/cover-1.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
            filter: blur(1px) brightness(0.6);
        }

        .download-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .download-inner h2 {
            font-family: var(--font-zh);
            font-size: 30px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
        }

        .download-inner .download-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 420px;
        }

        .download-form {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 480px;
            width: 100%;
        }

        .download-form input {
            flex: 1;
            min-width: 220px;
            padding: 14px 20px;
            border-radius: var(--radius-btn);
            background: rgba(255, 255, 255, 0.05);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            font-size: 15px;
            backdrop-filter: blur(10px);
            transition: all var(--transition-smooth);
        }

        .download-form input:focus {
            border-color: var(--green-electric);
            box-shadow: 0 0 20px var(--green-glow);
            background: rgba(255, 255, 255, 0.08);
            outline: none;
        }

        .download-form input::placeholder {
            color: var(--text-disabled);
        }

        .download-form .btn-submit {
            padding: 14px 28px;
            background: var(--gold-track);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 16px;
            border-radius: var(--radius-btn);
            box-shadow: var(--shadow-btn-gold);
            transition: all var(--transition-bounce);
            white-space: nowrap;
            cursor: pointer;
            border: none;
        }

        .download-form .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 44px rgba(255, 215, 0, 0.8), 0 8px 22px rgba(0, 0, 0, 0.45);
            background: #ffe44d;
        }

        .download-privacy-note {
            font-size: 12px;
            color: var(--text-disabled);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .download-privacy-note i {
            color: var(--green-electric);
            font-size: 11px;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: rgba(8, 12, 20, 0.9);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 40px 0 28px;
            position: relative;
            z-index: 2;
        }

        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-brand .logo-text {
            font-size: 18px;
        }

        .footer-slogan {
            font-size: 12px;
            color: var(--text-disabled);
            letter-spacing: 0.5px;
        }

        .footer-info {
            text-align: right;
            font-size: 12px;
            color: var(--text-disabled);
            line-height: 1.8;
        }

        .footer-info a {
            color: var(--text-secondary);
            transition: color var(--transition-fast);
        }

        .footer-info a:hover {
            color: var(--green-electric);
        }

        .footer-social {
            display: flex;
            gap: 14px;
            font-size: 18px;
        }

        .footer-social a {
            color: var(--text-disabled);
            transition: all var(--transition-fast);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social a:hover {
            color: var(--green-electric);
            border-color: var(--border-green);
            box-shadow: 0 0 14px var(--green-glow);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            .hero-left {
                align-items: center;
            }
            .hero-subtitle {
                max-width: 100%;
            }
            .hero-phone-mock {
                width: 180px;
                height: 360px;
                border-radius: 26px;
            }
            .hero-phone-mock .mock-screen {
                border-radius: 16px;
            }
            .hero-h1 {
                font-size: 36px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .compare-wrapper {
                grid-template-columns: 1fr;
                gap: 16px;
                max-width: 500px;
            }
            .compare-vs-badge {
                order: 1;
                padding: 8px 0;
            }
            .compare-panel.bad {
                order: 0;
            }
            .compare-panel.good {
                order: 2;
            }
            .vs-circle {
                width: 44px;
                height: 44px;
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-gap: 56px;
            }
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav-panel {
                display: flex;
            }
            .site-header .nav-cta-btn {
                display: none !important;
            }
            .mobile-nav-panel .mobile-cta {
                display: inline-flex !important;
                align-items: center;
                gap: 8px;
            }
            .hero-content {
                padding: 24px 16px 40px;
            }
            .hero-h1 {
                font-size: 30px;
            }
            .hero-subtitle {
                font-size: 15px;
            }
            .countdown-digit {
                font-size: 28px;
                min-width: 40px;
                padding: 4px 10px;
            }
            .countdown-separator {
                font-size: 24px;
            }
            .hero-phone-mock {
                width: 150px;
                height: 300px;
                border-radius: 22px;
            }
            .hero-phone-mock .mock-screen {
                border-radius: 13px;
                gap: 8px;
                padding: 14px;
            }
            .mock-teams {
                font-size: 14px;
                gap: 8px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card {
                padding: 20px 14px;
            }
            .stat-value {
                font-size: 30px;
            }
            .services-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .section-h2 {
                font-size: 26px;
            }
            .download-block {
                padding: 40px 20px;
            }
            .download-inner h2 {
                font-size: 24px;
            }
            .download-form {
                flex-direction: column;
                width: 100%;
            }
            .download-form input {
                width: 100%;
                min-width: 0;
            }
            .download-form .btn-submit {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            .footer-info {
                text-align: center;
            }
            .btn-primary-gold,
            .btn-outline-glass {
                padding: 13px 22px;
                font-size: 14px;
            }
            .faq-question {
                font-size: 15px;
                padding: 15px 4px;
            }
            .compare-panel {
                padding: 22px 16px;
            }
            .compare-panel h3 {
                font-size: 17px;
            }
            .compare-item {
                font-size: 13px;
                gap: 8px;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
            }
            .logo-icon .football-outline {
                width: 26px;
                height: 26px;
                border-width: 2px;
            }
            .logo-icon .lightning {
                width: 8px;
                height: 14px;
            }
        }

        @media (max-width: 480px) {
            .hero-h1 {
                font-size: 26px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-badge {
                font-size: 11px;
                padding: 6px 14px;
            }
            .countdown-digit {
                font-size: 24px;
                min-width: 34px;
                padding: 3px 7px;
            }
            .countdown-separator {
                font-size: 20px;
            }
            .hero-phone-mock {
                width: 120px;
                height: 240px;
                border-radius: 18px;
            }
            .hero-phone-mock .mock-screen {
                border-radius: 10px;
                padding: 10px;
                gap: 5px;
            }
            .mock-teams {
                font-size: 11px;
                gap: 4px;
            }
            .mock-match-card {
                padding: 8px;
                border-radius: 6px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 16px 10px;
                border-radius: 10px;
            }
            .stat-value {
                font-size: 26px;
            }
            .stat-icon {
                font-size: 22px;
            }
            .section-h2 {
                font-size: 22px;
            }
            .section-subtitle {
                font-size: 14px;
            }
            .btn-primary-gold,
            .btn-outline-glass {
                padding: 12px 18px;
                font-size: 13px;
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }
            .download-block {
                padding: 30px 14px;
                border-radius: 14px;
            }
            .download-inner h2 {
                font-size: 20px;
            }
            .vs-circle {
                width: 38px;
                height: 38px;
                font-size: 13px;
            }
            .compare-panel {
                padding: 18px 12px;
                border-radius: 10px;
            }
            .service-card {
                padding: 20px 16px;
            }
            .service-card .card-image {
                height: 100px;
            }
            .container {
                padding: 0 14px;
            }
            .site-header {
                height: 56px;
                padding: 0 10px;
            }
            .header-inner {
                gap: 10px;
            }
        }
