:root {
            --primary: #29b9f2;
            --accent: #7b42f6;
            --bg: #0a0b14;
            --surface: #161827;
            --surface-light: #1f2235;
            --radius: 20px;
            --text: #e0e2f0;
            --text-dim: #a0a4b8;
        }

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

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* 导航复用风格 */
        .apex {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 11, 20, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .glyph {
            flex-shrink: 0;
        }

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

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

        .pista-hook {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.35s ease;
            position: relative;
        }

        .pista-hook:hover,
        .pista-hook.active {
            color: var(--primary);
        }

        .pista-hook.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            box-shadow: 0 0 10px var(--primary);
        }

        /* 主容器 */
        .realm {
            padding-top: 80px;
            min-height: 100vh;
        }

        /* 全平台覆盖下载区 */
        .vista-acquire {
            padding: 80px 24px;
            background: radial-gradient(circle at 50% 0%, rgba(41, 185, 242, 0.1) 0%, transparent 70%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .crest-mega {
            font-size: clamp(32px, 4vw, 52px);
            line-height: 1.2;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 0%, #29b9f2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .tally-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            color: var(--text-dim);
            font-size: 18px;
        }

        .batch-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            width: 100%;
            max-width: 1200px;
        }

        .shard-platform {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 0;
        }

        .shard-platform:hover {
            transform: translateY(-10px);
            border-color: rgba(41, 185, 242, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .mark-svg {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            fill: var(--primary);
            filter: drop-shadow(0 0 8px rgba(41, 185, 242, 0.4));
        }

        .crest-sub {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .tally-version {
            font-size: 14px;
            color: var(--text-dim);
            margin-bottom: 24px;
        }

        .clack-primary {
            background: var(--primary);
            color: #000;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(41, 185, 242, 0.3);
            transition: all 0.35s ease;
            width: 100%;
            display: inline-block;
        }

        .clack-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 25px rgba(41, 185, 242, 0.5);
        }

        /* 云端同步安全区 */
        .vista-steps {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .vault-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .lens-fluid {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .vault-tally {
            flex: 1;
            min-width: 300px;
        }

        .crest-realm {
            font-size: 36px;
            margin-bottom: 24px;
            font-weight: 700;
            color: #fff;
        }

        .slat-feature {
            display: flex;
            gap: 20px;
            margin-bottom: 32px;
            align-items: flex-start;
        }

        .mark-bullet {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            fill: var(--primary);
            margin-top: 4px;
        }

        .tally-feature h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--primary);
        }

        /* 更新日志区 */
        .vista-comparison {
            padding: 80px 24px;
            max-width: 1000px;
            margin: 0 auto 100px;
        }

        .cloak-log {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .atom-log {
            padding-bottom: 30px;
            margin-bottom: 30px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }

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

        .ribon-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .fuse-version {
            background: rgba(41, 185, 242, 0.15);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
        }

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

        .queue-details {
            list-style: none;
        }

        .queue-details li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            color: var(--text-dim);
            font-size: 15px;
        }

        .queue-details li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* 页脚 */
        .nadir {
            background: #05060a;
            padding: 60px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .roots-orbit {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .abyss-brand {
            max-width: 300px;
        }

        .abyss-brand span {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 16px;
        }

        .tally-copyright {
            font-size: 13px;
            color: #5c5f77;
        }

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

        .queue-nadir {
            list-style: none;
        }

        .queue-nadir li {
            margin-bottom: 12px;
        }

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

        .hook-nadir:hover {
            color: var(--primary);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .facer {
                gap: 15px;
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
            .crest-mega {
                font-size: 32px;
            }
            .vista-steps {
                flex-direction: column;
                text-align: center;
            }
            .slat-feature {
                flex-direction: column;
                align-items: center;
            }
            .batch-links {
                gap: 30px;
            }
        }

        /* 动画增强 */
        .shard-platform, .vault-visual, .vault-tally {
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
        }

.orbit-apex {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--tally-main);
}
.orbit-apex,
.orbit-apex *,
.orbit-apex *::before,
.orbit-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.orbit-apex a.orbit-pista-hook {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0 4px;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.orbit-apex a.orbit-pista-hook,
.orbit-apex a.orbit-pista-hook:hover,
.orbit-apex a.orbit-pista-hook:focus,
.orbit-apex a.orbit-pista-hook:active,
.orbit-apex a.orbit-pista-hook.active,
.orbit-apex a.orbit-pista-hook[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-apex{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 11, 20, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.orbit-apex .orbit-orbit{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

.orbit-apex .orbit-glyph{
            height: 32px;
            display: flex;
            align-items: center;
            min-width: 0;
        }

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

.orbit-apex .orbit-facer{
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

.orbit-apex .orbit-pista-hook{
            color: #9499b3;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            margin: 0 4px;
            border-radius: 10px;
            transition: 0.35s ease;
            white-space: nowrap;
        }

.orbit-apex .orbit-pista-hook:hover{
            color: #29b9f2;
            background: rgba(41, 185, 242, 0.05);
        }

.orbit-apex .orbit-pista-hook.active{
            color: #29b9f2;
            background: rgba(41, 185, 242, 0.1);
        }

@media (max-width: 768px){.orbit-apex .orbit-orbit{ height: auto; padding: 20px; }

.orbit-apex .orbit-facer{ width: 100%; margin-top: 15px; justify-content: center; }}

.orbit-apex {
    background: rgb(10, 11, 20);
    background-image: none;
}

.trail-nadir {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--tally-main);
}
.trail-nadir,
.trail-nadir *,
.trail-nadir *::before,
.trail-nadir *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.trail-nadir{
            background: #05060a;
            padding: 80px 40px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.trail-nadir .trail-roots{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            justify-content: space-between;
        }

.trail-nadir .trail-roots-batch{
            flex: 1;
            min-width: 200px;
        }

.trail-nadir .trail-roots-crest{
            color: #fff;
            font-size: 16px;
            margin-bottom: 24px;
            font-weight: 600;
        }

.trail-nadir .trail-roots-queue{
            list-style: none;
        }

.trail-nadir .trail-roots-atom{
            margin-bottom: 12px;
        }

.trail-nadir .trail-roots-hook{
            color: #9499b3;
            text-decoration: none;
            font-size: 14px;
            transition: 0.35s ease;
        }

.trail-nadir .trail-roots-hook:hover{
            color: #29b9f2;
        }

.trail-nadir .trail-abyss-base{
            max-width: 1300px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: #9499b3;
            font-size: 13px;
        }