        :root {
            --primary: #0d9488;
            --primary-deep: #0f766e;
            --primary-light: #ccfbf1;
            --accent: #0369a1;
            --accent-light: #e0f2fe;
            --gold: #f59e0b;
            --gold-light: #fef3c7;
            --bg: #f6f8f9;
            --surface: #ffffff;
            --text: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --radius-xl: 20px;
            --radius-lg: 14px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --shadow-sm: 0 1px 3px rgba(15,23,42,0.04);
            --shadow-md: 0 6px 24px rgba(15,23,42,0.06);
            --shadow-lg: 0 16px 48px rgba(15,23,42,0.08);
            --shadow-gold: 0 4px 20px rgba(245,158,11,0.25);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: "SF Mono","Fira Code","Cascadia Code",monospace;
        }

        *,
        *::before,
        *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.72;
            padding-top: 68px;
            background-image:
                radial-gradient(ellipse at 75% 15%, rgba(13,148,136,0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 80%, rgba(3,105,161,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.02) 0%, transparent 60%);
            background-attachment: fixed;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a { color: var(--primary); text-decoration: none; transition: color var(--transition), background var(--transition); }
        a:hover { color: var(--primary-deep); }

        /* 导航栏 — 与首页完全一致 */
        .nav-bar-wrap {
            position: fixed; top: 0; left: 0; right: 0; height: 68px;
            background: rgba(255,255,255,0.82); backdrop-filter: blur(16px) saturate(130%);
            -webkit-backdrop-filter: blur(16px) saturate(130%);
            border-bottom: 1px solid rgba(226,232,240,0.7); z-index: 1000; box-shadow: var(--shadow-sm);
        }
        .nav-bar {
            max-width: 1240px; height: 100%; margin: 0 auto; padding: 0 1.5rem;
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 1.2rem; color: var(--text); letter-spacing: -0.3px; }
        .nav-brand img { width: 34px; height: 34px; object-fit: contain; border-radius: 8px; }
        .nav-brand span { background: linear-gradient(135deg, #0d9488 0%, #0369a1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
        .nav-links a { color: var(--text-secondary); font-weight: 520; font-size: 0.92rem; padding: 0.4rem 0; border-bottom: 2px solid transparent; transition: border-color var(--transition), color var(--transition); white-space: nowrap; }
        .nav-links a.active, .nav-links a:hover { border-bottom-color: var(--primary); color: var(--primary); }
        .nav-gh-btn {
            display: inline-flex; align-items: center; gap: 6px; background: #1e293b; color: #fff !important;
            padding: 0.4rem 1rem !important; border-radius: 50px !important; border-bottom: none !important;
            font-size: 0.84rem !important; font-weight: 600 !important; transition: background 0.25s, transform 0.2s !important;
        }
        .nav-gh-btn:hover { background: #0f172a !important; color: #fff !important; transform: translateY(-1px); border-bottom: none !important; }

        /* 页面主体 */
        .main-container { max-width: 1240px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }

        /* Hero 小区域 */
        .download-hero {
            text-align: center; padding: 2rem 1.5rem 1.8rem; background: var(--surface);
            border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
            margin-bottom: 2rem;
        }
        .download-hero h1 { font-size: 2rem; font-weight: 800; color: #0c3d3a; margin-bottom: 0.5rem; }
        .download-hero .hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 0.25rem; }
        .download-hero .hero-badge-row { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }
        .badge { display: inline-flex; align-items: center; gap: 5px; padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 550; }
        .badge-check { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
        .badge-sync { background: var(--accent-light); color: var(--accent); border: 1px solid #bae6fd; }

        /* 平台下载卡片网格 */
        .platform-download-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.25rem; margin: 2rem 0;
        }
        .dl-card {
            background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
            padding: 1.5rem 1.3rem; transition: box-shadow var(--transition), transform var(--transition);
            display: flex; flex-direction: column; position: relative; overflow: hidden;
        }
        .dl-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
        .dl-card .card-platform-icon { font-size: 2.6rem; margin-bottom: 0.5rem; }
        .dl-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; color: #0f172a; font-weight: 750; }
        .dl-card .card-version { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 0.6rem; }
        .dl-card .card-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; flex-grow: 1; }
        .dl-card .card-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .dl-card .card-meta span { background: #f8fafc; padding: 0.2rem 0.6rem; border-radius: 4px; border: 1px solid var(--border-light); }
        .dl-card .card-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; }
        .btn-dl {
            display: inline-flex; align-items: center; gap: 4px; padding: 0.5rem 1.1rem;
            border-radius: 50px; font-weight: 600; font-size: 0.84rem; transition: all 0.25s;
            background: linear-gradient(135deg, #0d9488 0%, #0369a1 100%);
            color: #fff; box-shadow: 0 4px 12px rgba(13,148,136,0.25); text-decoration: none;
        }
        .btn-dl:hover { box-shadow: 0 6px 20px rgba(13,148,136,0.4); transform: translateY(-1px); color: #fff; }
        .btn-dl-alt {
            background: transparent; border: 1.5px solid var(--primary); color: var(--primary);
            box-shadow: none;
        }
        .btn-dl-alt:hover { background: rgba(13,148,136,0.05); color: var(--primary-deep); box-shadow: none; }
        .btn-dl-gold {
            background: var(--gold); color: #1e293b; box-shadow: var(--shadow-gold);
        }
        .btn-dl-gold:hover { background: #e6890a; color: #1e293b; }

        /* 版本信息表 */
        .version-table-section {
            background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
            padding: 1.8rem; margin: 2rem 0; box-shadow: var(--shadow-sm);
        }
        .version-table-section h2 { font-size: 1.35rem; margin-bottom: 1rem; color: #0c3d3a; display: flex; align-items: center; gap: 8px; }
        .version-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
        .version-table th, .version-table td { text-align: left; padding: 0.75rem 0.8rem; border-bottom: 1px solid var(--border-light); }
        .version-table th { color: var(--text-muted); font-weight: 600; font-size: 0.8rem; }
        .version-table td { color: var(--text-secondary); }
        .hash-code { font-family: var(--font-mono); font-size: 0.78rem; background: #f8fafc; padding: 0.15rem 0.4rem; border-radius: 3px; word-break: break-all; }
        .copy-hash { background: none; border: none; color: var(--primary); cursor: pointer; font-size: 0.75rem; margin-left: 4px; }
        .copy-hash:hover { text-decoration: underline; }

        /* 说明卡片 */
        .info-card {
            background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 1rem 1.3rem; margin: 1.5rem 0; font-size: 0.9rem; color: #0f766e;
        }

        /* 页脚 — 与首页完全一致 */
        footer {
            margin-top: 3rem; background: #0f172a; color: #94a3b8; padding: 2.8rem 1.5rem 1.8rem; font-size: 0.87rem;
        }
        .footer-grid {
            max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem;
        }
        .footer-col h4 { color: #e2e8f0; font-size: 0.95rem; margin-bottom: 0.8rem; font-weight: 600; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.5rem; }
        .footer-col ul li a { color: #94a3b8; font-size: 0.84rem; transition: color var(--transition); }
        .footer-col ul li a:hover { color: #ffffff; }
        .footer-bottom {
            max-width: 1140px; margin: 0 auto; padding-top: 1.4rem;
            border-top: 1px solid rgba(148,163,184,0.13); text-align: center; font-size: 0.8rem; color: #64748b;
        }

        @media (max-width: 768px) {
            .nav-links { gap: 0.6rem; }
            .nav-gh-btn { padding: 0.3rem 0.7rem !important; font-size: 0.78rem !important; }
            .download-hero h1 { font-size: 1.6rem; }
            .platform-download-grid { grid-template-columns: 1fr 1fr; }
            .version-table-section { overflow-x: auto; }
        }
        @media (max-width: 540px) {
            .platform-download-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }