/* 变量与基础系统 - 继承首页视觉契约 */
        :root {
            --brand-primary: #8264f2;
            --brand-primary-hover: #6a4bd8;
            --brand-secondary: #00d2ff;
            --bg-page: #f8f9fe;
            --bg-surface: #ffffff;
            --bg-surface-alt: #ece9ff;
            --text-main: #1a1528;
            --text-muted: #6b6280;
            --text-inverse: #ffffff;
            --border-light: rgba(130, 100, 242, 0.15);
            --border-strong: rgba(130, 100, 242, 0.3);
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 8px;
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 20px 40px rgba(130, 100, 242, 0.12);
            --transition-base: all 0.25s ease;
            --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body, html {
            margin: 0;
            padding: 0;
            background-color: var(--bg-page);
            color: var(--text-main);
            font-family: var(--font-family-base);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 强制换行与Flex保护规范 */
        .break-yarn {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .cjk-yarn {
            word-break: keep-all;
            overflow-wrap: break-word;
        }
        
        /* 强制导航栏样式复用（严格匹配给定的类名和结构） */
        .apex-zone {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
        }
        
        .sync-mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .sync-mesh > * {
            min-width: 0;
        }

        .crest {
            display: flex;
            align-items: center;
        }

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

        .sync-array {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

        .sync-array > * {
            min-width: 0;
        }

        .xwave-bond {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition-base);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
        }

        .xwave-bond:hover,
        .xwave-bond:focus {
            color: var(--brand-primary);
            background: var(--bg-surface-alt);
        }

        .xwave-bond.active {
            color: var(--brand-primary);
            font-weight: 700;
            background: rgba(130, 100, 242, 0.08);
        }

        /* 页面级通用容器 */
        .pulse-realm {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* 1. XChat 进阶配置指南 (Hero/Intro) - 垂直堆叠变体 */
        .shout-zone {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            background: linear-gradient(135deg, #f8f9fe 0%, #ece9ff 100%);
            padding: 80px 24px 60px;
            position: relative;
            overflow: hidden;
        }

        .shout-zone::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(130, 100, 242, 0.05) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(-15deg);
            pointer-events: none;
        }

        .shout-mesh {
            max-width: 840px; /* 阅读版心 */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .shout-mesh > * {
            min-width: 0;
        }

        .flare-peak {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-main);
            margin: 0 0 24px 0;
            white-space: normal;
        }

        .flare-peak span {
            background: linear-gradient(120deg, var(--brand-primary), var(--brand-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .yarn-apex {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 0 32px 0;
            line-height: 1.8;
        }

        .pip-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .pip-cluster > * {
            min-width: 0;
        }

        .tag-speck {
            padding: 6px 16px;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--brand-primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        /* 2. 彻底解决中文乱码问题 (Step Guide) */
        .faq-zone {
            padding: 80px 24px;
            background: var(--bg-surface);
            display: flex;
            flex-wrap: wrap;
        }

        .faq-mesh {
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .faq-mesh > * {
            min-width: 0;
        }

        .pulse-peak {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-main);
            margin: 0 0 16px 0;
            text-align: center;
        }

        .yarn-desc {
            font-size: 1.125rem;
            color: var(--text-muted);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px auto;
        }

        .packet-array {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .packet-shell {
            background: var(--bg-page);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            border: 1px solid var(--border-light);
            position: relative;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
        }
        
        .packet-shell > * {
            min-width: 0;
        }

        .packet-shell:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-strong);
            background: var(--bg-surface);
        }

        .glyph-lens {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: rgba(130, 100, 242, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--brand-primary);
        }

        .glyph-lens svg {
            width: 28px;
            height: 28px;
        }

        .packet-peak {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: var(--text-main);
        }

        .packet-yarn {
            color: var(--text-muted);
            font-size: 0.95rem;
            flex-grow: 1;
            margin: 0 0 20px 0;
        }

        .path-band {
            background: var(--bg-surface-alt);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--brand-primary-hover);
            border-left: 3px solid var(--brand-primary);
            word-break: break-all;
        }

        /* 3. 代理与网络穿透配置 (Settings Panel) */
        .pathway-zone {
            padding: 80px 24px;
            background: linear-gradient(to bottom, var(--bg-page) 0%, #f0ecff 100%);
            display: flex;
            flex-wrap: wrap;
        }

        .pathway-mesh {
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .pathway-mesh > * {
            min-width: 0;
        }

        .pathway-yarn {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
        }
        
        .pathway-yarn > * {
            min-width: 0;
        }

        .pathway-peak {
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 20px 0;
        }

        .blip-shell {
            flex: 1 1 450px;
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-light);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .blip-shell > * {
            min-width: 0;
        }

        .blip-apex {
            background: var(--bg-surface-alt);
            padding: 16px 24px;
            border-bottom: 1px solid var(--border-light);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .blip-apex > * {
            min-width: 0;
        }

        .blip-apex svg {
            color: var(--brand-primary);
        }

        .blip-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .blip-body > * {
            min-width: 0;
        }

        .blip-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px dashed var(--border-light);
            gap: 16px;
        }

        .blip-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .blip-row > * {
            min-width: 0;
        }

        .blip-pip {
            font-weight: 500;
            color: var(--text-main);
        }

        .blip-value {
            color: var(--brand-primary);
            font-family: monospace;
            background: var(--bg-page);
            padding: 4px 12px;
            border-radius: var(--radius-sm);
        }

        /* 4. 自定义快捷键提升效率 (Shortcut Table) */
        .closing-zone {
            padding: 80px 24px;
            background: var(--bg-surface);
            display: flex;
            flex-wrap: wrap;
        }

        .closing-mesh {
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .closing-mesh > * {
            min-width: 0;
        }
        
        .chime-cluster {
            margin-top: 32px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

        .chime-cluster > * {
            min-width: 0;
        }

        .chime-band {
            display: flex;
            flex-wrap: wrap;
            padding: 20px 24px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-light);
            transition: background 0.2s ease;
            align-items: center;
        }

        .chime-band:last-child {
            border-bottom: none;
        }

        .chime-band:nth-child(even) {
            background: var(--bg-page);
        }

        .chime-band:hover {
            background: var(--bg-surface-alt);
        }

        .chime-band > * {
            min-width: 0;
        }

        .chime-nudge {
            flex: 1 1 200px;
            font-weight: 600;
            color: var(--text-main);
        }

        .chime-keys {
            flex: 1 1 300px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .chime-keys > * {
            min-width: 0;
        }

        .key-speck {
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-bottom-width: 3px;
            border-radius: 6px;
            padding: 4px 10px;
            font-family: inherit;
            font-size: 0.85rem;
            color: #374151;
            font-weight: 600;
            display: inline-block;
        }

        .chime-note {
            flex: 1 1 200px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* 页脚区域 */
        .root-base {
            background: #1a1528;
            padding: 60px 24px 40px;
            color: #a099b0;
            display: flex;
            flex-wrap: wrap;
        }

        .root-mesh {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 24px;
        }

        .root-mesh > * {
            min-width: 0;
        }

        .root-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            display: inline-block;
        }

        .anchor-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .anchor-cluster > * {
            min-width: 0;
        }

        .anchor-array {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .anchor-array > * {
            min-width: 0;
        }

        .anchor-peak {
            color: #ffffff;
            font-weight: 600;
            margin: 0 0 8px 0;
            font-size: 1.05rem;
        }

        .anchor-bond {
            color: #a099b0;
            text-decoration: none;
            transition: color 0.2s ease;
            font-size: 0.95rem;
        }

        .anchor-bond:hover {
            color: var(--brand-secondary);
        }

        .echo-band {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .echo-band > * {
            min-width: 0;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .sync-array {
                display: none; /* 移动端通常隐藏或折叠，此处简化处理 */
            }
            .flare-peak {
                font-size: 2rem;
            }
            .packet-array {
                grid-template-columns: 1fr;
            }
            .pathway-mesh {
                flex-direction: column;
            }
            .blip-shell {
                width: 100%;
            }
            .chime-band {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }

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

.sync-apex-zone [role="navigation"],
.sync-apex-zone div,
.sync-apex-zone section,
.sync-apex-zone article,
.sync-apex-zone aside,
.sync-apex-zone p,
.sync-apex-zone h1,
.sync-apex-zone h2,
.sync-apex-zone h3,
.sync-apex-zone h4,
.sync-apex-zone h5,
.sync-apex-zone h6,
.sync-apex-zone a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.sync-apex-zone p,
.sync-apex-zone h1,
.sync-apex-zone h2,
.sync-apex-zone h3,
.sync-apex-zone h4,
.sync-apex-zone h5,
.sync-apex-zone h6 {
    text-decoration: none;
}

.sync-apex-zone img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.sync-apex-zone {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.sync-apex-zone a.sync-xwave-bond {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.sync-apex-zone a.sync-xwave-bond,
.sync-apex-zone a.sync-xwave-bond:hover,
.sync-apex-zone a.sync-xwave-bond:focus,
.sync-apex-zone a.sync-xwave-bond:active,
.sync-apex-zone a.sync-xwave-bond.active,
.sync-apex-zone a.sync-xwave-bond[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);
}

.sync-apex-zone{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(130, 100, 242, 0.1);
        }

.sync-apex-zone .sync-sync-mesh{
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

.sync-apex-zone .sync-crest{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.sync-apex-zone .sync-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.sync-apex-zone .sync-sync-array{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

.sync-apex-zone .sync-xwave-bond{
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #6b6280;
            border-radius: 8px;
            transition: all 0.25s ease;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.sync-apex-zone .sync-xwave-bond:hover, .sync-apex-zone .sync-xwave-bond.active{
            color: #8264f2;
            background: rgba(130, 100, 242, 0.08);
        }

@media (max-width: 768px){.sync-apex-zone .sync-sync-array{
                display: none; 
            }}

.sync-apex-zone {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

.base-base-root [role="navigation"],
.base-base-root div,
.base-base-root section,
.base-base-root article,
.base-base-root aside,
.base-base-root p,
.base-base-root h1,
.base-base-root h2,
.base-base-root h3,
.base-base-root h4,
.base-base-root h5,
.base-base-root h6,
.base-base-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.base-base-root{
            background: #110d1a;
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

.base-base-root .base-base-mesh{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            min-width: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 60px;
            margin-bottom: 40px;
        }

.base-base-root .base-anchor-cluster{
            flex: 1;
            min-width: 240px;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            min-width: 0;
        }

.base-base-root .base-anchor-peak{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-base-root .base-anchor-yarn{
            line-height: 1.8;
            margin-bottom: 24px;
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

.base-base-root .base-anchor-array{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 16px;
            min-width: 0;
        }

.base-base-root .base-anchor-bond{
            color: inherit;
            transition: all 0.25s ease;
            word-break: break-word;
            overflow-wrap: break-word;
            align-self: flex-start;
        }

.base-base-root .base-anchor-bond:hover{
            color: #ffffff;
            padding-left: 4px;
        }

.base-base-root .base-echo-zone{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            min-width: 0;
        }

.base-base-root .base-echo-yarn{
            word-break: break-word;
            overflow-wrap: break-word;
        }

@media (max-width: 768px){.base-base-root .base-base-mesh{
                flex-direction: column;
            }}