/* 变量系统：继承首页视觉基因 */
        :root {
            --primary: #f1bb65;
            --primary-glow: rgba(241, 187, 101, 0.4);
            --surface: #ffffff;
            --bg: #f8fafc;
            --bg-alt: #f1f5f9;
            --text-main: #0f172a;
            --text-sub: #334155;
            --text-muted: #64748b;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
            --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
            --border: #e2e8f0;
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.25s ease;
        }

        /* 全局重置与基础设定 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg);
            color: var(--text-sub);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制文本换行与防溢出规则 */
        .cipher, .apex, p, h1, h2, h3, h4, span, a {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

        /* 中文词组保护 */
        .cipher {
            word-break: keep-all;
        }

        /* 强制的Flex基础规则 */
        .pod, .array, .band {
            display: flex;
            flex-wrap: wrap;
        }
        
        .peer, .wire, .lens {
            min-width: 0;
        }

        /* -------------------------------------
           导航区域 (Helm / Route) - 严格复用
        -------------------------------------- */
        .helm {
            background-color: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            box-shadow: var(--shadow-sm);
            flex-wrap: wrap;
        }

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

        .array {
            gap: 2rem;
            align-items: center;
        }

        .wire {
            text-decoration: none;
            color: var(--text-sub);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .wire:hover, .wire:focus {
            color: var(--primary);
        }

        .wire.active {
            color: var(--primary);
            font-weight: 700;
        }

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        /* -------------------------------------
           版心与容器层 (Shell, Cloak, Veil)
        -------------------------------------- */
        .root-veil {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .tube {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        /* -------------------------------------
           排版系统 (Apex, Cipher)
        -------------------------------------- */
        .apex-1 {
            color: var(--text-main);
            font-weight: 800;
            line-height: 1.2;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .apex-2 {
            color: var(--text-main);
            font-weight: 700;
            line-height: 1.3;
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .apex-3 {
            color: var(--text-main);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .cipher-lead {
            font-size: 1.25rem;
            color: var(--text-sub);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

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

        /* -------------------------------------
           行动入口 / 按钮 (Warp)
        -------------------------------------- */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--text-main);
            text-decoration: none;
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-md);
            box-shadow: 0 4px 14px var(--primary-glow);
            border: 2px solid var(--primary);
            transition: var(--transition);
            cursor: pointer;
            font-size: 1.125rem;
        }

        .warp:hover, .warp:focus {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px var(--primary-glow);
        }

        .warp-alt {
            background-color: transparent;
            color: var(--text-main);
            border-color: var(--border);
            box-shadow: none;
        }

        .warp-alt:hover, .warp-alt:focus {
            border-color: var(--primary);
            background-color: var(--surface);
            color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        /* -------------------------------------
           展示区块 1: 电竞级响应 (Portal / Reverse Split)
        -------------------------------------- */
        .portal {
            background-color: var(--surface);
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .portal-pod {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 70vh;
        }

        .portal-cipher {
            z-index: 2;
        }

        /* SVG动效视觉中心 */
        .portal-lens {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--bg), var(--surface));
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
        }

        .glyph-pulse {
            width: 100%;
            height: auto;
            max-width: 400px;
            filter: drop-shadow(0 10px 15px rgba(241, 187, 101, 0.2));
        }

        .anim-float {
            animation: float 6s ease-in-out infinite;
        }

        .anim-dash {
            stroke-dasharray: 10;
            animation: dash 20s linear infinite;
        }

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

        @keyframes dash {
            to { stroke-dashoffset: 1000; }
        }

        /* -------------------------------------
           展示区块 2: 拒绝延迟 (Shell / Proof)
        -------------------------------------- */
        .veil {
            background-color: var(--bg);
            position: relative;
        }

        .veil-crest {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

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

        .metric-vault {
            background-color: var(--surface);
            padding: 3rem 2rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            flex: 1 1 300px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .metric-vault::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .metric-vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-glow);
        }

        .metric-vault:hover::before {
            opacity: 1;
        }

        .metric-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 4px 10px var(--primary-glow);
        }

        /* -------------------------------------
           展示区块 3: 全球战场 (Cloak / FAQ-style)
        -------------------------------------- */
        .cloak {
            background-color: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .games-pod {
            gap: 2rem;
            margin-top: 3rem;
        }

        .game-node {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            flex: 1 1 400px;
            background: var(--bg-alt);
            padding: 2.5rem;
            border-radius: var(--radius-md);
            transition: var(--transition);
        }

        .game-node:hover {
            background: var(--surface);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .node-glyph {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            background-color: var(--surface);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            color: var(--primary);
        }

        .node-cipher h3 {
            margin-bottom: 0.75rem;
        }

        /* -------------------------------------
           页脚区域 (Base / Anchor)
        -------------------------------------- */
        .base {
            background-color: var(--bg-alt);
            padding: 4rem 2rem;
            text-align: center;
            border-top: 1px solid var(--border);
        }

        .base-apex {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1.5rem;
        }

        .base-array {
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .base-wire {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .base-wire:hover {
            color: var(--primary);
        }

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

        /* -------------------------------------
           响应式断点
        -------------------------------------- */
        @media (max-width: 992px) {
            .portal-pod {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .portal-lens {
                order: -1;
            }
            .band {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .helm {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .array {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            .tube {
                padding: 3rem 1.5rem;
            }
            .metric-vault, .game-node {
                flex: 1 1 100%;
            }
            .game-node {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

.helm-helm {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-muted);
}
.helm-helm,
.helm-helm *,
.helm-helm *::before,
.helm-helm *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-helm 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-helm a.helm-wire,
.helm-helm a.helm-wire:hover,
.helm-helm a.helm-wire:focus,
.helm-helm a.helm-wire:active,
.helm-helm a.helm-wire.active,
.helm-helm 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-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            padding: 1rem 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.helm-helm .helm-sigil{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.helm-helm .helm-sigil img{
            height: 36px;
            width: auto;
        }

.helm-helm .helm-array{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.helm-helm .helm-wire{
            font-weight: 600;
            color: #334155;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
            min-width: 0;
        }

.helm-helm .helm-wire:hover{
            color: #0f172a;
        }

.helm-helm .helm-wire.active{
            color: #0f172a;
        }

.helm-helm .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #f1bb65;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-helm .helm-array{
                display: none; 
            }

.helm-helm{
                justify-content: center;
            }}

.helm-helm {
    background: rgb(255, 255, 255);
    background-image: none;
}

.base-base {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-muted);
}
.base-base,
.base-base *,
.base-base *::before,
.base-base *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-base .base-apex-4{
            color: #0f172a;
            font-weight: 800;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-base .base-apex-4{ font-size: 1.1rem; margin-bottom: 0.25rem; }

.base-base .base-tube{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

.base-base .base-array-vertical{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

.base-base{
            background-color: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
            border-top: 1px solid #1e293b;
        }

.base-base .base-pod-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.base-base .base-root-brand{
            flex: 1;
            min-width: 280px;
        }

.base-base .base-apex-root{
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

.base-base .base-root-helm{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.base-base .base-wire-foot{
            transition: all 0.25s ease;
        }

.base-base .base-wire-foot:hover{
            color: #f1bb65;
        }

.base-base .base-root-bottom{
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            text-align: center;
        }

.base-base .base-cipher-tiny{
            font-size: 0.875rem;
        }