        :root {
            --bg: #ffffff;
            --surface: #f8fafc;
            --surface-alt: #f1f5f9;
            --text: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --accent: #2563eb;
            --accent-light: #3b82f6;
            --accent-glow: rgba(37, 99, 235, 0.08);
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.1);
            --radius-sm: 12px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --gradient-hero: linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #3b82f6 100%);
            --gradient-cta: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            --gradient-card: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
            --color-ios: #007AFF;
            --color-android: #3DDC84;
            --color-pc: #6C5CE7;
            --color-warning: #f59e0b;
            --color-danger: #ef4444;
            --color-success: #10b981;
            --color-info: #3b82f6;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ===== HEADER（与首页一致） ===== */
        header {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 14px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
            padding: 4px 0;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-links a.active::after {
            width: 100%;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            padding: 64px 0 48px;
            background: radial-gradient(ellipse at 70% 5%, rgba(37, 99, 235, 0.04) 0%, #ffffff 55%),
                radial-gradient(ellipse at 30% 90%, rgba(6, 182, 212, 0.03) 0%, #ffffff 55%);
            text-align: center;
        }
        .page-hero .badge {
            background: #eef2ff;
            color: #1e40af;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 18px;
            border-radius: 40px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.01em;
            border: 1px solid rgba(37, 99, 235, 0.12);
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
            color: #0a0c10;
            line-height: 1.2;
        }
        .page-hero .hero-gradient-text {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .page-hero .subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto 12px;
            line-height: 1.5;
        }
        .page-hero .quick-stats {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 24px;
        }
        .page-hero .quick-stat {
            text-align: center;
        }
        .page-hero .quick-stat strong {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
        }
        .page-hero .quick-stat span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ===== SECTION TITLES ===== */
        .section-title-v2 {
            text-align: center;
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 44px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* ===== DOWNLOAD CARDS ===== */
        .download-section {
            padding: 64px 0;
            background: var(--surface);
        }
        .download-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .download-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }
        .download-card:hover {
            box-shadow: var(--shadow-xl);
            border-color: rgba(37, 99, 235, 0.2);
            transform: translateY(-6px);
        }
        .download-card.featured {
            border: 2px solid rgba(37, 99, 235, 0.25);
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .download-card.featured::before {
            content: '⭐ 官方推荐';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-hero);
            color: #fff;
            padding: 5px 18px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: 0.02em;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
        }
        .download-card .card-platform-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 4px;
        }
        .download-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.01em;
        }
        .download-card .version-badge {
            display: inline-block;
            background: #f1f5f9;
            color: var(--text-secondary);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin: 0 auto;
        }
        .download-card .card-desc {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.5;
            flex-grow: 1;
        }
        .download-card .card-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .download-card .card-meta span {
            background: #f8fafc;
            padding: 4px 10px;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
        }
        .btn-download {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            cursor: pointer;
            border: none;
            width: 100%;
            box-sizing: border-box;
        }
        .btn-ios {
            background: var(--color-ios);
            color: #fff;
            box-shadow: 0 6px 20px rgba(0, 122, 255, 0.2);
        }
        .btn-ios:hover {
            background: #0056cc;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 122, 255, 0.3);
        }
        .btn-android {
            background: #1a1a2e;
            color: #fff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
            border: 1px solid #333;
        }
        .btn-android:hover {
            background: #0f0f1a;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        }
        .btn-pc {
            background: #ffffff;
            color: #1e293b;
            border: 1.5px solid #cbd5e1;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
        }
        .btn-pc:hover {
            border-color: var(--color-pc);
            color: var(--color-pc);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(108, 92, 231, 0.15);
            background: #fdfdff;
        }
        .btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.82rem;
            transition: var(--transition);
            border: 1.2px solid #e2e8f0;
            color: var(--text-secondary);
            background: transparent;
        }
        .btn-outline-sm:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: #f8fafc;
        }

        /* ===== SAFETY NOTICE ===== */
        .safety-section {
            padding: 56px 0;
            background: #ffffff;
        }
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }
        .safety-card {
            background: #fffbf0;
            border: 1px solid #fde68a;
            border-radius: var(--radius);
            padding: 22px 20px;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            transition: var(--transition);
        }
        .safety-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #fbbf24;
        }
        .safety-card .safety-icon {
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        .safety-card h4 {
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: #92400e;
        }
        .safety-card p {
            font-size: 0.82rem;
            color: #78716c;
            line-height: 1.5;
        }
        .safety-card.warning {
            background: #fef2f2;
            border-color: #fecaca;
        }
        .safety-card.warning h4 {
            color: #991b1b;
        }
        .safety-card.warning p {
            color: #7f1d1d;
        }

        /* ===== INSTALL STEPS ===== */
        .install-section {
            padding: 64px 0;
            background: var(--surface);
        }
        .steps-timeline {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .step-item {
            flex: 1;
            min-width: 220px;
            max-width: 280px;
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }
        .step-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: rgba(37, 99, 235, 0.2);
        }
        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-hero);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            margin: 0 auto 14px;
            box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
        }
        .step-item h4 {
            font-size: 1rem;
            margin-bottom: 6px;
            color: var(--text);
        }
        .step-item p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .step-arrow {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: var(--accent);
            flex-shrink: 0;
            align-self: center;
        }

        /* ===== FAQ MINI ===== */
        .faq-mini-section {
            padding: 64px 0;
            background: #ffffff;
        }
        .faq-mini-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-mini-item {
            background: #f8fafc;
            border-radius: var(--radius);
            padding: 18px 20px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
            cursor: default;
        }
        .faq-mini-item:hover {
            background: #ffffff;
            border-color: rgba(37, 99, 235, 0.15);
            box-shadow: var(--shadow-md);
        }
        .faq-mini-item h4 {
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: var(--text);
        }
        .faq-mini-item p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== QUICK LINKS ===== */
        .quick-links-section {
            padding: 56px 0;
            background: var(--surface);
        }
        .quick-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .quick-link-card {
            background: #ffffff;
            border-radius: var(--radius);
            padding: 18px 22px;
            border: 1px solid var(--border-light);
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
            flex: 1;
            min-width: 180px;
            max-width: 240px;
            justify-content: center;
        }
        .quick-link-card:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .quick-link-card .ql-icon {
            font-size: 1.3rem;
        }

        /* ===== CTA ===== */
        .cta-v2 {
            background: var(--gradient-cta);
            color: #ffffff;
            padding: 64px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-v2::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 140%;
            height: 180%;
            background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-v2 h2 {
            font-size: clamp(1.4rem, 2.5vw, 1.8rem);
            position: relative;
            z-index: 1;
        }
        .cta-v2 p {
            margin: 12px auto 0;
            max-width: 500px;
            opacity: 0.85;
            position: relative;
            z-index: 1;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .btn-cta-light {
            background: #ffffff;
            color: #0f172a;
            padding: 14px 42px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 24px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }
        .btn-cta-light:hover {
            background: #e2e8f0;
            transform: scale(1.03);
            box-shadow: 0 10px 28px rgba(255, 255, 255, 0.2);
        }
        .cta-extra {
            margin-top: 20px;
            font-size: 0.78rem;
            opacity: 0.7;
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER（与首页一致） ===== */
        footer {
            background: #020617;
            color: #94a3b8;
            padding: 52px 0 28px;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-grid>div {
            min-width: 150px;
        }
        .footer-grid h4 {
            color: #ffffff;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 6px;
        }
        .footer-grid a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-grid a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            text-align: center;
            font-size: 0.78rem;
            color: #64748b;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .download-cards {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .steps-timeline {
                flex-direction: column;
                align-items: center;
            }
            .step-arrow {
                transform: rotate(90deg);
            }
            .step-item {
                max-width: 100%;
            }
            .nav-links {
                gap: 14px;
            }
            .nav-links a {
                font-size: 0.82rem;
            }
            .container {
                padding: 0 16px;
            }
        }
        @media (max-width: 600px) {
            nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .nav-links {
                width: 100%;
                justify-content: flex-start;
                gap: 10px;
                flex-wrap: wrap;
            }
            .page-hero .quick-stats {
                gap: 16px;
            }
            .footer-grid {
                gap: 20px;
            }
        }