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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #fefaff;
            color: #1f1a3c;
            line-height: 1.5;
        }

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

        /* 紫罗兰+珊瑚粉渐变 (与首页一致) */
        :root {
            --primary: #a855f7;
            --primary-dark: #7e22ce;
            --secondary: #f43f5e;
            --gradient-hero: linear-gradient(135deg, #c084fc 0%, #db2777 100%);
            --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0,0,0,0.02);
            --border-light: 1px solid rgba(168, 85, 247, 0.15);
        }

        .header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 1rem 0;
        }

        .logo a {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(125deg, #a855f7, #ec4899);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #2d2a4a;
            transition: 0.2s;
        }

        .nav-links a:hover {
            color: #a855f7;
        }

        .btn-subscribe {
            background: linear-gradient(105deg, #a855f7, #d946ef);
            color: white !important;
            padding: 0.5rem 1.4rem;
            border-radius: 40px;
            box-shadow: 0 6px 12px -6px rgba(168, 85, 247, 0.4);
            transition: all 0.2s;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -10px #a855f7;
        }

        .page-header {
            text-align: center;
            padding: 3rem 0 1.5rem;
        }

        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #4c1d95, #db2777, #c026d3);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.8rem;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #4c4b6e;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 下载卡片 - 四列创意网格 */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
            margin: 3rem 0 2rem;
        }

        .download-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(2px);
            border-radius: 1.8rem;
            padding: 1.6rem;
            transition: all 0.3s;
            border: var(--border-light);
            box-shadow: var(--card-shadow);
            display: flex;
            flex-direction: column;
        }

        .download-card:hover {
            transform: translateY(-8px);
            border-color: #c084fc;
            box-shadow: 0 25px 35px -16px rgba(168, 85, 247, 0.25);
        }

        .os-icon {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
        }

        .download-card h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0.2rem 0 0.2rem;
            color: #2d1b69;
        }

        .version-meta {
            font-size: 0.75rem;
            color: #5b5580;
            border-top: 1px solid #ede9fe;
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .version-meta span {
            background: #f3e8ff;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
        }
        .tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0.7rem 0;
        }
        .tag {
            font-size: 0.7rem;
            background: #f3e8ff;
            color: #7e22ce;
            padding: 0.2rem 0.7rem;
            border-radius: 30px;
            font-weight: 500;
        }
        .tag.deprecated {
            background: #fee2e2;
            color: #b91c1c;
        }
        .tag.official {
            background: #dcfce7;
            color: #15803d;
        }
        .download-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 0.8rem 0 0.5rem;
        }
        .download-btn-sm {
            background: linear-gradient(105deg, #a855f7, #d946ef);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            border: none;
            cursor: pointer;
        }
        .download-btn-sm:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px -6px #a855f7;
        }
        .btn-outline-sm {
            background: transparent;
            border: 1px solid #a855f7;
            color: #a855f7;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.2s;
            cursor: pointer;
        }
        .btn-outline-sm:hover {
            background: #f9f5ff;
            border-color: #d946ef;
            color: #d946ef;
        }
        .note-text {
            font-size: 0.7rem;
            color: #7b6e9e;
            margin-top: 0.6rem;
        }

        /* 创意板块：下载前安全验证 & 节点同步指南 */
        .security-badge {
            background: linear-gradient(115deg, #faf5ff 0%, #ffffff 100%);
            border-radius: 2rem;
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px solid #ede9fe;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .security-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d1b69;
        }
        .security-icon {
            font-size: 3rem;
        }

        /* 系统要求网格 (与首页风格统一) */
        .info-section {
            background: #ffffff;
            border-radius: 2rem;
            padding: 1.8rem;
            margin: 2rem 0;
            border: 1px solid #ede9fe;
        }
        .info-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2d1b69;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin: 1rem 0;
        }
        .req-card {
            background: #faf9ff;
            border-radius: 1.5rem;
            padding: 1.2rem;
            border: 1px solid #ede9fe;
            transition: 0.2s;
        }
        .req-card:hover {
            background: #f3e8ff;
        }
        .req-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            border-bottom: 2px solid #e9e4ff;
            padding-bottom: 0.5rem;
            color: #2d1b69;
        }
        .req-list {
            list-style: none;
            font-size: 0.85rem;
            color: #4a4468;
        }
        .req-list li {
            margin-bottom: 0.5rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .req-list li::before {
            content: "✨";
            position: absolute;
            left: 0;
            color: #a855f7;
            font-size: 0.7rem;
        }

        /* 版本对比表 + 创意性能雷达 */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #ede9fe;
            padding: 0.7rem;
            text-align: left;
        }
        .comparison-table th {
            background: #faf9ff;
            font-weight: 600;
            color: #2d1b69;
        }

        .update-log {
            list-style: none;
        }
        .update-log li {
            padding: 0.6rem 0;
            border-bottom: 1px dashed #ede9fe;
            color: #4a4468;
        }
        .update-log li strong {
            color: #a855f7;
        }

        .note-box {
            background: #f3e8ff;
            border-left: 5px solid #a855f7;
            padding: 1.2rem 1.8rem;
            border-radius: 1.2rem;
            margin: 1rem 0 3rem;
            color: #2d1b69;
        }

        .footer {
            border-top: 1px solid #ede9fe;
            background: #fcfaff;
            padding: 2rem 0;
            margin-top: 2rem;
            text-align: center;
            color: #5b5580;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .footer-links a {
            text-decoration: none;
            color: #a855f7;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #d946ef;
        }

        @media (max-width: 1100px) {
            .download-grid, .requirements-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (max-width: 640px) {
            .download-grid, .requirements-grid {
                grid-template-columns: 1fr;
            }
            .nav {
                flex-direction: column;
                gap: 1rem;
            }
            .page-header h1 {
                font-size: 2rem;
            }
        }