/* 变量定义 - 继承自首页视觉家族 */
        :root {
            --brand-primary: #43ea51;
            --brand-dark: #2bc138;
            --text-main: #1c231e;
            --text-muted: #5a6660;
            --bg-surface: #ffffff;
            --bg-body: #f4f6f5;
            --bg-alt: #e9ecea;
            --radius-md: 9px;
            --radius-lg: 13px;
            --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
            --shadow-float: 0 12px 40px rgba(67, 234, 81, 0.15);
            --shadow-border: 0 1px 3px rgba(0,0,0,0.05);
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition-speed: 0.25s ease;
        }

        /* 基础重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* 全局排版及交互规范 */
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-speed);
        }

        /* 强制Flex规范 */
        .flex-cluster {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-cluster > * {
            min-width: 0;
        }

        /* 强制文本规范 */
        .echo, .apex-huge, .apex-large, .apex-medium {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 强制导航栏复用样式 (原样保留) */
        .crown {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--bg-alt);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .helm {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 5vw;
            align-items: center;
            justify-content: space-between;
        }

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

        .array {
            gap: 2rem;
            align-items: center;
        }

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

        .wire:hover {
            color: var(--text-main);
        }

        .wire.active {
            color: var(--text-main);
        }

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

        /* 页面骨架与容器 */
        .tunnel {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 5vw 6rem;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .veil {
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
        }

        /* 标题尺度 */
        .apex-huge {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #0a0f0b;
            white-space: normal;
        }

        .apex-large {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: #0a0f0b;
            white-space: normal;
        }

        .apex-medium {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        /* 文本生态 */
        .echo {
            font-size: 1.1rem;
            color: var(--text-main);
            word-break: keep-all;
            margin-bottom: 1rem;
        }

        .echo-muted {
            font-size: 1rem;
            color: var(--text-muted);
            word-break: keep-all;
        }

        /* 模块 1: 节点与订阅管理 (Hero Intro) */
        .flare {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-alt) 100%);
            border-radius: var(--radius-lg);
            padding: 5rem 4rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-border);
            margin-top: 2rem;
        }

        .flare .veil {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .flare-echo {
            z-index: 2;
            position: relative;
        }

        .flare-lens {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* SVG 抽象图形装饰 */
        .flare-glyph {
            width: 100%;
            max-width: 320px;
            height: auto;
            filter: drop-shadow(var(--shadow-float));
        }

        /* 卡片面板语法 */
        .shard {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(0,0,0,0.04);
            padding: 2.5rem;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            height: 100%;
        }

        .shard:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        /* 模块 2: 剪贴板快速导入 (Context) */
        .nexus {
            padding: 2rem 0;
        }

        .nexus .flex-cluster {
            gap: 3rem;
            align-items: stretch;
        }

        .nexus .packet {
            flex: 1;
            min-width: 300px;
        }

        .lane {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--bg-alt);
        }

        .lane:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .lane-glyph {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--bg-alt);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-dark);
        }

        /* 模块 3: 配置订阅URL (Detail Section) */
        .vault {
            background: var(--bg-surface);
            border-radius: var(--radius-lg);
            padding: 4rem;
            box-shadow: var(--shadow-border);
        }
        
        .vault-apex {
            text-align: center;
            margin-bottom: 3rem;
        }

        .node-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
        }

        .node {
            background: var(--bg-body);
            padding: 2rem;
            border-radius: var(--radius-md);
            position: relative;
            border: 1px solid transparent;
            transition: border-color var(--transition-speed);
        }

        .node:hover {
            border-color: var(--brand-primary);
        }

        .node-step {
            position: absolute;
            top: -15px;
            left: 2rem;
            background: var(--brand-primary);
            color: #0a0f0b;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(67, 234, 81, 0.3);
        }

        /* 模块 4: 测试与选择节点 (Detail Aside) */
        .depth {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
            padding: 2rem 0;
        }

        .data-ui {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--bg-alt);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        .data-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--bg-alt);
        }

        .data-row:last-child {
            border-bottom: none;
        }

        .data-row:hover {
            background: var(--bg-body);
        }

        .status-spark {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: monospace;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .spark-green { color: #2e8b57; }
        .spark-yellow { color: #d2691e; }
        .spark-red { color: #cd5c5c; }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        .dot-green { background-color: var(--brand-primary); box-shadow: 0 0 8px var(--brand-primary); }
        .dot-yellow { background-color: #ffd700; }
        .dot-red { background-color: #ff6347; }

        /* 模块 5: 订阅更新失败排查 (FAQ Aside) */
        .root {
            background: #fff8f5;
            border-radius: var(--radius-lg);
            padding: 4rem;
            border-left: 6px solid #ff8c00;
        }

        .drop-cluster {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .drop {
            background: var(--bg-surface);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        /* 按钮语法 */
        .pulse {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            background-color: var(--brand-primary);
            color: #0a0f0b;
            font-weight: 700;
            border-radius: var(--radius-md);
            border: 2px solid var(--brand-primary);
            margin-top: 2rem;
            text-align: center;
            cursor: pointer;
        }

        .pulse:hover {
            background-color: var(--brand-dark);
            border-color: var(--brand-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-float);
        }

        /* 页脚区域 */
        .sole {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--bg-alt);
            padding: 4rem 5vw;
            margin-top: auto;
        }

        .base {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .base-apex {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        .base-echo {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .base-array {
            display: flex;
            gap: 1.5rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .flare {
                padding: 4rem 2rem;
            }
            .flare .veil {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .flare-lens {
                display: none; /* 平板隐藏插画，突出内容 */
            }
            .depth {
                grid-template-columns: 1fr;
            }
            .vault, .root {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 1.5rem;
            }
            .array {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            .nexus .flex-cluster {
                flex-direction: column;
            }
            .base {
                flex-direction: column;
                text-align: center;
            }
            .tunnel {
                padding: 1rem 5vw 4rem;
                gap: 3rem;
            }
            .apex-huge {
                font-size: 2rem;
            }
        }

.helm-crown {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-main);
}
.helm-crown,
.helm-crown *,
.helm-crown *::before,
.helm-crown *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-crown a.helm-wire {
    --aisite-shell-nav-padding: 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;
}

.helm-crown a.helm-wire,
.helm-crown a.helm-wire:hover,
.helm-crown a.helm-wire:focus,
.helm-crown a.helm-wire:active,
.helm-crown a.helm-wire.active,
.helm-crown a.helm-wire[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);
}

.helm-crown .helm-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.helm-crown .helm-flex-cluster{
            display: flex;
            flex-wrap: wrap;
        }

.helm-crown .helm-flex-cluster > *{
            min-width: 0;
        }

.helm-crown{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

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

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

.helm-crown .helm-array{
            gap: 2rem;
            align-items: center;
        }

.helm-crown .helm-wire{
            text-decoration: none;
            color: #1c231e;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
        }

.helm-crown .helm-wire:hover, .helm-crown .helm-wire.active{
            color: #43ea51;
        }

.helm-crown .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #43ea51;
            border-radius: 2px;
        }

.helm-crown {
    background: rgb(255, 255, 255);
    background-image: none;
}

.base-sole {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-main);
}
.base-sole,
.base-sole *,
.base-sole *::before,
.base-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-sole .base-echo, .base-sole .base-wire{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.base-sole p.base-echo{
            word-break: keep-all;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

.base-sole .base-wire{
            text-decoration: none;
            color: #1c231e;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
        }

.base-sole .base-wire:hover, .base-sole .base-wire.active{
            color: #43ea51;
        }

.base-sole .base-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #43ea51;
            border-radius: 2px;
        }

.base-sole{
            background-color: #1c231e;
            color: #e9ecea;
            padding: 4rem 5vw 2rem;
            margin-top: 6rem;
        }

.base-sole .base-sole-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            max-width: 1280px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 3rem;
        }

.base-sole .base-root-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

.base-sole .base-sole-links{
            list-style: none;
        }

.base-sole .base-sole-links li{
            margin-bottom: 0.8rem;
        }

.base-sole .base-sole-links .base-wire{
            color: #a0aba5;
            font-size: 0.9rem;
        }

.base-sole .base-sole-links .base-wire:hover{
            color: #43ea51;
        }

.base-sole .base-sole-echo{
            text-align: center;
            padding-top: 2rem;
            font-size: 0.85rem;
            color: #5a6660;
        }

@media (max-width: 768px){.base-sole .base-sole-grid{
                grid-template-columns: 1fr;
                gap: 2rem;
            }}