        /* ============ CSS 自定义属性 ============ */
        :root {
            --bg-deep: #06090f;
            --bg-primary: #0b1019;
            --bg-secondary: #111827;
            --bg-card: rgba(22, 27, 40, 0.85);
            --bg-card-hover: rgba(30, 37, 54, 0.92);
            --bg-glass: rgba(255, 255, 255, 0.025);
            --text-primary: #e6edf3;
            --text-secondary: #8b9bb5;
            --text-muted: #5c6d82;
            --accent-sky: #38bdf8;
            --accent-violet: #818cf8;
            --accent-teal: #2dd4bf;
            --accent-amber: #f59e0b;
            --accent-rose: #f472b6;
            --gradient-hero: linear-gradient(160deg, #0b1019 0%, #111c2e 40%, #0f1625 100%);
            --gradient-accent: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #a78bfa 100%);
            --gradient-card-border: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(129, 140, 248, 0.3));
            --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.10);
            --border-glow: rgba(56, 189, 248, 0.25);
            --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 2px 4px rgba(0, 0, 0, 0.5), 0 8px 32px rgba(56, 189, 248, 0.08);
            --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.08);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --font-mono: 'SF Mono', 'Cascadia Code', 'JetBrains Mono', 'Consolas', monospace;
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1280px;
        }

        /* ============ 全局重置 ============ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.65;
            min-height: 100vh;
            background-image:
                radial-gradient(ellipse at 20% 10%, rgba(56, 189, 248, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 90%, rgba(129, 140, 248, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 50%, rgba(45, 212, 191, 0.02) 0%, transparent 70%);
            background-attachment: fixed;
        }

        /* ============ 顶部导航 ============ */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(11, 16, 25, 0.82);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }
        .header-box {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 58px;
            gap: 20px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.08rem;
            letter-spacing: -0.01em;
            white-space: nowrap;
            flex-shrink: 0;
            transition: var(--transition-fast);
        }
        .brand-logo img {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            transition: var(--transition-fast);
        }
        .brand-logo:hover img {
            transform: scale(1.06);
        }
        .brand-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-sky);
            box-shadow: 0 0 10px var(--accent-sky);
            animation: dotPulse 2.2s ease-in-out infinite;
            margin-left: 2px;
        }
        @keyframes dotPulse {
            0%,
            100% {
                box-shadow: 0 0 6px var(--accent-sky);
            }
            50% {
                box-shadow: 0 0 18px var(--accent-sky), 0 0 32px rgba(56, 189, 248, 0.4);
            }
        }
        nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        nav a {
            display: inline-block;
            padding: 7px 14px;
            border-radius: 20px;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        nav a:hover {
            color: var(--text-primary);
            background: var(--bg-glass);
        }
        nav a.current-tab {
            color: #fff;
            background: rgba(56, 189, 248, 0.12);
            font-weight: 600;
        }
        .nav-accent {
            background: var(--gradient-accent);
            color: #fff !important;
            font-weight: 600 !important;
            padding: 7px 16px !important;
            border-radius: 20px;
            box-shadow: 0 2px 12px rgba(56, 189, 248, 0.25);
            transition: var(--transition-smooth);
        }
        .nav-accent:hover {
            box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
            transform: translateY(-1px);
        }

        /* ============ 主体容器 ============ */
        main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ 通用版块样式 ============ */
        .section-inner {
            padding: 40px 0;
        }
        .section-inner h2 {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            text-align: center;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .section-lead {
            text-align: center;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto 30px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .section-divider {
            border: none;
            border-top: 1px solid var(--border-subtle);
            margin: 10px 0;
        }

       /* ============ Hero 下载英雄区（优化） ============ */
.download-hero {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.download-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: var(--gradient-glow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.hero-wrapper h1 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    color: var(--accent-sky);
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.6s ease-out;
}
.hero-desc {
    max-width: 680px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.download-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 28px rgba(56, 189, 248, 0.35);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.download-primary-btn:hover {
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.5);
    transform: translateY(-3px);
}
.checksum-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(22, 27, 40, 0.7);
    border: 1px solid var(--border-subtle);
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 0.84rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.checksum-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.checksum-label {
    color: var(--text-muted);
    font-weight: 500;
}
.checksum-value {
    color: var(--accent-teal);
    font-weight: 600;
}
.checksum-divider {
    color: var(--border-medium);
    font-weight: 300;
    user-select: none;
}

/* 响应式微调 */
@media (max-width: 480px) {
    .download-hero {
        padding: 40px 0 28px;
    }
    .checksum-info {
        gap: 10px;
        padding: 10px 18px;
        font-size: 0.76rem;
    }
    .download-primary-btn {
        padding: 14px 28px;
        font-size: 0.98rem;
    }
}

        /* ============ 架构选择矩阵 ============ */
        .arch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 14px;
            margin-top: 10px;
        }
        .arch-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 14px;
            text-align: center;
            transition: var(--transition-smooth);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .arch-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            background: var(--bg-card-hover);
        }
        .arch-icon {
            font-size: 1.8rem;
            opacity: 0.9;
        }
        .arch-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .arch-badge {
            display: inline-block;
            background: rgba(56, 189, 248, 0.1);
            color: var(--accent-sky);
            font-weight: 600;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 10px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .arch-size {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ============ 更新日志卡片 ============ */
        .changelog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }
        .changelog-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 20px 18px;
            transition: var(--transition-smooth);
        }
        .changelog-card:hover {
            border-color: var(--border-glow);
            box-shadow: var(--shadow-card-hover);
        }
        .changelog-version {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent-sky);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .changelog-date {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: auto;
        }
        .changelog-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .changelog-list li {
            font-size: 0.84rem;
            color: var(--text-secondary);
            margin-bottom: 5px;
            padding-left: 16px;
            position: relative;
            line-height: 1.5;
        }
        .changelog-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-amber);
            font-weight: 700;
        }

        /* ============ 安全校验说明 ============ */
        .verify-info {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            align-items: flex-start;
        }
        .verify-item {
            flex: 1 1 200px;
            text-align: center;
            padding: 0 10px;
        }
        .verify-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .verify-item p {
            font-size: 0.84rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .verify-item code {
            background: rgba(56, 189, 248, 0.08);
            padding: 3px 8px;
            border-radius: 4px;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            color: var(--accent-sky);
            word-break: break-all;
        }

        /* ============ 安装FAQ折叠式摘要 ============ */
        .install-faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
        }
        .faq-summary-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px;
            transition: var(--transition-smooth);
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .faq-summary-card:hover {
            border-color: var(--accent-sky);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .faq-summary-card h4 {
            font-size: 0.92rem;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }
        .faq-summary-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ============ 页脚 ============ */
        footer {
            border-top: 1px solid var(--border-subtle);
            background: var(--bg-secondary);
            margin-top: 40px;
        }
        .footer-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 36px 24px 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-section h5 {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 6px;
        }
        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.84rem;
            transition: var(--transition-fast);
        }
        .footer-section ul li a:hover {
            color: var(--accent-sky);
        }
        .footer-legal {
            border-top: 1px solid var(--border-subtle);
            padding-top: 16px;
            font-size: 0.76rem;
            color: var(--text-muted);
            line-height: 1.6;
            text-align: center;
        }
        .footer-legal p {
            margin-bottom: 4px;
        }

        /* ============ 响应式 ============ */
        @media (max-width: 768px) {
            .header-box {
                flex-wrap: wrap;
                height: auto;
                padding: 10px 16px;
                gap: 8px;
                justify-content: center;
            }
            nav {
                justify-content: center;
                gap: 2px;
            }
            nav a {
                padding: 6px 10px;
                font-size: 0.78rem;
            }
            .arch-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            }
            .verify-info {
                flex-direction: column;
                align-items: center;
            }
            .section-inner h2 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .arch-grid {
                grid-template-columns: 1fr 1fr;
            }
            .changelog-grid {
                grid-template-columns: 1fr;
            }
            .checksum-info {
                flex-direction: column;
                gap: 4px;
            }
        }