:root {
            --primary: #8c42e6;
            --primary-soft: #f4eeff;
            --bg: #ffffff;
            --text: #1a1a1a;
            --text-dim: #666666;
            --radius: 16px;
            --space: 2rem;
            --shadow: 0 10px 30px rgba(140, 66, 230, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
            --shadow-intense: 0 20px 40px rgba(140, 66, 230, 0.15);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        /* 导航栏复用 */
        .brim {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 5%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .knot {
            display: flex;
            gap: 2rem;
        }

        .knot-vine {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.25s ease;
        }

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

        .knot-vine.active {
            color: var(--primary);
            position: relative;
        }

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

        /* 主体容器 */
        .sphere {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* 命令行的艺术 - article intro */
        .flare {
            padding: 10rem 0 6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .scenix-veil {
            flex: 1;
            min-width: 320px;
        }

        .apex {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #8c42e6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .aura {
            font-size: 1.25rem;
            color: var(--text-dim);
            max-width: 580px;
            margin-bottom: 3rem;
        }

        .prime-vessel {
            flex: 1;
            min-width: 320px;
            background: #0f0f1d;
            border-radius: var(--radius);
            padding: 2.5rem;
            position: relative;
            box-shadow: var(--shadow-intense);
            overflow: hidden;
        }

        .prime-vessel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
        }

        .vein {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

        .vein div {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .code-aura {
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            color: #d1d1d1;
            font-size: 0.95rem;
            line-height: 2;
        }

        .code-aura span {
            color: var(--primary);
        }

        /* 核心命令全解 - article detail */
        .prime-detail {
            padding: 6rem 0;
        }

        .hollow-flock {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .cellum {
            background: #f9f9f9;
            padding: 3rem;
            border-radius: var(--radius);
            transition: all 0.25s ease;
            border: 1px solid transparent;
            word-break: break-word;
        }

        .cellum:hover {
            background: #fff;
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: var(--primary-soft);
        }

        .glyph-veil {
            width: 64px;
            height: 64px;
            background: var(--primary-soft);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .cellum h3 {
            font-size: 1.6rem;
            margin-bottom: 1.25rem;
            color: #000;
        }

        .leaf-vein {
            list-style: none;
        }

        .leaf-vein li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
        }

        .leaf-vein code {
            background: #eee;
            padding: 2px 8px;
            border-radius: 4px;
            color: var(--primary);
            font-size: 0.9em;
        }

        /* 脚本编写逻辑 - aside faq */
        .sedim-logic {
            background: var(--primary);
            border-radius: 32px;
            padding: 5rem;
            color: #fff;
            margin-bottom: 8rem;
            position: relative;
            overflow: hidden;
        }

        .sedim-logic::after {
            content: '';
            position: absolute;
            right: -100px;
            bottom: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .logic-apex {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .framex-flock {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .logic-leaf {
            flex: 1;
            min-width: 280px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
        }

        .snap {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2.5rem;
            background: #fff;
            color: var(--primary);
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 700;
            margin-top: 2rem;
            transition: transform 0.25s ease;
        }

        .snap:hover {
            transform: scale(1.05);
        }

        /* 页脚 */
        .curb {
            padding: 6rem 5% 4rem;
            background: #fcfcfc;
            border-top: 1px solid #eee;
        }

        .datum {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .finis-flock h4 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .finis-flock a {
            display: block;
            color: var(--text-dim);
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .finis-flock a:hover {
            color: var(--primary);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .knot { display: none; }
            .flare { padding-top: 8rem; text-align: center; }
            .aura { margin-left: auto; margin-right: auto; }
            .sedim-logic { padding: 3rem 1.5rem; }
            .prime-vessel { padding: 1.5rem; }
        }

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

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

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

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

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

.vortex-brim a.vortex-knot-vine {
    --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;
}

.vortex-brim a.vortex-knot-vine,
.vortex-brim a.vortex-knot-vine:hover,
.vortex-brim a.vortex-knot-vine:focus,
.vortex-brim a.vortex-knot-vine:active,
.vortex-brim a.vortex-knot-vine.active,
.vortex-brim a.vortex-knot-vine[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);
}

.vortex-brim{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

.vortex-brim .vortex-knot{
            display: flex;
            gap: 2rem;
            align-items: center;
        }

.vortex-brim .vortex-knot-vine{
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 500;
            transition: color 0.25s ease;
        }

.vortex-brim .vortex-knot-vine:hover, .vortex-brim .vortex-knot-vine.active{
            color: #8c42e6;
        }

.vortex-brim .vortex-sigil img{
            height: 32px;
            width: auto;
        }

@media (max-width: 768px){.vortex-brim .vortex-knot{ display: none; }}

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

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

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

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

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

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

.datum-curb{
            padding: 4rem 5%;
            text-align: center;
            border-top: 1px solid #eee;
            margin-top: 4rem;
        }