        :root {
            --bg-body: #06060f;
            --bg-surface: #0d0d1f;
            --bg-card: #13132a;
            --bg-card-hover: #1a1a38;
            --bg-elevated: #0f0f24;
            --border-subtle: rgba(255, 255, 255, 0.05);
            --border-glow: rgba(100, 70, 255, 0.2);
            --border-accent: rgba(124, 77, 255, 0.25);
            --text-primary: #f0edff;
            --text-secondary: #b0acc8;
            --text-muted: #6a6688;
            --accent-1: #7c4dff;
            --accent-2: #b388ff;
            --accent-3: #18c8f0;
            --accent-4: #00e5a0;
            --accent-5: #ff6b6b;
            --gradient-main: linear-gradient(135deg, #7c4dff, #18c8f0);
            --gradient-warm: linear-gradient(135deg, #b388ff, #7c4dff);
            --gradient-cool: linear-gradient(135deg, #18c8f0, #00e5a0);
            --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.6);
            --shadow-glow: 0 0 60px rgba(124, 77, 255, 0.08);
            --radius-xl: 28px;
            --radius-lg: 24px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --max-width: 1140px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font);
            background: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        img {
            max-width: 100%;
            display: block;
            height: auto;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 按钮 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-main);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 32px;
            border-radius: 60px;
            transition: var(--transition);
            box-shadow: 0 4px 24px rgba(124, 77, 255, 0.3);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 40px rgba(124, 77, 255, 0.45);
        }
        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-main);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 10px 28px;
            border-radius: 60px;
            transition: var(--transition);
            box-shadow: 0 2px 16px rgba(124, 77, 255, 0.25);
            border: none;
            width: 100%;
            justify-content: center;
        }
        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 32px rgba(124, 77, 255, 0.4);
        }
        .btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--accent-2);
            padding: 6px 16px;
            border-radius: 30px;
            border: 1px solid rgba(179, 136, 255, 0.2);
            transition: var(--transition-fast);
            background: rgba(179, 136, 255, 0.04);
        }
        .btn-outline-sm:hover {
            background: rgba(179, 136, 255, 0.12);
            border-color: rgba(179, 136, 255, 0.4);
            color: #fff;
        }

        /* 导航栏 - 与首页完全一致 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(6, 6, 15, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition);
        }
        .navbar.scrolled {
            background: rgba(6, 6, 15, 0.94);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
            border-bottom-color: rgba(255, 255, 255, 0.06);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }
        .nav-logo .logo-badge {
            width: 32px;
            height: 32px;
            background: var(--gradient-main);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            color: #fff;
            box-shadow: 0 0 14px rgba(124, 77, 255, 0.3);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition-fast);
            letter-spacing: 0.01em;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-2);
            border-radius: 1px;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #fff;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: #b388ff;
        }
        .nav-links a.active::after {
            width: 100%;
            background: var(--accent-2);
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .nav-cta .btn-primary {
            padding: 8px 22px;
            font-size: 0.85rem;
            box-shadow: 0 2px 16px rgba(124, 77, 255, 0.25);
        }
        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 6px;
            cursor: pointer;
            z-index: 1001;
        }
        .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }
        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        /* Hero - 下载中心专属 */
        .download-hero {
            padding: 150px 0 50px;
            background: var(--bg-body);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .download-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(24, 200, 240, 0.04) 0%, rgba(0, 229, 160, 0.02) 40%, transparent 65%);
            border-radius: 50%;
            pointer-events: none;
        }
        .download-hero .container {
            position: relative;
            z-index: 1;
            max-width: 760px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 229, 160, 0.08);
            border: 1px solid rgba(0, 229, 160, 0.12);
            padding: 5px 20px;
            border-radius: 40px;
            font-size: 0.74rem;
            font-weight: 600;
            color: #00e5a0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 22px;
        }
        .download-hero h1 {
            font-size: 3.4rem;
            font-weight: 800;
            letter-spacing: -0.035em;
            line-height: 1.08;
            margin-bottom: 18px;
        }
        .download-hero h1 .highlight {
            background: linear-gradient(135deg, #18c8f0, #00e5a0, #7c4dff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .download-hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.9;
        }
        .hero-assurance {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            font-size: 0.84rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }
        .hero-assurance span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,255,255,0.03);
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 44px;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
            flex-wrap: wrap;
        }
        .hero-stats .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }
        .hero-stats .stat-num {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f0edff, #00e5a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stats .stat-label {
            font-size: 0.76rem;
            color: var(--text-muted);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        /* 通用区块标签 */
        .section-label {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-label .badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 18px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 10px;
        }
        .section-label h2 {
            font-size: 2.3rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            line-height: 1.25;
            margin-bottom: 6px;
        }
        .section-label p {
            color: var(--text-secondary);
            max-width: 520px;
            margin: 8px auto 0;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* 下载卡片网格 */
        .download-grid {
            padding: 30px 0 50px;
            background: var(--bg-body);
        }
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            max-width: 900px;
            margin: 0 auto;
        }
        .platform-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 16px 24px;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            position: relative;
        }
        .platform-card:hover {
            border-color: rgba(0, 229, 160, 0.25);
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
            background: var(--bg-card-hover);
        }
        .platform-card .os-icon {
            font-size: 2.6rem;
            display: block;
            margin-bottom: 4px;
            transition: transform 0.3s ease;
        }
        .platform-card:hover .os-icon {
            transform: scale(1.1);
        }
        .platform-card .os-name {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .platform-card .os-meta {
            font-size: 0.72rem;
            color: var(--text-muted);
            background: rgba(255,255,255,0.03);
            padding: 2px 14px;
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
        }
        .platform-card .os-size {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .platform-card .btn-download {
            margin-top: 6px;
        }
        .platform-card .checksum {
            font-size: 0.62rem;
            font-family: 'SF Mono', 'Fira Code', monospace;
            color: var(--text-muted);
            background: rgba(255,255,255,0.02);
            padding: 3px 10px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            width: 100%;
            text-align: center;
            word-break: break-all;
        }
        .official-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 0.6rem;
            background: rgba(0,229,160,0.1);
            color: #00e5a0;
            padding: 2px 10px;
            border-radius: 12px;
            letter-spacing: 0.04em;
            border: 1px solid rgba(0,229,160,0.15);
        }

        /* 安全校验中心 - 新增创意版块 */
        .verify-center {
            padding: 70px 0 65px;
            background: var(--bg-surface);
        }
        .verify-center .section-label .badge {
            background: rgba(24,200,240,0.07);
            color: #18c8f0;
            border: 1px solid rgba(24,200,240,0.07);
        }
        .verify-center .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #18c8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .verify-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }
        .verify-card {
            background: var(--bg-card);
            padding: 28px 22px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            text-align: center;
            transition: var(--transition);
        }
        .verify-card:hover {
            border-color: rgba(24,200,240,0.2);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .verify-card .v-icon {
            font-size: 2.4rem;
            display: block;
            margin-bottom: 10px;
        }
        .verify-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .verify-card p {
            font-size: 0.86rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .verify-card .v-code {
            display: inline-block;
            margin-top: 10px;
            font-family: monospace;
            font-size: 0.72rem;
            background: rgba(24,200,240,0.05);
            padding: 4px 14px;
            border-radius: 14px;
            color: #18c8f0;
            border: 1px solid rgba(24,200,240,0.1);
        }

        /* 版本亮点 - 新增创意版块 */
        .release-highlights {
            padding: 70px 0 60px;
            background: var(--bg-body);
        }
        .release-highlights .section-label .badge {
            background: rgba(179,136,255,0.07);
            color: #b388ff;
            border: 1px solid rgba(179,136,255,0.07);
        }
        .release-highlights .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #b388ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }
        .highlight-item {
            background: var(--bg-card);
            padding: 22px 24px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: var(--transition);
        }
        .highlight-item:hover {
            border-color: rgba(179,136,255,0.2);
            transform: translateX(4px);
            box-shadow: var(--shadow-card);
        }
        .highlight-item .hi-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .highlight-item .hi-content h4 {
            font-size: 0.98rem;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .highlight-item .hi-content p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 历史版本归档 - 新增版块 */
        .history-versions {
            padding: 70px 0 65px;
            background: var(--bg-elevated);
        }
        .history-versions .section-label .badge {
            background: rgba(0,229,160,0.07);
            color: #00e5a0;
            border: 1px solid rgba(0,229,160,0.07);
        }
        .history-versions .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #00e5a0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .version-list {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .version-row {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 16px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            transition: var(--transition-fast);
        }
        .version-row:hover {
            border-color: rgba(0,229,160,0.2);
            background: var(--bg-card-hover);
        }
        .version-row .v-info {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .version-row .v-tag {
            font-weight: 700;
            color: #00e5a0;
            font-size: 0.9rem;
        }
        .version-row .v-date {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .version-row .v-link {
            font-size: 0.82rem;
            color: var(--accent-2);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition-fast);
        }
        .version-row .v-link:hover {
            color: #fff;
        }

        /* 系统要求 - 保留并微调 */
        .sysreq {
            padding: 70px 0 65px;
            background: var(--bg-body);
        }
        .sysreq .section-label .badge {
            background: rgba(124,77,255,0.07);
            color: #b388ff;
            border: 1px solid rgba(124,77,255,0.07);
        }
        .sysreq .section-label h2 {
            background: linear-gradient(135deg, #f0edff, #b388ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .sysreq-table {
            max-width: 700px;
            margin: 0 auto;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .sysreq-row {
            display: grid;
            grid-template-columns: 120px 1fr;
            padding: 14px 22px;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-subtle);
            transition: var(--transition-fast);
            align-items: center;
        }
        .sysreq-row:last-child {
            border-bottom: none;
        }
        .sysreq-row:hover {
            background: var(--bg-card-hover);
        }
        .sysreq-row .platform {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .sysreq-row .req {
            color: var(--text-secondary);
            font-size: 0.88rem;
        }
        .sysreq-row .req .tag {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 600;
            color: #18c8f0;
            background: rgba(24,200,240,0.06);
            padding: 0 10px;
            border-radius: 20px;
            border: 1px solid rgba(24,200,240,0.06);
            margin-left: 6px;
        }

        /* Footer - 统一 */
        .footer {
            background: #03030a;
            padding: 54px 0 30px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 28px;
        }
        .footer-brand .logo {
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-brand .logo .badge {
            width: 28px;
            height: 28px;
            background: var(--gradient-main);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            color: #fff;
        }
        .footer-brand p {
            font-size: 0.86rem;
            color: rgba(255, 255, 255, 0.38);
            max-width: 300px;
            line-height: 1.8;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }
        .footer-col ul li {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.38);
            transition: var(--transition-fast);
            cursor: pointer;
        }
        .footer-col ul li:hover {
            color: #fff;
        }
        .footer-col .contact {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 5px;
            line-height: 1.6;
        }
        .footer-col .contact strong {
            color: rgba(255, 255, 255, 0.65);
            font-weight: 500;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.28);
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .footer-bottom .info-group {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .platform-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 600px;
            }
            .verify-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .highlights-grid {
                grid-template-columns: 1fr;
            }
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .download-hero h1 {
                font-size: 2.6rem;
            }
        }
        @media (max-width: 768px) {
            .navbar .container {
                height: 60px;
            }
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(6, 6, 15, 0.97);
                backdrop-filter: blur(24px);
                flex-direction: column;
                padding: 28px 20px;
                gap: 18px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
                transform: translateY(-130%);
                transition: var(--transition);
                border-bottom: 1px solid var(--border-subtle);
                align-items: stretch;
                text-align: center;
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
            }
            .nav-links a {
                padding: 10px 0;
                font-size: 1rem;
                display: block;
            }
            .nav-cta .btn-primary {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .download-hero {
                padding: 115px 0 30px;
            }
            .download-hero h1 {
                font-size: 2rem;
            }
            .platform-grid {
                grid-template-columns: 1fr 1fr;
                max-width: 100%;
            }
            .verify-grid {
                grid-template-columns: 1fr;
            }
            .version-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .sysreq-row {
                grid-template-columns: 1fr;
                gap: 4px;
                padding: 12px 16px;
            }
            .footer .container {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-bottom .info-group {
                justify-content: center;
            }
            .section-label h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .platform-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
            .download-hero h1 {
                font-size: 1.7rem;
            }
            .hero-stats {
                gap: 20px;
            }
            .container {
                padding: 0 16px;
            }
        }