:root {
            --bg-deep: #05080f;
            --surface-one: #0d121c;
            --surface-two: #151c28;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --accent: #5bcbe1;
            --accent-glow: rgba(91, 203, 225, 0.25);
            --border: #232d3d;
            --radius-md: 12px;
            --radius-lg: 16px;
            --transition: all 0.25s ease;
        }

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

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.7;
            word-break: keep-all;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 布局基础容器 */
        .tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .flex-pod {
            display: flex;
            flex-wrap: wrap;
        }

        .flex-pod > * {
            min-width: 0;
        }

        /* 导航栏复用样式 */
        .crown-zone {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

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

        .orbit-mesh > * {
            min-width: 0;
        }

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

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

        .orbit-pod {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

        .orbit-pod > * {
            min-width: 0;
        }

        .orbit-wire {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .orbit-wire:hover,
        .orbit-wire.active {
            color: var(--text-main);
        }

        .orbit-wire.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent);
            box-shadow: 0 0 10px var(--accent-glow);
        }

        /* 核心下载区 (Hero Variant) */
        .portal-veil {
            padding: 160px 0 100px;
            background: radial-gradient(circle at 80% 20%, rgba(91, 203, 225, 0.08) 0%, transparent 50%);
            position: relative;
        }

        .portal-split {
            gap: 60px;
            align-items: center;
        }

        .portal-cipher {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .apex-giant {
            margin: 0;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #ffffff;
            white-space: normal;
        }

        .cipher-lead {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 90%;
        }

        .matrix-pod {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }

        .packet-node {
            background: var(--surface-one);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: var(--transition);
        }

        .packet-node:hover {
            background: var(--surface-two);
            border-color: rgba(91, 203, 225, 0.3);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            transform: translateY(-2px);
        }

        .node-identity {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1 1 auto;
        }

        .glyph-major {
            width: 40px;
            height: 40px;
            fill: none;
            stroke: var(--text-main);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .apex-minor {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
            white-space: normal;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .cipher-micro {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .pulse-bolt {
            padding: 12px 28px;
            background: var(--accent);
            color: #000000;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: var(--radius-md);
            box-shadow: 0 0 15px var(--accent-glow);
            transition: var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .pulse-bolt:hover {
            box-shadow: 0 0 25px rgba(91, 203, 225, 0.4);
            transform: translateY(-2px) scale(1.02);
            background: #6fe0f6;
        }

        .pulse-bolt svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .portal-lens {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cloak-frame {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 24px 50px rgba(0,0,0,0.5);
            background: var(--surface-one);
            width: 100%;
            position: relative;
        }

        .cloak-frame::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
            pointer-events: none;
            border-radius: var(--radius-lg);
        }

        .lens-visual {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* 兼容性矩阵 (Article Variant) */
        .visor-zone {
            padding: 80px 0;
            background: linear-gradient(to bottom, transparent, rgba(13, 18, 28, 0.5));
            border-top: 1px solid rgba(255,255,255,0.02);
        }

        .zone-crown {
            margin-bottom: 48px;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .apex-medium {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            white-space: normal;
        }

        .cipher-muted {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .data-mesh {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .data-peg {
            background: var(--surface-one);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: var(--transition);
        }

        .data-peg:hover {
            border-color: rgba(91, 203, 225, 0.2);
            background: var(--surface-two);
        }

        .data-apex {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .data-apex::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .data-cipher {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .hash-band {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px dashed rgba(255,255,255,0.1);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.75rem;
            color: rgba(148, 163, 184, 0.6);
            word-break: break-all;
        }

        /* 迭代日志 (Div Variant) */
        .crypt-zone {
            padding: 80px 0 120px;
        }

        .timeline-pod {
            background: var(--surface-one);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .timeline-pod::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), transparent);
        }

        .log-crown {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 16px;
            margin-bottom: 24px;
        }

        .apex-tag {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.05em;
        }

        .cipher-date {
            color: var(--accent);
            font-family: ui-monospace, monospace;
            font-size: 0.9rem;
            background: rgba(91, 203, 225, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
        }

        .log-mesh {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .log-peg {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text-muted);
            font-size: 1rem;
        }

        .log-peg svg {
            width: 20px;
            height: 20px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .log-peg strong {
            color: var(--text-main);
            font-weight: 600;
        }

        /* 页脚区域 */
        .heel-anchor {
            background: #03050a;
            border-top: 1px solid var(--border);
            padding: 60px 0 40px;
        }

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

        .apex-brand {
            font-size: 1.5rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .anchor-pod {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 150px;
        }

        .apex-foot {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .anchor-wire {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .anchor-wire:hover {
            color: var(--accent);
        }

        .anchor-crypt {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: rgba(148, 163, 184, 0.6);
            font-size: 0.85rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .portal-split {
                flex-direction: column;
            }
            .portal-lens {
                order: -1;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .orbit-pod {
                display: none; /* 移动端菜单简化处理，依靠JS展开，此处隐藏保持结构干净 */
            }
            .apex-giant {
                font-size: 2.2rem;
            }
            .packet-node {
                flex-direction: column;
                align-items: flex-start;
            }
            .pulse-bolt {
                width: 100%;
                justify-content: center;
            }
            .timeline-pod {
                padding: 24px;
            }
            .anchor-mesh {
                flex-direction: column;
            }
        }

.route-crown-zone {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.route-crown-zone,
.route-crown-zone *,
.route-crown-zone *::before,
.route-crown-zone *::after {
    box-sizing: border-box;
}

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

.route-crown-zone p,
.route-crown-zone h1,
.route-crown-zone h2,
.route-crown-zone h3,
.route-crown-zone h4,
.route-crown-zone h5,
.route-crown-zone h6 {
    text-decoration: none;
}

.route-crown-zone img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.route-crown-zone {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.route-crown-zone a.route-orbit-wire {
    --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;
}

.route-crown-zone a.route-orbit-wire,
.route-crown-zone a.route-orbit-wire:hover,
.route-crown-zone a.route-orbit-wire:focus,
.route-crown-zone a.route-orbit-wire:active,
.route-crown-zone a.route-orbit-wire.active,
.route-crown-zone a.route-orbit-wire[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);
}

.route-crown-zone{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 8, 15, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #232d3d;
        }

.route-crown-zone .route-orbit-mesh{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

.route-crown-zone .route-sigil{
            display: flex;
            align-items: center;
        }

.route-crown-zone .route-sigil img{
            height: 28px;
            width: auto;
            display: block;
        }

.route-crown-zone .route-orbit-pod{
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

.route-crown-zone .route-orbit-wire{
            padding: 8px 16px;
            font-size: 0.95rem;
            color: #94a3b8;
            border-radius: 6px;
            transition: all 0.25s ease;
            font-weight: 500;
        }

.route-crown-zone .route-orbit-wire:hover, .route-crown-zone .route-orbit-wire.active{
            color: #5bcbe1;
            background: rgba(91, 203, 225, 0.1);
        }

@media (max-width: 768px){.route-crown-zone .route-orbit-mesh{
                flex-direction: column;
                height: auto;
                padding: 16px 24px;
                gap: 16px;
            }

.route-crown-zone .route-orbit-pod{
                justify-content: center;
            }}

.route-crown-zone {
    background: rgb(5, 8, 15);
    background-image: none;
}

.anchor-anchor-crypt {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.anchor-anchor-crypt,
.anchor-anchor-crypt *,
.anchor-anchor-crypt *::before,
.anchor-anchor-crypt *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-anchor-crypt .anchor-zone-bound{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

.anchor-anchor-crypt{
            background: #000000;
            border-top: 1px solid #232d3d;
            padding: 60px 0 40px;
            text-align: center;
        }

.anchor-anchor-crypt .anchor-crypt-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

.anchor-anchor-crypt .anchor-crypt-mesh{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
        }

.anchor-anchor-crypt .anchor-crypt-wire{
            color: #94a3b8;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }

.anchor-anchor-crypt .anchor-crypt-wire:hover{
            color: #5bcbe1;
        }

.anchor-anchor-crypt .anchor-crypt-cipher{
            color: #475569;
            font-size: 0.85rem;
        }