        :root {
            --accent: #4f46e5;
            --accent-dark: #3730a3;
            --accent-light: #eef2ff;
            --accent-glow: rgba(79, 70, 229, 0.10);
            --accent-soft: #f5f3ff;
            --bg: #fafbfc;
            --surface: #ffffff;
            --text: #1a1a2e;
            --text-secondary: #3d3d5c;
            --text-muted: #6b6b80;
            --border: #e2e4ea;
            --border-light: #eff1f5;
            --warm-highlight: #fdfcf8;
            --amber-accent: #6366f1;
            --amber-light: #f5f3ff;
            --shadow-sm: 0 1px 4px rgba(30, 30, 50, 0.04);
            --shadow-md: 0 6px 20px rgba(30, 30, 50, 0.06);
            --shadow-lg: 0 16px 36px rgba(30, 30, 50, 0.09);
            --shadow-xl: 0 24px 48px rgba(30, 30, 50, 0.12);
            --radius-sm: 14px;
            --radius-md: 22px;
            --radius-lg: 34px;
            --radius-xl: 46px;
            --radius-full: 999px;
            --transition: 0.20s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: 'Inter', system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-stack);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 12% 8%, rgba(79, 70, 229, 0.025) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 55%, rgba(99, 102, 241, 0.018) 0%, transparent 48%),
                radial-gradient(ellipse at 35% 82%, rgba(79, 70, 229, 0.012) 0%, transparent 42%);
            background-attachment: fixed;
        }
        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 26px;
        }
        header {
            background: rgba(255, 255, 255, 0.86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 120;
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
            gap: 10px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
            box-shadow: 0 4px 14px rgba(79, 70, 229, 0.28);
        }
        .logo-text {
            font-weight: 780;
            font-size: 1.3rem;
            color: var(--text);
            letter-spacing: -0.35px;
        }
        .logo-text span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
            font-size: 0.91rem;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 530;
            color: var(--text-secondary);
            transition: var(--transition);
            padding: 7px 15px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            background: var(--accent-light);
        }
        .btn-download-nav {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 9px 21px !important;
            border-radius: var(--radius-full) !important;
            font-weight: 600 !important;
            box-shadow: 0 3px 12px rgba(79, 70, 229, 0.24);
            transition: var(--transition) !important;
        }
        .btn-download-nav:hover {
            background: var(--accent-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(79, 70, 229, 0.32);
        }

        .section {
            padding: 34px 0 40px;
        }
        .section-title {
            text-align: center;
            font-size: clamp(1.55rem, 2.8vw, 2rem);
            font-weight: 750;
            margin-bottom: 8px;
            color: var(--text);
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 0.95rem;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3.5px;
            background: var(--accent);
            border-radius: 3px;
            margin: 10px auto 0;
        }

        /* 平台 Tabs */
        .platform-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 30px;
        }
        .platform-tab {
            padding: 10px 22px;
            border-radius: var(--radius-full);
            background: var(--surface);
            border: 1px solid var(--border);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            color: var(--text-secondary);
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }
        .platform-tab:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-light);
        }
        .platform-tab.active-tab {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            box-shadow: 0 4px 14px rgba(79, 70, 229, 0.32);
        }

        /* 下载卡片推荐矩阵 */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 18px;
        }
        .dl-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 26px 22px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .dl-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .dl-card .recommend-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            letter-spacing: 0.3px;
        }
        .dl-card .card-platform {
            font-size: 2rem;
            margin-bottom: 6px;
        }
        .dl-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
        .dl-card .version-info {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .dl-card .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 16px;
            font-size: 0.84rem;
            color: var(--text-secondary);
            flex: 1;
        }
        .dl-card .feature-list li {
            padding: 3px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .dl-card .feature-list li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
        }
        .card-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: auto;
        }
        .btn-dl {
            background: var(--accent);
            color: #fff;
            padding: 10px 18px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 620;
            font-size: 0.88rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 4px 14px rgba(79, 70, 229, 0.24);
            border: none;
            cursor: pointer;
        }
        .btn-dl:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(79, 70, 229, 0.34);
        }
        .btn-outline-sm {
            background: transparent;
            border: 1.5px solid var(--accent);
            color: var(--accent);
            padding: 9px 16px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .btn-outline-sm:hover {
            background: var(--accent-light);
            border-color: var(--accent-dark);
            color: var(--accent-dark);
        }

        /* 对比表格 */
        .compare-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            background: var(--surface);
            border: 1px solid var(--border-light);
            margin-top: 14px;
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            text-align: left;
        }
        .compare-table thead th {
            background: #f7f7fd;
            padding: 14px 16px;
            font-weight: 680;
            font-size: 0.86rem;
            color: var(--text);
            border-bottom: 2px solid var(--border);
            letter-spacing: -0.15px;
        }
        .compare-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.84rem;
            color: var(--text-secondary);
            vertical-align: middle;
        }
        .compare-table tbody tr:hover {
            background: #fafafe;
        }
        .check-yes {
            color: #10b981;
            font-weight: bold;
        }
        .check-no {
            color: #9ca3af;
        }

        /* 创意步骤 */
        .next-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            margin-top: 12px;
        }
        .next-step-card {
            flex: 1 1 180px;
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .next-step-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .next-step-card .step-icon {
            font-size: 2rem;
            margin-bottom: 8px;
        }
        .next-step-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
        }
        .next-step-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* 设备推荐 */
        .device-recommend {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 26px 22px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
            text-align: center;
            max-width: 680px;
            margin: 0 auto;
        }
        .device-recommend .detected-os {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 4px;
        }
        .device-recommend .rec-client {
            font-size: 1.1rem;
            font-weight: 650;
            color: var(--text);
            margin-bottom: 4px;
        }
        .device-recommend .rec-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        .btn-rec {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--accent);
            color: #fff;
            padding: 11px 26px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 620;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(79, 70, 229, 0.26);
        }
        .btn-rec:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(79, 70, 229, 0.34);
        }

        /* Footer */
        .footer {
            background: #16152a;
            color: #b8b8cc;
            padding: 40px 0 20px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 0.93rem;
            letter-spacing: -0.12px;
        }
        .footer-col a {
            color: #b8b8cc;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 26px;
            font-size: 0.8rem;
            border-top: 1px solid #2a2840;
            margin-top: 20px;
            color: #8a8a9c;
        }
        .footer-disclaimer {
            text-align: center;
            font-size: 0.74rem;
            color: #6e6e80;
            margin-top: 8px;
            line-height: 1.5;
        }

        /* hidden tab content */
        .tab-pane {
            display: none;
        }
        .tab-pane.active-pane {
            display: block;
        }

        @media (max-width: 900px) {
            .nav-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-links {
                gap: 4px;
                font-size: 0.82rem;
            }
            .nav-links a {
                padding: 6px 11px;
            }
            .download-grid {
                grid-template-columns: 1fr;
            }
            .platform-tabs {
                gap: 5px;
            }
            .platform-tab {
                padding: 8px 16px;
                font-size: 0.82rem;
            }
            .compare-table {
                min-width: 480px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .card-actions {
                flex-direction: column;
            }
            .btn-dl,
            .btn-outline-sm {
                justify-content: center;
            }
        }