        :root {
            --primary: #4f46e5;
            --primary-light: #6366f1;
            --primary-dark: #3730a3;
            --accent: #06b6d4;
            --accent-green: #10b981;
            --text: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --bg: #ffffff;
            --bg-soft: #f8fafc;
            --bg-card: #f1f5f9;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 15% 5%, rgba(99, 102, 241, 0.03) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 90%, rgba(6, 182, 212, 0.03) 0%, transparent 55%);
            background-attachment: fixed;
        }

        /* 导航栏 (与首页完全一致) */
        header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .nav-container {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 24px;
            gap: 16px;
        }
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.02em;
            white-space: nowrap;
            transition: opacity var(--transition);
        }
        .logo:hover {
            opacity: 0.82;
        }
        .logo img {
            height: 34px;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .logo-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            margin-left: 2px;
            animation: pulse-dot 2.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 0.4;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.6);
            }
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: rgba(79, 70, 229, 0.06);
        }
        .nav-links a.active {
            color: var(--primary);
            background: rgba(79, 70, 229, 0.10);
            font-weight: 600;
        }
        .nav-links .nav-badge {
            display: inline-block;
            background: var(--accent-green);
            color: #fff;
            font-size: 0.68rem;
            padding: 2px 7px;
            border-radius: 10px;
            margin-left: 4px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        /* 面包屑 */
        .breadcrumb {
            max-width: 1240px;
            margin: 18px auto 0;
            padding: 0 24px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .sep {
            user-select: none;
            opacity: 0.5;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 32px 24px 48px;
        }

        /* 页面头 */
        .page-header {
            text-align: center;
            padding: 40px 20px 30px;
            margin-bottom: 32px;
        }
        .page-header h1 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.03em;
            margin-bottom: 10px;
        }
        .page-header .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto;
        }

        /* 下载卡片网格 */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }
        .download-card {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 20px 28px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .download-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            opacity: 0;
            transition: opacity var(--transition);
            pointer-events: none;
        }
        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: #cbd5e1;
        }
        .download-card:hover::after {
            opacity: 1;
        }
        .download-card .icon {
            font-size: 2.8rem;
            margin-bottom: 12px;
            display: block;
        }
        .download-card h2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .download-card .meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            min-height: 36px;
        }
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 13px 18px;
            border-radius: 28px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            color: #fff;
            background: var(--primary);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
            letter-spacing: 0.01em;
        }
        .download-btn:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
            transform: translateY(-1px);
        }
        /* 平台微调色彩 */
        .download-card.win .download-btn { background: #0078d4; box-shadow: 0 4px 12px rgba(0,120,212,0.25); }
        .download-card.win .download-btn:hover { background: #005a9e; }
        .download-card.win::after { background: linear-gradient(90deg, #0078d4, #4f46e5); }
        .download-card.mac .download-btn { background: #1e293b; box-shadow: 0 4px 12px rgba(30,41,59,0.25); }
        .download-card.mac .download-btn:hover { background: #0f172a; }
        .download-card.mac::after { background: linear-gradient(90deg, #1e293b, #6366f1); }
        .download-card.ios .download-btn { background: var(--accent-green); box-shadow: 0 4px 12px rgba(16,185,129,0.25); }
        .download-card.ios .download-btn:hover { background: #059669; }
        .download-card.ios::after { background: linear-gradient(90deg, #10b981, #06b6d4); }
        .download-card.android .download-btn { background: #a4c639; box-shadow: 0 4px 12px rgba(164,198,57,0.25); }
        .download-card.android .download-btn:hover { background: #84a22b; }
        .download-card.android::after { background: linear-gradient(90deg, #a4c639, #4f46e5); }

        /* 通用内容区块 */
        .content-box {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin-bottom: 28px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }
        .content-box:hover {
            box-shadow: var(--shadow-md);
        }
        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0 0 12px;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--border-light);
            letter-spacing: -0.02em;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin: -4px 0 18px;
            max-width: 700px;
        }
        .content-box p {
            margin-bottom: 14px;
            text-align: justify;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .content-box p:last-child {
            margin-bottom: 0;
        }

        /* 特性卡片网格复用 */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 16px 0;
        }
        .feature-card {
            background: var(--bg-card);
            padding: 24px 20px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
        }
        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #0f172a;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.7;
            margin: 0;
            text-align: left;
        }
        .badge {
            display: inline-block;
            background: #ede9fe;
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.82rem;
            font-weight: 600;
            font-family: var(--font-mono);
            letter-spacing: 0.02em;
            white-space: nowrap;
            margin-right: 6px;
        }
        .badge-green {
            background: #d1fae5;
            color: #065f46;
        }
        .badge-blue {
            background: #dbeafe;
            color: #1e40af;
        }
        .styled-list {
            list-style: none;
            padding: 0;
            margin: 12px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 10px;
        }
        .styled-list li {
            padding: 10px 14px;
            background: var(--bg-soft);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--primary-light);
            font-size: 0.93rem;
            color: var(--text-secondary);
            transition: all var(--transition);
        }
        .styled-list li:hover {
            border-left-color: var(--accent);
            background: #f8faff;
        }
        .styled-list li strong {
            color: var(--text);
        }

        /* 页脚 */
        footer {
            background: var(--bg-soft);
            text-align: center;
            padding: 36px 20px;
            margin-top: 56px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.8;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 18px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .footer-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            transition: color var(--transition);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .footer-note {
            font-size: 0.78rem;
            color: #94a3b8;
            margin-top: 6px;
        }

        /* 创意时间线 */
        .timeline-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin: 20px 0;
        }
        .timeline-item {
            text-align: center;
            min-width: 100px;
        }
        .timeline-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            margin: 0 auto 8px;
            box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
        }
        .timeline-date {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--primary);
        }
        .timeline-ver {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 10px;
                padding: 12px 16px;
            }
            .nav-links a {
                padding: 7px 11px;
                font-size: 0.85rem;
            }
            .page-header h1 {
                font-size: 1.6rem;
            }
            .content-box {
                padding: 20px 16px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .styled-list {
                grid-template-columns: 1fr;
            }
            .footer-links {
                gap: 10px;
            }
            .download-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 420px) {
            .download-btn {
                width: 100%;
                justify-content: center;
            }
        }