        :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: 36px 0 42px;
        }
        .section-title {
            text-align: center;
            font-size: clamp(1.5rem, 2.6vw, 1.95rem);
            font-weight: 750;
            margin-bottom: 8px;
            color: var(--text);
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 28px;
            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;
        }

        /* 时间轴设计 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 34px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 8px;
            bottom: 8px;
            left: 12px;
            width: 3px;
            background: var(--border);
            border-radius: 3px;
        }
        .timeline-step {
            position: relative;
            margin-bottom: 26px;
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .timeline-step:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }
        .timeline-step::before {
            content: '';
            position: absolute;
            top: 22px;
            left: -28px;
            width: 14px;
            height: 14px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 0 5px var(--accent-light);
            z-index: 2;
        }
        .timeline-step .step-num {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 6px;
            display: block;
        }
        .timeline-step h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .timeline-step p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 配置文件解剖室 */
        .anatomy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .anatomy-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 22px 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .anatomy-card pre {
            background: #1e1e2f;
            color: #e2e4f0;
            padding: 16px;
            border-radius: var(--radius-sm);
            font-size: 0.82rem;
            overflow-x: auto;
            line-height: 1.5;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            margin: 0;
        }
        .anatomy-card .explain-title {
            font-weight: 700;
            color: var(--accent);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        .anatomy-card .explain-text {
            font-size: 0.86rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 常见错误 FAQ */
        .error-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 14px;
            max-width: 900px;
            margin: 0 auto;
        }
        .error-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            padding: 20px 18px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .error-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }
        .error-card h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .error-card .error-solution {
            font-size: 0.84rem;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
            margin-top: 8px;
        }
        .error-card.open .error-solution {
            display: block;
        }

        /* 推荐内链 */
        .recommend-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            margin-top: 12px;
        }
        .rec-link-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            flex: 1 1 200px;
            text-align: center;
        }
        .rec-link-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .rec-link-card .rec-icon {
            font-size: 1.6rem;
            margin-bottom: 6px;
        }
        .rec-link-card h4 {
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text);
        }
        .rec-link-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* 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;
        }

        @media (max-width: 900px) {
            .anatomy-grid {
                grid-template-columns: 1fr;
            }
            .nav-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-links {
                gap: 4px;
                font-size: 0.82rem;
            }
            .nav-links a {
                padding: 6px 11px;
            }
            .timeline {
                padding-left: 24px;
            }
            .timeline-step::before {
                left: -20px;
                width: 12px;
                height: 12px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .recommend-row {
                flex-direction: column;
            }
        }