        /* ===== SafeW 隐私手册 创意 CSS ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #0b0713;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            background-image:
                radial-gradient(ellipse 60% 40% at 15% 0%, rgba(124, 58, 237, 0.22), transparent 60%),
                radial-gradient(ellipse 50% 35% at 85% 10%, rgba(59, 130, 246, 0.18), transparent 60%),
                radial-gradient(ellipse 40% 30% at 50% 100%, rgba(168, 85, 247, 0.08), transparent 70%);
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航样式（与首页/下载页一致） */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 7, 19, 0.8);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 32px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            flex-shrink: 0;
            letter-spacing: -0.5px;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #a855f7, #6366f1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
            transition: transform 0.3s ease;
        }
        .logo:hover .logo-icon {
            transform: rotate(-5deg) scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 28px;
            font-size: 15px;
            color: #cbd5e1;
        }
        .main-nav a {
            position: relative;
            transition: color 0.2s;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .main-nav a:hover {
            color: #ffffff;
        }
        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #a855f7, #3b82f6);
            transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            border-radius: 2px;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .main-nav a.active-nav {
            color: #ffffff;
        }
        .main-nav a.active-nav::after {
            width: 100%;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }
        .lang-select {
            font-size: 14px;
            color: #cbd5e1;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-small {
            padding: 10px 20px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            backdrop-filter: blur(8px);
        }
        .btn-small:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-1px);
        }
        .btn-primary {
            padding: 14px 30px;
            font-size: 16px;
            background: linear-gradient(135deg, #a855f7, #3b82f6);
            border: none;
            color: #fff;
            box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }
        .btn-primary:hover::before {
            left: 100%;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 38px rgba(124, 58, 237, 0.55);
        }
        .btn-secondary {
            padding: 14px 28px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            backdrop-filter: blur(8px);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-2px);
        }
        /* 通用 section 标题 */
        .section-heading {
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }
        .section-heading h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
            line-height: 1.3;
        }
        .section-heading p {
            color: #94a3b8;
            font-size: 16px;
        }
        /* ===== 教程页特色样式 ===== */
        .tutorial-hero {
            padding: 90px 0 70px;
            text-align: center;
            position: relative;
        }
        .tutorial-hero::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 220px;
            background: radial-gradient(ellipse, rgba(168,85,247,0.15), transparent 70%);
            pointer-events: none;
        }
        .hero-badge-guide {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 999px;
            background: rgba(168, 85, 247, 0.12);
            border: 1px solid rgba(168, 85, 247, 0.35);
            font-size: 13px;
            color: #d8b4fe;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }
        .hero-badge-guide .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 14px rgba(16, 185, 129, 0.9);
        }
        .tutorial-hero h1 {
            font-size: clamp(2.4rem, 5.5vw, 4rem);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }
        .gradient-text {
            background: linear-gradient(90deg, #c084fc, #60a5fa, #a855f7);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }
        @keyframes gradientShift {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }
        .tutorial-hero .sub-desc {
            max-width: 760px;
            margin: 0 auto 40px;
            color: #a0aec0;
            font-size: 17px;
            line-height: 1.8;
        }
        .step-overview {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .step-chip {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 999px;
            padding: 8px 18px;
            font-size: 14px;
            color: #cbd5e1;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }
        .step-chip:hover {
            background: rgba(168,85,247,0.15);
            border-color: rgba(168,85,247,0.4);
            color: #fff;
        }
        .step-chip .num {
            background: rgba(168,85,247,0.3);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 12px;
        }
        /* 步骤详情 */
        .detailed-steps {
            padding: 70px 0;
        }
        .step-block {
            display: flex;
            gap: 30px;
            margin-bottom: 60px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 24px;
            padding: 40px 32px;
            transition: all 0.3s;
            position: relative;
        }
        .step-block:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .step-block .step-index {
            font-size: 48px;
            font-weight: 900;
            color: rgba(168, 85, 247, 0.4);
            line-height: 1;
            min-width: 50px;
            text-align: center;
        }
        .step-content {
            flex: 1;
        }
        .step-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .step-content h3 .icon {
            font-size: 24px;
        }
        .step-content p {
            color: #94a3b8;
            font-size: 15px;
            margin-bottom: 18px;
            line-height: 1.7;
        }
        .settings-path {
            background: rgba(0, 0, 0, 0.25);
            border: 1px dashed rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 12px 16px;
            font-family: 'SF Mono', 'Courier New', monospace;
            font-size: 13px;
            color: #cbd5e1;
            margin-bottom: 16px;
            word-break: break-all;
        }
        .settings-path .label {
            color: #a855f7;
            font-weight: 700;
            margin-right: 8px;
        }
        .step-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .step-tag {
            background: rgba(168,85,247,0.1);
            border: 1px solid rgba(168,85,247,0.25);
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            color: #d8b4fe;
        }
        /* 隐私体检清单 */
        .checklist-section {
            padding: 80px 0;
            background: rgba(255,255,255,0.02);
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .checklist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .checklist-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 24px 20px;
            transition: all 0.3s;
        }
        .checklist-card:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.2);
        }
        .checklist-card .check-icon {
            font-size: 28px;
            margin-bottom: 12px;
        }
        .checklist-card h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .checklist-card p {
            font-size: 13px;
            color: #94a3b8;
        }
        .checklist-card .status {
            display: inline-block;
            margin-top: 12px;
            font-size: 12px;
            font-weight: 600;
            color: #10b981;
            background: rgba(16,185,129,0.1);
            padding: 4px 10px;
            border-radius: 999px;
        }
        .checklist-card .status.warning {
            color: #f59e0b;
            background: rgba(245,158,11,0.1);
        }
        /* 专家提示 */
        .expert-tips {
            padding: 80px 0;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .tip-card {
            background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(59,130,246,0.08));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s;
        }
        .tip-card:hover {
            background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(59,130,246,0.15));
            border-color: rgba(255,255,255,0.2);
        }
        .tip-card .tip-icon {
            font-size: 30px;
            margin-bottom: 14px;
        }
        .tip-card h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .tip-card p {
            font-size: 14px;
            color: #cbd5e1;
        }
        /* 常见误区 */
        .misconception-section {
            padding: 80px 0;
            background: rgba(255,255,255,0.02);
            border-radius: 32px;
            max-width: 1000px;
            margin: 0 auto 80px;
        }
        .misconception-list {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .misconception-item {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .misconception-item .wrong {
            color: #f87171;
            font-weight: 700;
            min-width: 60px;
        }
        .misconception-item .right {
            color: #10b981;
            font-weight: 700;
            min-width: 60px;
        }
        .misconception-item p {
            color: #94a3b8;
            font-size: 14px;
        }
        /* FAQ */
        .faq-section {
            padding: 80px 0;
        }
        .faq-list {
            max-width: 800px;
            margin: 40px auto 0;
        }
        details {
            margin-bottom: 16px;
            background: rgba(255,255,255,0.04);
            border-radius: 14px;
            padding: 18px 24px;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.2s;
        }
        details:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.15);
        }
        summary {
            font-weight: 600;
            cursor: pointer;
            outline: none;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        summary::before {
            content: "＋";
            font-weight: 700;
            color: #a855f7;
            font-size: 18px;
        }
        details[open] summary::before {
            content: "－";
        }
        details p {
            color: #94a3b8;
            margin-top: 12px;
            padding-left: 30px;
        }
        /* 最终CTA */
        .final-cta-guide {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(59, 130, 246, 0.12));
            border-radius: 40px;
            max-width: 900px;
            margin: 0 auto 100px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .final-cta-guide h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 14px;
        }
        .final-cta-guide p {
            color: #a0aec0;
            margin-bottom: 28px;
        }
        /* 页脚 */
        .site-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            background: #08050d;
            padding: 60px 0 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-brand .logo { margin-bottom: 16px; }
        .footer-brand p { color: #94a3b8; font-size: 14px; max-width: 260px; }
        .footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-col ul li, .footer-col ul li a { font-size: 14px; color: #94a3b8; transition: color 0.2s; }
        .footer-col ul li a:hover { color: #ffffff; }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 13px;
            color: #64748b;
        }
        /* 响应式 */
        @media (max-width: 992px) {
            .main-nav { display: none; }
            .step-block { flex-direction: column; }
            .tips-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 640px) {
            .step-overview { gap: 8px; }
            .step-chip { font-size: 12px; padding: 6px 12px; }
            .checklist-grid { grid-template-columns: 1fr; }
            .misconception-item { flex-direction: column; gap: 8px; }
            .footer-grid { grid-template-columns: 1fr; }
        }