        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

        :root {
            --bg-deep: #090d14;
            --bg-panel: #111827;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-glow: rgba(139, 92, 246, 0.35);
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --accent-indigo: #818cf8;
            --accent-purple: #a78bfa;
            --accent-pink: #f472b6;
            --accent-emerald: #34d399;
            --accent-amber: #fbbf24;
            --accent-rose: #fb7185;
            --accent-sky: #38bdf8;
            --glow-indigo: rgba(99, 102, 241, 0.35);
            --glow-purple: rgba(168, 85, 247, 0.3);
            --glow-pink: rgba(244, 114, 182, 0.25);
            --radius-xl: 1.75rem;
            --radius-2xl: 2rem;
            --radius-3xl: 2.5rem;
            --transition-smooth: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ============ 全局光晕背景 ============ */
        .hero-glow {
            position: fixed;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.08) 35%, rgba(9, 13, 20, 0) 70%);
            top: -280px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            pointer-events: none;
        }
        .hero-glow-secondary {
            position: fixed;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, rgba(56, 189, 248, 0.05) 40%, rgba(9, 13, 20, 0) 70%);
            bottom: -200px;
            right: -150px;
            z-index: 0;
            pointer-events: none;
        }

        /* ============ 毛玻璃面板 ============ */
        .glass-panel {
            background: rgba(17, 24, 39, 0.7);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid var(--border-subtle);
            box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
            transition: var(--transition-smooth);
        }
        .glass-panel:hover {
            transform: translateY(-6px) scale(1.008);
            border-color: var(--border-glow);
            box-shadow: 0 32px 64px rgba(99, 102, 241, 0.22);
        }
        .glass-panel-static {
            background: rgba(17, 24, 39, 0.7);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid var(--border-subtle);
            box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
        }

        /* ============ 渐变文字 ============ */
        .gradient-text {
            background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 45%, #f472b6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gradient-text-warm {
            background: linear-gradient(135deg, #fbbf24 0%, #f472b6 50%, #fb7185 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gradient-text-cool {
            background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #a78bfa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ============ 渐变按钮 ============ */
        .gradient-button {
            background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            box-shadow: 0 0 28px rgba(99, 102, 241, 0.45);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            border: none;
            font-weight: 700;
            letter-spacing: 0.01em;
        }
        .gradient-button:hover {
            box-shadow: 0 0 42px rgba(168, 85, 247, 0.65);
            transform: translateY(-3px);
            background: linear-gradient(135deg, #7574f9 0%, #b366f8 100%);
        }
        .gradient-button-outline {
            background: transparent;
            border: 2px solid rgba(139, 92, 246, 0.5);
            box-shadow: 0 0 16px rgba(99, 102, 241, 0.15);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.01em;
            color: #e2e8f0;
        }
        .gradient-button-outline:hover {
            border-color: rgba(168, 85, 247, 0.8);
            box-shadow: 0 0 32px rgba(139, 92, 246, 0.35);
            background: rgba(99, 102, 241, 0.08);
            transform: translateY(-3px);
        }

        /* ============ 特性卡片光效 ============ */
        .feature-card-glow {
            position: relative;
            overflow: hidden;
        }
        .feature-card-glow::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
            transform: rotate(25deg);
            pointer-events: none;
            transition: var(--transition-smooth);
        }
        .feature-card-glow:hover::before {
            background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 55%);
        }

        /* ============ 流媒体平台卡片 ============ */
        .platform-card {
            position: relative;
            border-radius: var(--radius-xl);
            padding: 1.5rem 1.25rem;
            background: rgba(17, 24, 39, 0.8);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: var(--transition-smooth);
            cursor: default;
            overflow: hidden;
        }
        .platform-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        .platform-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, var(--platform-accent, #6366f1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .platform-card:hover::after {
            opacity: 1;
        }
        .platform-icon-wrapper {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            font-weight: 900;
            font-size: 1.1rem;
            letter-spacing: -0.02em;
            transition: var(--transition-smooth);
        }
        .platform-card:hover .platform-icon-wrapper {
            transform: scale(1.08);
        }

        /* ============ 场景标签 ============ */
        .scene-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 1rem;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: var(--transition-smooth);
            cursor: default;
        }

        /* ============ 脉冲动画 ============ */
        @keyframes pulse-soft {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .animate-pulse-soft {
            animation: pulse-soft 2.6s ease-in-out infinite;
        }

        /* ============ 分割线装饰 ============ */
        .divider-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.5);
            flex-shrink: 0;
        }

        /* ============ 响应式微调 ============ */
        @media (max-width: 768px) {
            .hero-glow {
                width: 500px;
                height: 500px;
                top: -160px;
            }
            .hero-glow-secondary {
                width: 350px;
                height: 350px;
                bottom: -120px;
                right: -80px;
            }
            .platform-card {
                padding: 1rem 0.75rem;
            }
            .platform-icon-wrapper {
                width: 40px;
                height: 40px;
                border-radius: 12px;
                font-size: 0.9rem;
            }
        }