        :root {
            --bg: #ffffff;
            --surface: #fff5f7;
            --surface-alt: #fff0f4;
            --text: #1a1025;
            --text-secondary: #4a3348;
            --text-muted: #7a5d6e;
            --accent: #e85382;
            --accent-deep: #c0395c;
            --accent-light: #ff8fab;
            --accent-soft: #ffd4e0;
            --accent-glow: rgba(232, 83, 130, 0.10);
            --border: #f0dce3;
            --border-light: #fce8ef;
            --shadow-sm: 0 1px 4px rgba(180, 60, 100, 0.05);
            --shadow-md: 0 8px 28px rgba(180, 60, 100, 0.08);
            --shadow-lg: 0 20px 52px rgba(180, 60, 100, 0.10);
            --radius-sm: 12px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --transition: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --gradient-hero: linear-gradient(135deg, #e85382 0%, #ff6b8a 30%, #ff8fab 55%, #ffb3c6 100%);
            --gradient-cta: linear-gradient(135deg, #2d1020 0%, #3d1a2e 40%, #2d1020 100%);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 28px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* ===== HEADER ===== */
        header {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.96);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.7rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            flex-shrink: 0;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }
        .logo-icon {
            display: inline-block;
            font-size: 1.5rem;
            margin-right: 2px;
            vertical-align: -2px;
        }
        .nav-links {
            display: flex;
            gap: 22px;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.9rem;
            position: relative;
            padding: 5px 2px;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--accent);
            border-radius: 3px;
            transition: width var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent);
            font-weight: 700;
        }
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a.nav-highlight {
            background: var(--accent-soft);
            color: var(--accent-deep);
            padding: 8px 18px;
            border-radius: 28px;
            font-weight: 600;
        }
        .nav-links a.nav-highlight:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(232, 83, 130, 0.3);
        }
        .nav-links a.nav-highlight::after {
            display: none;
        }

        /* ===== 页面Hero ===== */
        .page-hero {
            padding: 60px 0 44px;
            background: radial-gradient(ellipse at 65% 20%, rgba(255, 143, 171, 0.07) 0%, #ffffff 65%);
            text-align: center;
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900;
            margin-bottom: 14px;
            color: #1a0d16;
            letter-spacing: -0.02em;
        }
        .page-hero .hero-gradient-text {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .page-hero .subtitle {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }

        /* ===== Section标题 ===== */
        .section-title-v2 {
            text-align: center;
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 44px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-accent-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            margin: 0 6px;
            vertical-align: middle;
        }

        /* ===== 平台分类区块 ===== */
        .platform-section {
            padding: 70px 0;
            background: var(--surface);
        }
        .platform-grid {
            display: flex;
            flex-direction: column;
            gap: 36px;
        }
        .platform-group h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-left: 4px solid var(--accent);
            padding-left: 14px;
        }
        .tool-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .tool-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow-sm);
            border: 1.5px solid var(--border-light);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(232, 83, 130, 0.25);
        }
        .tool-card .tool-header {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tool-card .tool-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .tool-card h4 {
            font-size: 1.1rem;
            color: var(--text);
            font-weight: 700;
        }
        .tool-card .badge-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .badge {
            background: var(--accent-soft);
            color: #c0395c;
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
        }
        .badge.os-badge {
            background: #fce8ef;
            color: #9b3050;
        }
        .tool-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .btn-download-sm {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            text-align: center;
            transition: var(--transition);
            margin-top: 6px;
        }
        .btn-download-sm:hover {
            background: #c0395c;
            box-shadow: 0 8px 20px rgba(232, 83, 130, 0.3);
        }

        /* ===== 下载说明区块 ===== */
        .info-section {
            padding: 70px 0;
            background: #fff;
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .info-card {
            background: #fff5f7;
            border-radius: var(--radius);
            padding: 24px 20px;
            border: 1.5px solid transparent;
            transition: var(--transition);
        }
        .info-card:hover {
            border-color: rgba(232, 83, 130, 0.25);
            background: #fff;
            box-shadow: var(--shadow-md);
        }
        .info-card h4 {
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: 8px;
        }
        .info-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ===== 底部CTA ===== */
        .guide-cta-section {
            padding: 68px 0;
            background: var(--gradient-cta);
            color: #ffffff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .guide-cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -15%;
            width: 130%;
            height: 160%;
            background: radial-gradient(ellipse at center, rgba(232, 83, 130, 0.3) 0%, transparent 65%);
            pointer-events: none;
        }
        .guide-cta-section .cta-inner {
            position: relative;
            z-index: 1;
        }
        .guide-cta-section h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            font-weight: 800;
            margin-bottom: 12px;
        }
        .guide-cta-section p {
            margin: 14px auto 0;
            max-width: 520px;
            opacity: 0.88;
        }
        .btn-guide-cta {
            background: #ffffff;
            color: #c0395c;
            padding: 16px 48px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 28px;
            transition: var(--transition);
            font-size: 1rem;
            letter-spacing: 0.02em;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        .btn-guide-cta:hover {
            background: #ffe0e8;
            transform: scale(1.04);
            box-shadow: 0 16px 40px rgba(232, 83, 130, 0.4);
            color: #9b3050;
        }
        .cta-extra-info {
            margin-top: 26px;
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #1a0d16;
            color: #b8a0ae;
            padding: 50px 0 26px;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 34px;
            margin-bottom: 38px;
        }
        .footer-grid>div {
            min-width: 140px;
        }
        .footer-grid h4 {
            color: #ffffff;
            font-size: 0.94rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 5px;
        }
        .footer-grid a {
            color: #b8a0ae;
            text-decoration: none;
            font-size: 0.84rem;
            transition: var(--transition);
        }
        .footer-grid a:hover {
            color: #ffb3c6;
        }
        .footer-bottom {
            border-top: 1px solid #2d1a24;
            padding-top: 22px;
            text-align: center;
            font-size: 0.76rem;
            color: #7a5d6e;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            .footer-grid {
                gap: 20px;
            }
        }
        @media (max-width: 600px) {
            nav {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                width: 100%;
                justify-content: flex-start;
                gap: 10px;
            }
            .nav-links a.nav-highlight {
                padding: 6px 14px;
                font-size: 0.76rem;
            }
        }
        }