:root {
            --bg: #fdfcfd;
            --surface: #ffffff;
            --text-main: #2d2438;
            --text-muted: #6b6378;
            --primary: #9c63d9;
            --primary-dark: #7a46b5;
            --primary-light: rgba(156, 99, 217, 0.1);
            --radius: 14px;
            --radius-lg: 24px;
            --shadow-soft: 0 8px 24px rgba(156, 99, 217, 0.06);
            --shadow-hover: 0 16px 40px rgba(156, 99, 217, 0.12);
            --shadow-deep: 0 30px 60px rgba(0,0,0,0.4);
            --transition: all 0.15s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        /* 导航栏样式 (严格继承) */
        .thread {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(253, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(156, 99, 217, 0.1);
        }

        .helm {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .seal {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .seal img {
            height: 32px;
            width: auto;
            display: block;
        }

        .vein {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

        .rune {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 0.5rem 0;
            position: relative;
        }

        .rune:hover {
            color: var(--primary);
        }

        .rune.active {
            color: var(--primary);
            font-weight: 600;
        }

        .rune.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .vein {
                width: 100%;
                justify-content: center;
                gap: 1rem;
            }
        }

        /* 主内容区骨架 */
        .vault-vault {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .wire {
            max-width: 1000px;
            margin: 0 auto;
            padding: 6rem 2rem;
            width: 100%;
        }

        /* Hero区 (Glory) - 杂志专题封面感 */
        .glory-intro {
            background: linear-gradient(145deg, #181124, #2a1b41, #4d2b7d);
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .glory-intro::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(156, 99, 217, 0.4) 0%, transparent 60%);
            pointer-events: none;
        }

        .glory-wire {
            max-width: 1000px;
            margin: 0 auto;
            padding: 8rem 2rem 6rem;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .spark-hush {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: #e0d4f5;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            backdrop-filter: blur(4px);
            letter-spacing: 0.05em;
        }

        .lens-flare {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            white-space: normal;
        }

        .aura-lead {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            line-height: 1.8;
            word-break: keep-all;
        }

        /* 代理配置区 (Steps/Guide) */
        .cove-proxy {
            background-color: var(--surface);
            border-bottom: 1px solid var(--primary-light);
        }

        .lens-core {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 3rem;
            text-align: center;
            white-space: normal;
        }

        .echo-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .tome-proxy {
            flex: 1 1 400px;
            min-width: 0;
            background: var(--bg);
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            border: 1px solid var(--primary-light);
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .tome-proxy:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
            border-color: rgba(156, 99, 217, 0.3);
        }

        .glyph-wrap {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--surface);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: 0 4px 12px rgba(156, 99, 217, 0.1);
            color: var(--primary);
        }

        .lens-sub {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .aura-step {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .spark-param {
            background: var(--surface);
            padding: 1rem;
            border-radius: 8px;
            width: 100%;
            border-left: 3px solid var(--primary);
            font-size: 0.9rem;
            color: var(--text-main);
        }

        .spark-param strong {
            display: block;
            margin-bottom: 0.3rem;
            color: var(--primary-dark);
        }

        /* 直连节点与路由解析 (Article/Acquire) */
        .nest-direct {
            background-color: var(--bg);
            position: relative;
        }
        
        .nest-direct::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
        }

        .pane-article {
            max-width: 800px;
            margin: 0 auto;
            background: var(--surface);
            padding: 4rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
        }

        .pane-article .lens-core {
            text-align: left;
            margin-bottom: 2rem;
        }

        .aura-paragraph {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 1.8rem;
            text-align: justify;
            word-break: keep-all;
        }
        
        .aura-paragraph:last-child {
            margin-bottom: 0;
        }

        .aura-paragraph strong {
            color: var(--text-main);
        }

        .spark-meta {
            font-size: 0.85rem;
            color: #a09ba8;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px dashed var(--primary-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* 故障排查 (FAQ/Aside) */
        .vault-faq {
            background-color: var(--surface);
        }

        .echo-faq {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .die-faq {
            background: var(--bg);
            border: 1px solid var(--primary-light);
            border-radius: var(--radius);
            padding: 2rem;
            transition: var(--transition);
        }

        .die-faq:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(156, 99, 217, 0.05);
        }

        .lens-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            white-space: normal;
        }

        .lens-question::before {
            content: 'Q';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 6px;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .aura-answer {
            color: var(--text-muted);
            padding-left: calc(28px + 1rem);
        }

        /* 页脚区域 */
        .mark-gen {
            background: #181124;
            color: #ffffff;
            padding: 4rem 2rem;
            text-align: center;
        }

        .roots-brand {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .roots-aura {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .wire {
                padding: 4rem 1.5rem;
            }
            .glory-wire {
                padding: 6rem 1.5rem 4rem;
            }
            .pane-article {
                padding: 2rem 1.5rem;
            }
            .lens-core {
                font-size: 1.8rem;
            }
            .die-faq {
                padding: 1.5rem;
            }
        }

.xun-thread {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.xun-thread,
.xun-thread *,
.xun-thread *::before,
.xun-thread *::after {
    box-sizing: border-box;
}

.xun-thread nav,
.xun-thread div,
.xun-thread section,
.xun-thread article,
.xun-thread aside,
.xun-thread p,
.xun-thread h1,
.xun-thread h2,
.xun-thread h3,
.xun-thread h4,
.xun-thread h5,
.xun-thread h6,
.xun-thread a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.xun-thread p,
.xun-thread h1,
.xun-thread h2,
.xun-thread h3,
.xun-thread h4,
.xun-thread h5,
.xun-thread h6 {
    text-decoration: none;
}

.xun-thread img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.xun-thread {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.xun-thread a.xun-rune {
    --aisite-shell-nav-padding: 0.5rem 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.xun-thread a.xun-rune,
.xun-thread a.xun-rune:hover,
.xun-thread a.xun-rune:focus,
.xun-thread a.xun-rune:active,
.xun-thread a.xun-rune.active,
.xun-thread a.xun-rune[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.xun-thread .xun-helm{
            display: flex;
            flex-wrap: wrap;
        }

.xun-thread .xun-helm > *{
            min-width: 0;
        }

.xun-thread{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid rgba(156, 99, 217, 0.1);
        }

.xun-thread .xun-helm{
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            justify-content: space-between;
            align-items: center;
        }

.xun-thread .xun-seal{
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

.xun-thread .xun-seal img{
            height: 32px;
            width: auto;
            display: block;
        }

.xun-thread .xun-vein{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.xun-thread .xun-rune{
            font-size: 0.95rem;
            font-weight: 500;
            color: #6b6378;
            padding: 0.5rem 0;
            position: relative;
        }

.xun-thread .xun-rune:hover, .xun-thread .xun-rune.active{
            color: #9c63d9;
        }

.xun-thread .xun-rune.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #9c63d9;
            border-radius: 2px;
        }

@media (max-width: 768px){.xun-thread .xun-helm{
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

.xun-thread .xun-vein{
                justify-content: center;
                gap: 1rem;
            }}

.xun-thread {
    background: rgb(255, 255, 255);
    background-image: none;
}

.gen-mark {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.gen-mark,
.gen-mark *,
.gen-mark *::before,
.gen-mark *::after {
    box-sizing: border-box;
}

.gen-mark nav,
.gen-mark div,
.gen-mark section,
.gen-mark article,
.gen-mark aside,
.gen-mark p,
.gen-mark h1,
.gen-mark h2,
.gen-mark h3,
.gen-mark h4,
.gen-mark h5,
.gen-mark h6,
.gen-mark a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.gen-mark p,
.gen-mark h1,
.gen-mark h2,
.gen-mark h3,
.gen-mark h4,
.gen-mark h5,
.gen-mark h6 {
    text-decoration: none;
}

.gen-mark img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.gen-mark {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.gen-mark a,
.gen-mark a:hover,
.gen-mark a:focus,
.gen-mark a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.gen-mark .gen-roots{
            display: flex;
            flex-wrap: wrap;
        }

.gen-mark .gen-roots > *{
            min-width: 0;
        }

.gen-mark{
            background: #110d18;
            color: #8c8599;
            padding: 4rem 2rem 2rem;
            margin-top: auto;
        }

.gen-mark .gen-roots{
            max-width: 1280px;
            margin: 0 auto;
            justify-content: space-between;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            align-items: center;
        }

.gen-mark .gen-roots-brand{
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
        }

.gen-mark .gen-roots-links{
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
        }

.gen-mark .gen-roots-links a:hover{
            color: #ffffff;
        }

@media (max-width: 768px){.gen-mark .gen-roots{
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }}