:root {
            --primary: #1f9cf0;
            --bg: #05070a;
            --surface: #11141b;
            --surface-light: #1a1e26;
            --text: #ffffff;
            --text-dim: #a0a0ab;
            --accent: #2ecc71;
            --radius: 16px;
            --transition: 0.35s ease;
        }

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

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

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

        /* 导航栏复用与修正 */
        .twig {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 7, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .vein {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .pixel img {
            height: 32px;
            display: block;
        }

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

        .fringe {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .orbit-glyph {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dim);
        }

        .orbit-glyph:hover, .orbit-glyph.active {
            color: var(--primary);
        }

        .blink-primary {
            background: var(--primary);
            color: white;
            border-radius: 40px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(31, 156, 240, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .blink-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(31, 156, 240, 0.4);
        }

        /* 主体布局 */
        .matrix {
            padding-top: 80px;
            min-width: 0;
        }

        .vein {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            min-width: 0;
        }

        /* Beacon (Hero) Area */
        .beacon {
            padding: 100px 0 60px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .beacon-optic-mega {
            font-size: clamp(40px, 8vw, 72px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, #1f9cf0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .marrow-intro {
            font-size: 20px;
            color: var(--text-dim);
            max-width: 700px;
            margin-bottom: 48px;
            word-break: break-word;
        }

        /* Article: Addon Gallery */
        .article-flare {
            padding: 80px 0;
            min-width: 0;
        }

        .halo-filter {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .snap-tag {
            padding: 8px 20px;
            border-radius: 30px;
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
            color: var(--text-dim);
            cursor: pointer;
        }

        .snap-tag.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .prism-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

        .prism {
            background: var(--surface);
            padding: 32px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .prism:hover {
            transform: translateY(-8px);
            border-color: rgba(31, 156, 240, 0.3);
            background: var(--surface-light);
        }

        .thread-box {
            width: 56px;
            height: 56px;
            background: rgba(31, 156, 240, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .optic-core {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .marrow-brief {
            color: var(--text-dim);
            font-size: 15px;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .spark-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .marrow-score {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #f1c40f;
            font-weight: 600;
        }

        /* Section: Scripting Docs */
        .matrix-steps {
            background: radial-gradient(circle at 50% 0%, rgba(31, 156, 240, 0.05), transparent);
            padding: 100px 0;
            min-width: 0;
        }

        .cradle-split {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            align-items: center;
        }

        .cradle-split > * {
            flex: 1;
            min-width: 320px;
        }

        .optic-sub {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .vault-code {
            background: #000;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            font-size: 14px;
            color: #d1d1d1;
            overflow-x: auto;
        }

        .vault-code .marrow-keyword { color: #c678dd; }
        .vault-code .marrow-string { color: #98c379; }
        .vault-code .marrow-func { color: #61afef; }

        /* Section: Themes & Skins */
        .matrix-acquire {
            padding: 100px 0;
            min-width: 0;
        }

        .halo-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .vault-skin {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: var(--surface);
            border: 4px solid var(--surface);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .vault-skin-inner {
            width: 100%;
            height: 100%;
            background-size: cover;
            transition: transform 0.5s ease;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        .vault-skin:hover .vault-skin-inner {
            transform: scale(1.05);
        }

        .halo-mock-ui {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mock-line {
            height: 10px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Aside: Extra Info */
        .aside-pro {
            background: var(--primary);
            color: #fff;
            padding: 40px;
            border-radius: var(--radius);
            margin-top: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        /* Footer (Abyss) */
        .leaf {
            background: #000;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .origin-matrix {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .origin-brand {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }

        .origin-marrow {
            color: var(--text-dim);
            max-width: 300px;
        }

        .origin-optic {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #fff;
        }

        .origin-spark {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .origin-glyph {
            color: var(--text-dim);
            font-size: 14px;
        }

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

        .tether-halo {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-dim);
            font-size: 13px;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .origin-matrix {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .vein { height: auto; padding: 16px 24px; }
            .fringe { display: none; }
            .beacon-optic-mega { font-size: 42px; }
            .prism-matrix { grid-template-columns: 1fr; }
            .halo-visual { grid-template-columns: 1fr; }
            .origin-matrix { grid-template-columns: 1fr; }
            .aside-pro { text-align: center; justify-content: center; }
        }

.orbit-twig {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    word-break: keep-all;
    color: var(--text);
}
.orbit-twig,
.orbit-twig *,
.orbit-twig *::before,
.orbit-twig *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2 {
    --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;
}

.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2:hover,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2:focus,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2:active,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2.active,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2[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);
}

.orbit-twig{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 7, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

.orbit-twig .orbit-vein{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.orbit-twig .orbit-pixel{
            height: 40px;
            display: flex;
            align-items: center;
        }

.orbit-twig .orbit-pixel img{
            height: 32px;
            width: auto;
        }

.orbit-twig .orbit-fringe{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.orbit-twig .orbit-glyph-2{
            font-size: 15px;
            font-weight: 500;
            color: #a0a0ab;
            position: relative;
        }

.orbit-twig .orbit-glyph-2:hover{
            color: #1f9cf0;
        }

.orbit-twig .orbit-glyph-2.active{
            color: #ffffff;
        }

.orbit-twig .orbit-glyph-2.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #1f9cf0;
            box-shadow: 0 0 8px #1f9cf0;
        }

.orbit-twig .orbit-blink-primary{
            background: #1f9cf0;
            color: white;
            padding: 18px 40px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 30px rgba(31, 156, 240, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

.orbit-twig .orbit-blink-primary:hover{
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(31, 156, 240, 0.4);
        }

@media (max-width: 768px){.orbit-twig .orbit-fringe{
                display: none;
            }}

.orbit-twig {
    background: rgb(5, 7, 10);
    background-image: none;
}

.abyss-leaf {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    word-break: keep-all;
    color: var(--text);
}
.abyss-leaf,
.abyss-leaf *,
.abyss-leaf *::before,
.abyss-leaf *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.abyss-leaf .abyss-vein{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.abyss-leaf .abyss-marrow-standard{
            font-size: 18px;
            color: #a0a0ab;
            margin-bottom: 32px;
            line-height: 1.8;
        }

.abyss-leaf{
            background: #020305;
            padding: 100px 24px 60px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.abyss-leaf .abyss-origin-grid{
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }

.abyss-leaf .abyss-optic-foot{
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #fff;
        }

.abyss-leaf .abyss-tether-fringe{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.abyss-leaf .abyss-glyph-foot{
            color: #a0a0ab;
            font-size: 15px;
        }

.abyss-leaf .abyss-glyph-foot:hover{
            color: #1f9cf0;
        }

.abyss-leaf .abyss-halo-bottom{
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: #4b5563;
            font-size: 14px;
        }