        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --brand: #e85d3a;
            --brand-deep: #c94a2c;
            --brand-glow: #f7931e;
            --bg-warm: #fdfaf7;
            --bg-cream: #fcf8f3;
            --bg-soft: #f5ede4;
            --text-primary: #1e1a16;
            --text-secondary: rgba(30, 26, 22, 0.58);
            --text-muted: rgba(30, 26, 22, 0.38);
            --border-soft: rgba(0, 0, 0, 0.04);
            --border-card: rgba(0, 0, 0, 0.05);
            --shadow-card: 0 2px 14px rgba(0, 0, 0, 0.025);
            --shadow-hover: 0 22px 56px rgba(0, 0, 0, 0.06);
            --radius-lg: 24px;
            --radius-full: 60px;
            --transition-smooth: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-warm);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 28px;
        }

        header {
            background: rgba(253, 250, 247, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-soft);
            transition: box-shadow var(--transition-smooth);
        }
        header.scrolled {
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            transition: opacity var(--transition-smooth);
        }
        .logo:hover {
            opacity: 0.8;
        }
        .logo svg {
            width: 34px;
            height: 34px;
            color: var(--brand);
            flex-shrink: 0;
        }
        .logo span {
            color: var(--brand);
        }
        .logo small {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            margin-left: 4px;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.25s;
            position: relative;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
            letter-spacing: 0.1px;
        }
        nav a:hover {
            color: var(--text-primary);
        }
        nav a.active {
            color: var(--brand);
            border-bottom-color: var(--brand);
        }
        .nav-download-btn {
            background: var(--brand);
            color: #fff !important;
            padding: 11px 32px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 13px;
            border: none;
            transition: background var(--transition-smooth), transform 0.2s, box-shadow 0.3s;
            border-bottom: none !important;
            box-shadow: 0 5px 20px rgba(232, 93, 58, 0.22);
            letter-spacing: 0.2px;
        }
        .nav-download-btn:hover {
            background: var(--brand-deep);
            transform: scale(1.04);
            box-shadow: 0 8px 28px rgba(232, 93, 58, 0.32);
            color: #fff !important;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            z-index: 101;
        }
        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: 0.25s;
            transform-origin: center;
        }
        .nav-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .nav-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .breadcrumb {
            padding: 18px 0 6px;
            background: var(--bg-warm);
            font-size: 14px;
            color: var(--text-muted);
            letter-spacing: 0.2px;
        }
        .breadcrumb a {
            color: var(--brand);
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--brand-deep);
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 6px;
        }

        .faq-hero {
            padding: 30px 0 10px;
            background: var(--bg-warm);
            border-bottom: 1px solid var(--border-soft);
        }
        .faq-hero h1 {
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.2;
        }
        .faq-hero p {
            font-size: 18px;
            color: var(--text-secondary);
        }

        /* 创意版块：系统要求速查表 */
        .sysreq-section {
            background: var(--bg-cream);
            border-radius: 20px;
            padding: 28px;
            margin: 28px 0;
            border: 1px solid var(--border-card);
        }
        .sysreq-section h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sysreq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .sysreq-item {
            background: #fff;
            border-radius: 14px;
            padding: 14px 16px;
            display: flex;
            justify-content: space-between;
            border: 1px solid var(--border-card);
        }
        .sysreq-item .label {
            color: var(--text-muted);
            font-size: 14px;
        }
        .sysreq-item .value {
            font-weight: 600;
            color: var(--text-primary);
        }

        /* 创意版块：安装包校验工具箱 */
        .verify-tool-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            margin: 28px 0;
            border: 1px solid var(--border-card);
            box-shadow: var(--shadow-card);
        }
        .verify-tool-section h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .verify-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .verify-step {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-warm);
            padding: 12px 16px;
            border-radius: 14px;
        }
        .verify-step .step-num {
            width: 32px;
            height: 32px;
            background: var(--brand);
            color: #fff;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .verify-step .step-text {
            font-size: 15px;
            color: var(--text-primary);
        }
        .verify-step .step-text code {
            background: rgba(0,0,0,0.03);
            padding: 2px 8px;
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 13px;
        }

        .faq-list {
            padding: 30px 0 60px;
            background: #fff;
            border-radius: 32px 32px 0 0;
            margin-top: -4px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.01);
        }
        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
            border-radius: 8px;
        }
        .faq-question:hover {
            background: rgba(232,93,58,0.02);
        }
        .faq-question .q-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .faq-question .q-text .qmark {
            color: var(--brand);
            font-weight: 700;
            font-size: 20px;
        }
        .faq-question .icon {
            font-size: 22px;
            color: var(--text-muted);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.active .faq-question .icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 0 0 44px;
            color: #44403a;
            font-size: 17px;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 0 0 22px 44px;
        }
        .faq-answer a {
            color: var(--brand);
            font-weight: 500;
        }
        .faq-answer a:hover {
            text-decoration: underline;
        }

        .faq-more {
            padding: 30px 0 50px;
            background: var(--bg-cream);
            text-align: center;
            border-top: 1px solid var(--border-soft);
        }
        .faq-more h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .faq-more p {
            color: var(--text-secondary);
            font-size: 17px;
            margin-bottom: 20px;
        }
        .btn-secondary {
            background: var(--brand);
            color: #fff;
            padding: 12px 36px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 15px;
            border: none;
            transition: background 0.25s, transform 0.2s;
            display: inline-block;
            box-shadow: 0 4px 16px rgba(232,93,58,0.2);
        }
        .btn-secondary:hover {
            background: var(--brand-deep);
            transform: translateY(-2px);
        }

        footer {
            background: #1e1a16;
            color: rgba(255,255,255,0.35);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        .footer-brand .logo {
            font-size: 22px;
            margin-bottom: 10px;
            color: #fff;
        }
        .footer-brand .logo svg {
            color: var(--brand);
        }
        .footer-brand .logo span {
            color: var(--brand);
        }
        .footer-brand p {
            font-size: 14px;
            max-width: 260px;
            line-height: 1.7;
            color: rgba(255,255,255,0.35);
        }
        .footer-col h4 {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255,255,255,0.35);
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 32px auto 0;
            padding: 22px 28px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: rgba(255,255,255,0.2);
        }
        .footer-bottom .platforms-badge {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: rgba(255,255,255,0.3);
        }
        .footer-bottom .platforms-badge span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 16px 0 8px;
                border-top: 1px solid var(--border-soft);
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            .nav-toggle {
                display: flex;
            }
            .faq-hero h1 {
                font-size: 28px;
            }
            .faq-question .q-text {
                font-size: 16px;
            }
            .faq-answer {
                font-size: 16px;
                padding: 0 0 0 32px;
            }
            .faq-item.active .faq-answer {
                padding: 0 0 18px 32px;
            }
            .sysreq-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 18px;
            }
            .faq-hero h1 {
                font-size: 24px;
            }
            .faq-question .q-text {
                font-size: 15px;
                gap: 8px;
            }
            .faq-answer {
                font-size: 15px;
                padding: 0 0 0 24px;
            }
            .faq-item.active .faq-answer {
                padding: 0 0 14px 24px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-bottom .platforms-badge {
                flex-wrap: wrap;
                justify-content: center;
            }
        }