/* 杂志专题型设计基因系统 */
        :root {
            --accent: #8d57d4;
            --accent-light: #f0e6ff;
            --accent-dark: #6c3db5;
            --bg: #f8f6fc;
            --bg-card: #ffffff;
            --bg-dark: #120e1a;
            --bg-dark-card: #1c1628;
            --text: #1f1b29;
            --text-light: #ffffff;
            --text-muted: #7d7593;
            --text-muted-dark: #a29aa7;
            --radius-sm: 4px;
            --radius-lg: 10px;
            --shadow: 0 10px 30px rgba(141, 87, 212, 0.08);
            --shadow-hover: 0 20px 40px rgba(141, 87, 212, 0.16);
            --transition: all 0.25s ease;
            --max-width: 1200px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

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

        code, kbd {
            font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
            background-color: var(--accent-light);
            color: var(--accent-dark);
            padding: 2px 6px;
            border-radius: var(--radius-sm);
            font-size: 0.9em;
        }

        kbd {
            background-color: #e8dff7;
            border: 1px solid #d4c2ee;
            box-shadow: 0 2px 0 rgba(141, 87, 212, 0.2);
            font-weight: 600;
        }

        /* 复用首页导航栏样式 (完全继承) */
        .spire {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(141, 87, 212, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .strada {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

        .glyph img {
            height: 36px;
            width: auto;
            display: block;
        }

        .nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin: 0 24px;
        }

        .nexus-tether {
            font-weight: 500;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
        }

        .nexus-tether:hover,
        .nexus-tether.active {
            color: var(--accent);
        }

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

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

        .warp-mini {
            font-weight: 600;
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            background-color: var(--accent-light);
            color: var(--accent);
            font-size: 14px;
        }

        .warp-mini:hover {
            background-color: var(--accent);
            color: var(--text-light);
            box-shadow: 0 4px 12px rgba(141, 87, 212, 0.2);
        }

        /* 主容器 */
        .sphere {
            width: 100%;
        }

        /* Hero展示区变体 - 杂志对角排版 (split_diagonal) */
        .apex {
            background-color: var(--bg-dark);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            padding: 80px 24px;
        }

        .apex::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(141, 87, 212, 0.15) 0%, rgba(18, 14, 26, 0) 100%);
            transform: skewX(-12deg);
            transform-origin: top right;
        }

        .conduit-apex {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .sheath-left {
            flex: 1;
            min-width: 320px;
            padding-right: 40px;
        }

        .seam-capsul {
            display: inline-block;
            background-color: rgba(141, 87, 212, 0.2);
            color: var(--accent-light);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 24px;
            border: 1px solid rgba(141, 87, 212, 0.3);
        }

        .vertex-primary {
            font-size: clamp(32px, 4.5vw, 52px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-light);
            letter-spacing: -0.5px;
            white-space: normal;
        }

        .scribe-lead {
            font-size: clamp(16px, 1.8vw, 18px);
            color: var(--text-muted-dark);
            margin-bottom: 36px;
            line-height: 1.6;
        }

        .cluster-spark {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .warp {
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            background-color: var(--accent);
            color: var(--text-light);
            box-shadow: 0 4px 15px rgba(141, 87, 212, 0.3);
            text-align: center;
        }

        .warp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(141, 87, 212, 0.5);
            background-color: var(--accent-dark);
        }

        .pulse {
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        .pulse:hover {
            background-color: rgba(255, 255, 255, 0.08);
            border-color: var(--text-light);
        }

        .sheath-right {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* 纯CSS创意几何图形 (代替图片) */
        .mirage-geometric {
            position: relative;
            width: 320px;
            height: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .shard-circle-1 {
            position: absolute;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(141,87,212,0.2) 0%, rgba(18,14,26,0) 70%);
            border: 2px dashed rgba(141, 87, 212, 0.3);
            animation: spin 30s linear infinite;
        }

        .shard-circle-2 {
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(141, 87, 212, 0.4) 0%, rgba(18, 14, 26, 0.2) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            box-shadow: var(--shadow);
        }

        .shard-matrix {
            position: absolute;
            width: 100px;
            height: 100px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .shard-matrix span {
            background-color: var(--accent);
            border-radius: 50%;
            opacity: 0.6;
            transition: var(--transition);
        }

        .mirage-geometric:hover .shard-matrix span {
            opacity: 1;
            transform: scale(1.2);
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        /* 模块共有：内容包装容器 */
        .conduit-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 80px 24px;
        }

        .seam-spire {
            margin-bottom: 50px;
            text-align: center;
        }

        .seam-spire-light {
            margin-bottom: 50px;
        }

        .vertex-secondary {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 800;
            line-height: 1.3;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .corona-dark .vertex-secondary {
            color: var(--text-light);
        }

        .scribe-body {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto;
        }

        .corona-dark .scribe-body {
            color: var(--text-muted-dark);
            margin: 0;
        }

        /* 区块一：理解 v2rayN 节点与订阅 (article) */
        .corona {
            background-color: var(--bg);
        }

        .matrix-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .capsul {
            flex: 1;
            min-width: 280px;
            background-color: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(141, 87, 212, 0.04);
            transition: var(--transition);
        }

        .capsul:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(141, 87, 212, 0.15);
        }

        .crest-sheath {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-lg);
            background-color: var(--accent-light);
            color: var(--accent);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .capsul:hover .crest-sheath {
            background-color: var(--accent);
            color: var(--text-light);
        }

        .crest-svg {
            width: 24px;
            height: 24px;
        }

        .vertex-tertiary {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 14px;
        }

        .scribe-detail {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 区块二：如何导入节点到 v2rayN (aside) */
        .aurora {
            background-color: var(--bg-card);
            border-top: 1px solid rgba(141, 87, 212, 0.06);
            border-bottom: 1px solid rgba(141, 87, 212, 0.06);
        }

        .matrix-steps {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .shard-step {
            display: flex;
            flex-wrap: wrap;
            background-color: var(--bg);
            border-radius: var(--radius-lg);
            padding: 30px;
            border: 1px solid rgba(141, 87, 212, 0.04);
            align-items: flex-start;
            gap: 24px;
            transition: var(--transition);
        }

        .shard-step:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow);
            border-color: rgba(141, 87, 212, 0.1);
        }

        .bead-num {
            font-size: 32px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            min-width: 50px;
        }

        .sheath-step-scribe {
            flex: 1;
            min-width: 250px;
        }

        .sheath-step-scribe .vertex-tertiary {
            margin-bottom: 8px;
        }

        /* 区块三：节点测速、选择与故障排查 (div) */
        .corona-dark {
            background-color: var(--bg-dark);
            color: var(--text-light);
        }

        .capsul-dark {
            flex: 1;
            min-width: 280px;
            background-color: var(--bg-dark-card);
            border-radius: var(--radius-lg);
            padding: 36px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: var(--transition);
        }

        .capsul-dark:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(141, 87, 212, 0.3);
        }

        .crest-sheath-accent {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-lg);
            background-color: rgba(141, 87, 212, 0.15);
            color: var(--accent-light);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .capsul-dark:hover .crest-sheath-accent {
            background-color: var(--accent);
            color: var(--text-light);
        }

        .vertex-tertiary-light {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
        }

        .scribe-detail-light {
            font-size: 15px;
            color: var(--text-muted-dark);
            line-height: 1.6;
        }

        .scribe-detail-light strong {
            color: var(--text-light);
        }

        /* 页脚 (wake) */
        .wake {
            background-color: var(--bg-dark);
            color: var(--text-light);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .bedrock {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 60px 24px 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .cluster-info {
            flex: 1 1 300px;
            min-width: 260px;
        }

        .scribe-wake-brand {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--text-light);
            display: block;
            margin-bottom: 16px;
        }

        .scribe-wake-desc {
            font-size: 14px;
            color: var(--text-muted-dark);
            line-height: 1.6;
            max-width: 320px;
        }

        .cluster-tether {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }

        .cluster-tether .tether {
            font-size: 15px;
            color: var(--text-muted-dark);
        }

        .cluster-tether .tether:hover,
        .cluster-tether .tether.active {
            color: var(--accent-light);
        }

        .seam-wake {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .scribe-copyright {
            font-size: 13px;
            color: var(--text-muted-dark);
        }

        /* 响应式断点 */
        @media (max-width: 992px) {
            .sheath-left {
                padding-right: 0;
                margin-bottom: 40px;
            }
            .mirage-geometric {
                width: 260px;
                height: 260px;
            }
            .shard-circle-1 {
                width: 200px;
                height: 200px;
            }
            .shard-circle-2 {
                width: 130px;
                height: 130px;
            }
        }

        @media (max-width: 768px) {
            .nexus {
                width: 100%;
                order: 3;
                justify-content: center;
                margin: 16px 0 0 0;
            }
            .strada {
                justify-content: space-between;
            }
            .beacon {
                order: 2;
            }
            .matrix-cluster {
                flex-direction: column;
            }
            .cluster-spark {
                flex-direction: column;
            }
            .cluster-tether {
                width: 100%;
                justify-content: center;
            }
            .cluster-info {
                text-align: center;
            }
            .scribe-wake-desc {
                margin: 0 auto;
            }
            .bedrock {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .shard-step {
                padding: 20px;
            }
        }

.nexus-spire{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(248, 246, 252, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(141, 87, 212, 0.1);
        }

.nexus-spire .nexus-strada{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 16px 24px;
        }

.nexus-spire .nexus-glyph{
            display: flex;
            align-items: center;
            justify-content: center;
        }

.nexus-spire .nexus-glyph img{
            height: 38px;
            width: auto;
            display: block;
        }

.nexus-spire .nexus-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

.nexus-spire .nexus-nexus-tether{
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 4px;
            color: #1f1b29;
            transition: all 0.25s ease;
        }

.nexus-spire .nexus-nexus-tether:hover{
            color: #8d57d4;
            background-color: rgba(141, 87, 212, 0.05);
        }

.nexus-spire .nexus-nexus-tether.active{
            color: #ffffff;
            background-color: #8d57d4;
        }

.nexus-spire .nexus-beacon{
            display: flex;
            align-items: center;
        }

.nexus-spire .nexus-warp-mini{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
            background-color: #1f1b29;
            color: #ffffff;
            transition: all 0.25s ease;
        }

.nexus-spire .nexus-warp-mini:hover{
            background-color: #8d57d4;
            color: #ffffff;
        }

@media (max-width: 768px){.nexus-spire .nexus-strada{
                padding: 12px 16px;
            }

.nexus-spire .nexus-nexus{
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }}

.nexus-spire {
    background: rgb(248, 246, 252);
    background-image: none;
}

.anchor-wake {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--slate);
}
.anchor-wake,
.anchor-wake *,
.anchor-wake *::before,
.anchor-wake *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-wake{
            background-color: #1f1b29;
            color: #88809c;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.anchor-wake .anchor-abyss{
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 24px 30px 24px;
        }

.anchor-wake .anchor-bedrock{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

.anchor-wake .anchor-anchor-brand{
            flex: 1 1 300px;
        }

.anchor-wake .anchor-brand-scribe{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

.anchor-wake .anchor-scribe-wake{
            font-size: 14px;
            line-height: 1.6;
            max-width: 280px;
        }

.anchor-wake .anchor-anchor-links{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.anchor-wake .anchor-cluster-wake-links{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-wake .anchor-vertex-wake{
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

.anchor-wake .anchor-tether{
            font-size: 14px;
            transition: color 0.25s ease;
        }

.anchor-wake .anchor-tether:hover{
            color: #b894ec;
        }

.anchor-wake .anchor-anchor-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 13px;
        }

@media (max-width: 1024px){.anchor-wake .anchor-anchor-links{
                gap: 40px;
            }}

@media (max-width: 768px){.anchor-wake .anchor-bedrock{
                flex-direction: column;
                gap: 30px;
            }

.anchor-wake .anchor-anchor-links{
                flex-direction: column;
                gap: 30px;
            }}