:root {
            --primary: #e35919;
            --primary-soft: rgba(227, 89, 25, 0.1);
            --bg: #0a0a0c;
            --surface: #141417;
            --surface-high: #1c1c21;
            --border: #26262a;
            --text: #e2e2e4;
            --text-dim: #a1a1a6;
            --radius: 12px;
            --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

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

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* 导航继承 */
        .apex {
            width: 100%;
            background: rgba(10, 10, 12, 0.85);
            backdrop-filter: blur(20px);
            position: fixed;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

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

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

        .voyage {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .bezel {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.35s ease;
        }

        .bezel:hover {
            color: var(--text);
            background: var(--primary-soft);
        }

        .bezel.active {
            color: var(--primary);
            background: var(--primary-soft);
        }

        /* 主容器 */
        .halo {
            padding-top: 72px;
        }

        /* 下载Hero区 (acquire) */
        .flare {
            padding: 80px 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            background: radial-gradient(circle at top right, #20130d 0%, #0a0a0c 50%);
        }

        .furl-lead {
            flex: 1;
            min-width: 320px;
        }

        .crest-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: #fff;
        }

        .rune-lead {
            font-size: 1.125rem;
            color: var(--text-dim);
            max-width: 540px;
            margin-bottom: 40px;
            word-break: break-word;
        }

        .nexus-info {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 40px;
            background: var(--surface);
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .atom-data {
            flex: 1;
            min-width: 120px;
        }

        .rune-tally {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            color: var(--text-dim);
            letter-spacing: 0.1em;
            margin-bottom: 4px;
        }

        .rune-val {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
        }

        .flux-prime {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: #fff;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(227, 89, 25, 0.3);
            transition: all 0.35s ease;
            font-size: 1.1rem;
        }

        .flux-prime:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(227, 89, 25, 0.4);
        }

        .mark-svg {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            fill: currentColor;
        }

        .pixel-wrap {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .pixel-media {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            border: 1px solid var(--border);
        }

        /* 版本对比区 (comparison) */
        .prism {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .crest-sub {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 60px;
        }

        .vault-matrix {
            overflow-x: auto;
            border-radius: var(--radius);
            background: var(--surface);
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        th {
            background: var(--surface-high);
            padding: 24px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid var(--border);
        }

        td {
            padding: 24px;
            border-bottom: 1px solid var(--border);
        }

        .ray-active {
            background: rgba(227, 89, 25, 0.03);
        }

        .flux-ghost {
            display: inline-block;
            padding: 10px 20px;
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.35s ease;
        }

        .flux-ghost:hover {
            background: var(--primary);
            color: #fff;
        }

        /* 依赖校验区 (acquire) */
        .lumen {
            padding: 100px 24px;
            background: var(--surface);
        }

        .ambit-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .voxel-guide {
            flex: 1;
            min-width: 300px;
            background: var(--bg);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .crest-small {
            font-size: 1.5rem;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mark-box {
            background: var(--primary-soft);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .nexus-steps {
            list-style: none;
        }

        .atom-step {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
        }

        .rune-num {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .rune-code {
            background: #000;
            padding: 12px 16px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 13px;
            display: block;
            margin-top: 12px;
            color: #10b981;
            border: 1px solid #333;
            overflow-x: auto;
        }

        /* 页脚 */
        .orig {
            padding: 80px 24px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .basis-wrap {
            max-width: 1200px;
            margin: 0 auto;
        }

        .rune-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            color: #fff;
        }

        .voyage-alt {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
        }

        .bezel-alt {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .bezel-alt:hover {
            color: var(--primary);
        }

        .rune-rune {
            font-size: 13px;
            color: var(--text-dim);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .flare { padding: 40px 24px; text-align: center; }
            .nexus-info { justify-content: center; }
            .voyage-alt { flex-direction: column; gap: 16px; }
            .steer { flex-direction: column; height: auto; padding: 16px; gap: 16px; }
            .halo { padding-top: 120px; }
        }

.steer-apex {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--rune-main);
}
.steer-apex,
.steer-apex *,
.steer-apex *::before,
.steer-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.steer-apex a.steer-bezel {
    --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;
}

.steer-apex a.steer-bezel,
.steer-apex a.steer-bezel:hover,
.steer-apex a.steer-bezel:focus,
.steer-apex a.steer-bezel:active,
.steer-apex a.steer-bezel.active,
.steer-apex a.steer-bezel[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);
}

.steer-apex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 12, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #26262a;
        }

.steer-apex .steer-steer{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.steer-apex .steer-glyph{
            height: 36px;
            display: flex;
            align-items: center;
        }

.steer-apex .steer-glyph img{
            height: 100%;
            width: auto;
        }

.steer-apex .steer-voyage{
            display: flex;
            gap: 8px;
            align-items: center;
        }

.steer-apex .steer-bezel{
            color: #94949e;
            text-decoration: none;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

.steer-apex .steer-bezel:hover{
            color: #e35919;
            background: rgba(227, 89, 25, 0.1);
        }

.steer-apex .steer-bezel.active{
            color: #e2e2e4;
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 1px #26262a;
        }

@media (max-width: 768px){.steer-apex .steer-steer{
                padding: 0 16px;
            }

.steer-apex .steer-voyage{
                display: none; 
            }}

.steer-apex {
    background: rgb(10, 10, 12);
    background-image: none;
}

.datum-orig {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--rune-main);
}
.datum-orig,
.datum-orig *,
.datum-orig *::before,
.datum-orig *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.datum-orig{
            padding: 80px 24px;
            background: #0a0a0c;
            border-top: 1px solid #26262a;
            text-align: center;
        }

.datum-orig .datum-datum-brand{
            font-size: 24px;
            font-weight: 800;
            color: #e35919;
            margin-bottom: 16px;
        }

.datum-orig .datum-datum-info{
            color: #94949e;
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto;
        }

.datum-orig .datum-datum-links{
            margin-top: 32px;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

.datum-orig .datum-datum-bezel{
            color: #94949e;
            text-decoration: none;
            font-size: 14px;
        }

.datum-orig .datum-datum-bezel:hover{
            color: #fff;
        }