:root {
            --nova-primary: #e2566b;
            --nova-primary-dark: #c03d50;
            --nova-text-main: #2c3038;
            --nova-text-inverse: #e9ecef;
            --nova-bg-light: #f8f9fa;
            --nova-bg-dark: #0a0b0d;
            --nova-bg-card: #ffffff;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
            --shadow-hover: 0 15px 40px rgba(226, 86, 107, 0.15);
            --transition-speed: 0.15s ease;
        }

        /* 基础重置与排版规范 */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--nova-bg-light);
            color: var(--nova-text-main);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制文本换行 */
        .echo, .apex, .wire {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .echo {
            word-break: keep-all;
        }

        .apex {
            white-space: normal;
            margin-top: 0;
        }

        /* 强制Flexbox/Grid必备规则 */
        .pool {
            display: flex;
            flex-wrap: wrap;
        }
        
        .pool > * {
            min-width: 0;
        }

        /* 布局容器 (版心) */
        .veil {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        /* --- 导航栏样式复刻 (强制结构) --- */
        .crown {
            background-color: var(--nova-bg-dark);
            padding: 1rem 2rem;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

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

        .mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .wire {
            color: rgba(233, 236, 239, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color var(--transition-speed);
        }

        .wire:hover, .wire:focus {
            color: var(--nova-text-inverse);
        }

        .wire.active {
            color: var(--nova-primary);
        }

        /* --- 主题区块样式 (同族变体) --- */
        
        /* 1. Hero区 (深色基底，对角线分割灵感) */
        .vault {
            background-color: var(--nova-bg-dark);
            color: var(--nova-text-inverse);
            padding: 6rem 0 8rem;
            position: relative;
            overflow: hidden;
        }

        /* 对角线视觉元素 */
        .vault::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, rgba(226, 86, 107, 0.05) 0%, rgba(10, 11, 13, 0) 100%);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
            pointer-events: none;
        }

        .vault .veil {
            align-items: center;
            justify-content: space-between;
        }

        .vault .cloak {
            flex: 1 1 500px;
            max-width: 650px;
            z-index: 2;
        }

        .vault .tube {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            position: relative;
        }

        .vault .apex {
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .vault .echo {
            font-size: 1.25rem;
            color: rgba(233, 236, 239, 0.8);
            margin-bottom: 3rem;
            max-width: 540px;
        }

        /* 核心矢量图形 (无图设计) */
        .vault .glyph {
            width: 100%;
            max-width: 450px;
            height: auto;
            filter: drop-shadow(0 0 30px rgba(226, 86, 107, 0.2));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* 按钮语法 (继承首页) */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: var(--nova-primary);
            color: #fff;
            font-weight: 600;
            font-size: 1.125rem;
            text-decoration: none;
            border-radius: 30px;
            border: 2px solid var(--nova-primary);
            box-shadow: 0 8px 20px rgba(226, 86, 107, 0.3);
            transition: var(--transition-speed);
        }

        .warp:hover, .warp:focus {
            background: var(--nova-primary-dark);
            border-color: var(--nova-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        /* 2. 问题解决区 (浅色卡片矩阵) */
        .nexus {
            background-color: var(--nova-bg-light);
            padding: 8rem 0;
            position: relative;
        }

        .nexus .cloak {
            text-align: center;
            margin-bottom: 4rem;
        }

        .nexus .apex {
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--nova-text-main);
            margin-bottom: 1rem;
        }

        .nexus .cloak .echo {
            font-size: 1.125rem;
            color: #5f6368;
            max-width: 700px;
            margin: 0 auto;
        }

        .band {
            gap: 2rem;
            justify-content: center;
        }

        /* 卡片语法 (继承首页) */
        .node {
            background: var(--nova-bg-card);
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(0,0,0,0.02);
            flex: 1 1 300px;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }

        .node:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .node .spark {
            width: 64px;
            height: 64px;
            background: rgba(226, 86, 107, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--nova-primary);
        }

        .node .spark svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

        .node .apex {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .node .echo {
            color: #5f6368;
            line-height: 1.6;
            margin: 0;
        }

        /* 3. 游戏库支持区 (纯白背景，列表展示) */
        .portal {
            background-color: var(--nova-bg-card);
            padding: 8rem 0;
            border-top: 1px solid rgba(0,0,0,0.03);
        }

        .portal .veil {
            align-items: center;
            gap: 4rem;
        }

        .portal .cloak {
            flex: 1 1 450px;
        }

        .portal .tube {
            flex: 1 1 500px;
            position: relative;
        }

        .portal .apex {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .portal > .veil > .cloak > .echo {
            font-size: 1.125rem;
            color: #5f6368;
            margin-bottom: 2.5rem;
        }

        .fiber {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: var(--nova-bg-light);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
            border: 1px solid rgba(0,0,0,0.02);
            transition: var(--transition-speed);
        }

        .fiber:hover {
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            border-color: rgba(226, 86, 107, 0.2);
        }

        .fiber svg {
            width: 24px;
            height: 24px;
            fill: var(--nova-primary);
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .fiber .echo {
            font-weight: 600;
            color: var(--nova-text-main);
            margin: 0;
        }

        /* 纯CSS几何装饰 */
        .shard {
            position: relative;
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--nova-bg-light) 0%, #ffffff 100%);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .shard::before, .shard::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(226, 86, 107, 0.05);
        }

        .shard::before {
            width: 300px;
            height: 300px;
            top: -50px;
            right: -50px;
        }

        .shard::after {
            width: 200px;
            height: 200px;
            bottom: 20px;
            left: -80px;
        }

        .cell {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(255,255,255,1);
        }

        .cell .apex {
            font-size: 3rem;
            color: var(--nova-primary);
            margin-bottom: 0.5rem;
            font-weight: 900;
        }

        .cell .echo {
            font-size: 1rem;
            font-weight: 500;
            color: #5f6368;
        }

        /* --- 页脚样式 --- */
        .tail {
            background-color: var(--nova-bg-dark);
            color: rgba(233, 236, 239, 0.7);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .tail .veil {
            justify-content: space-between;
        }

        .tail .crypt {
            flex: 1 1 300px;
            margin-bottom: 2rem;
        }

        .tail .root {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            display: block;
        }

        .tail .base {
            font-size: 0.875rem;
            margin-top: 4rem;
            text-align: center;
            width: 100%;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
        }

        /* 响应式断点 */
        @media (max-width: 768px) {
            .crown {
                padding: 1rem;
            }
            .mesh {
                gap: 1rem;
                justify-content: center;
                margin-top: 1rem;
            }
            .crest {
                width: 100%;
                text-align: center;
            }
            .crest img {
                margin: 0 auto;
            }
            .vault, .nexus, .portal {
                padding: 4rem 0;
            }
            .vault .apex {
                font-size: 2.25rem;
            }
            .node {
                flex-basis: 100%;
                max-width: 100%;
            }
            .portal .veil {
                flex-direction: column-reverse;
            }
            .shard {
                height: 300px;
            }
        }

.helm-crown.helm-pool {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--nova-text-main);
}
.helm-crown.helm-pool,
.helm-crown.helm-pool *,
.helm-crown.helm-pool *::before,
.helm-crown.helm-pool *::after {
    box-sizing: border-box;
}

.helm-crown.helm-pool [role="navigation"],
.helm-crown.helm-pool div,
.helm-crown.helm-pool section,
.helm-crown.helm-pool article,
.helm-crown.helm-pool aside,
.helm-crown.helm-pool p,
.helm-crown.helm-pool h1,
.helm-crown.helm-pool h2,
.helm-crown.helm-pool h3,
.helm-crown.helm-pool h4,
.helm-crown.helm-pool h5,
.helm-crown.helm-pool h6,
.helm-crown.helm-pool a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.helm-crown.helm-pool a.helm-wire {
    --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;
}

.helm-crown.helm-pool a.helm-wire,
.helm-crown.helm-pool a.helm-wire:hover,
.helm-crown.helm-pool a.helm-wire:focus,
.helm-crown.helm-pool a.helm-wire:active,
.helm-crown.helm-pool a.helm-wire.active,
.helm-crown.helm-pool a.helm-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);
}

.helm-crown.helm-pool .helm-pool, .helm-crown.helm-pool .helm-mesh{
            display: flex;
            flex-wrap: wrap;
        }

.helm-crown.helm-pool .helm-pool > *, .helm-crown.helm-pool .helm-mesh > *{
            min-width: 0;
        }

.helm-crown.helm-pool .helm-crown{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(10, 11, 13, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5vw;
            justify-content: space-between;
            align-items: center;
        }

.helm-crown.helm-pool .helm-crest{
            display: flex;
            align-items: center;
            height: 32px;
        }

.helm-crown.helm-pool .helm-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.helm-crown.helm-pool .helm-mesh{
            gap: 2rem;
            align-items: center;
        }

.helm-crown.helm-pool .helm-wire{
            color: #e9ecef;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            position: relative;
        }

.helm-crown.helm-pool .helm-wire:hover, .helm-crown.helm-pool .helm-wire.active{
            color: #e2566b;
        }

.helm-crown.helm-pool .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #e2566b;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-crown.helm-pool .helm-crown{
                padding: 1rem 5vw;
                flex-direction: column;
                gap: 1rem;
            }

.helm-crown.helm-pool .helm-mesh{
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }}

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

.crypt-tail [role="navigation"],
.crypt-tail div,
.crypt-tail section,
.crypt-tail article,
.crypt-tail aside,
.crypt-tail p,
.crypt-tail h1,
.crypt-tail h2,
.crypt-tail h3,
.crypt-tail h4,
.crypt-tail h5,
.crypt-tail h6,
.crypt-tail a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.crypt-tail .crypt-echo{
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all; 
        }

.crypt-tail{
            background: #050608;
            color: #8a8d93;
            padding: 4rem 5vw 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.crypt-tail .crypt-tail-orbit{
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

.crypt-tail .crypt-tail-brand{
            flex: 1 1 300px;
        }

.crypt-tail .crypt-tail-brand h2{
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

.crypt-tail .crypt-tail-brand p{
            font-size: 0.9rem;
            max-width: 300px;
        }

.crypt-tail .crypt-tail-mesh{
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

.crypt-tail .crypt-tail-pool{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.crypt-tail .crypt-tail-pool h4{
            color: #fff;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

.crypt-tail .crypt-tail-pool a{
            color: #8a8d93;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.crypt-tail .crypt-tail-pool a:hover{
            color: #e2566b;
        }

.crypt-tail .crypt-tail-base{
            max-width: 1400px;
            margin: 2rem auto 0;
            text-align: center;
            font-size: 0.85rem;
        }