        :root {
            --primary: #00d294;
            --primary-deep: #009d6b;
            --primary-soft: rgba(0, 210, 148, 0.12);
            --accent: #00c6ff;
            --bg-root: #0b0f19;
            --bg-card: #151c2c;
            --bg-card-hover: #1b2338;
            --bg-lift: #1a2234;
            --text-main: #ffffff;
            --text-sub: #94a3b8;
            --text-muted: #64748b;
            --border-color: rgba(255, 255, 255, 0.07);
            --border-glow: rgba(0, 210, 148, 0.25);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Noto Sans SC", sans-serif;
            background-color: var(--bg-root);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HEADER */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px auto;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 10;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            transition: var(--transition);
        }
        .brand:hover {
            opacity: 0.85;
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), #0091c7);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 210, 148, 0.3);
        }
        .version-badge {
            font-size: 10px;
            background: var(--primary-soft);
            color: var(--primary);
            border: 1px solid rgba(0, 210, 148, 0.35);
            padding: 3px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 34px;
            align-items: center;
        }
        nav a {
            font-size: 14.5px;
            color: var(--text-sub);
            transition: var(--transition);
            position: relative;
            padding: 6px 0;
            font-weight: 500;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        nav a:hover,
        nav a.active {
            color: #fff;
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        /* PAGE HEADER */
        .download-header {
            text-align: center;
            padding: 54px 0 30px;
        }
        .download-header h1 {
            font-size: 44px;
            font-weight: 900;
            margin-bottom: 14px;
            letter-spacing: -1px;
        }
        .download-header h1 span {
            background: linear-gradient(135deg, var(--primary), #00e5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .download-header p {
            color: var(--text-sub);
            font-size: 16px;
            max-width: 620px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* CREATIVE SECTION: 版本选择向导 */
        .version-wizard {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            margin-bottom: 48px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 32px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .version-wizard::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(0, 210, 148, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .wizard-left h2 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .wizard-left p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .wizard-device-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }
        .device-tag {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 13px;
            color: var(--text-sub);
            transition: var(--transition);
            cursor: default;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .device-tag:hover {
            border-color: var(--primary);
            color: #fff;
            background: rgba(0, 210, 148, 0.06);
        }
        .wizard-right .recommend-box {
            background: rgba(0, 210, 148, 0.06);
            border: 1px solid rgba(0, 210, 148, 0.2);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
        }
        .recommend-box .rec-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }
        .recommend-box h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .recommend-box p {
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 14px;
        }
        .btn-recommend {
            display: inline-block;
            background: var(--primary);
            color: #000;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 14px;
            transition: var(--transition);
        }
        .btn-recommend:hover {
            background: #00e5a0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 210, 148, 0.3);
        }

        /* DOWNLOAD CARDS */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin: 0 0 70px;
        }
        .dl-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
        }
        .dl-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .dl-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-glow);
            background: var(--bg-card-hover);
        }
        .dl-card:hover::before {
            opacity: 1;
        }
        .dl-card.recommended {
            border-color: rgba(0, 210, 148, 0.35);
        }
        .dl-card.recommended::after {
            content: "编辑推荐";
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            border: 1px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .dl-icon {
            font-size: 38px;
            margin-bottom: 14px;
        }
        .dl-card h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .dl-card .meta-info {
            font-size: 12.5px;
            color: var(--text-sub);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .dl-card .feature-list {
            list-style: none;
            margin-bottom: 22px;
            flex: 1;
        }
        .dl-card .feature-list li {
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 7px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dl-card .feature-list li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            font-size: 16px;
        }
        .btn-download {
            background: linear-gradient(135deg, var(--primary), var(--primary-deep));
            color: #000;
            font-weight: 700;
            font-size: 14px;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            display: block;
            transition: var(--transition);
        }
        .btn-download:hover {
            box-shadow: 0 8px 20px rgba(0, 210, 148, 0.35);
            transform: translateY(-1px);
        }
        .btn-secondary-dl {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            font-weight: 600;
            font-size: 14px;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            display: block;
            transition: var(--transition);
        }
        .btn-secondary-dl:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        /* CREATIVE SECTION: 安装启动三步曲 */
        .install-flow {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 44px 40px;
            margin-bottom: 70px;
            text-align: center;
        }
        .install-flow h3 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        .install-flow .subtitle {
            color: var(--text-sub);
            font-size: 14px;
            margin-bottom: 40px;
        }
        .flow-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
        }
        .flow-step {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            transition: var(--transition);
            position: relative;
        }
        .flow-step:hover {
            border-color: rgba(0, 210, 148, 0.25);
            background: var(--bg-lift);
            transform: translateY(-4px);
        }
        .flow-step .step-badge {
            width: 40px;
            height: 40px;
            background: var(--primary-soft);
            border: 1px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--primary);
            margin: 0 auto 14px;
            font-size: 18px;
        }
        .flow-step h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .flow-step p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* CREATIVE SECTION: 常见疑问速答 */
        .quick-faq {
            margin-bottom: 80px;
        }
        .quick-faq h3 {
            font-size: 24px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 28px;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.15);
            background: var(--bg-card-hover);
        }
        .faq-item h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* FOOTER */
        footer {
            background: #070a10;
            border-top: 1px solid var(--border-color);
            padding: 56px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 44px;
        }
        .footer-about p {
            color: var(--text-sub);
            font-size: 13.5px;
            margin-top: 14px;
            max-width: 300px;
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 14.5px;
            margin-bottom: 18px;
            color: var(--text-main);
            font-weight: 700;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 11px;
        }
        .footer-col a {
            color: var(--text-sub);
            font-size: 13.5px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 26px;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .download-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .flow-steps {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 14px;
            }
            .version-wizard {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            header {
                flex-direction: column;
                gap: 14px;
            }
            nav ul {
                gap: 16px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .download-grid {
                grid-template-columns: 1fr;
            }
            .flow-steps {
                grid-template-columns: 1fr;
            }
            .version-wizard {
                padding: 24px 20px;
            }
            .download-header h1 {
                font-size: 30px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }