:root {
            --primary: #da1e2e;
            --primary-glow: rgba(218, 30, 46, 0.4);
            --bg-dark: #0a0a0a;
            --bg-deep: #050505;
            --surface: #141414;
            --text-main: #f5f5f5;
            --text-dim: #a0a0a0;
            --radius: 20px;
            --transition: 0.25s ease;
        }

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

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

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

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

        .orbit-ribbon {
            display: flex;
            align-items: center;
            gap: 60px;
        }

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

        .spool {
            display: flex;
            gap: 32px;
        }

        .node {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
        }

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

        .node.active {
            position: relative;
        }

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

        .snap {
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .snap:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px var(--primary-glow);
        }

        /* 页面核心布局 */
        .sphere-vault {
            padding-top: 80px;
        }

        /* Resource Zenith (Hero) */
        .prime-zenith {
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
            overflow: hidden;
            padding: 60px 40px;
        }

        .prime-zenith::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 140%;
            background: var(--primary);
            opacity: 0.03;
            transform: rotate(-15deg);
            z-index: 0;
        }

        .zenith-veil {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            z-index: 1;
        }

        .zenith-clump {
            flex: 1;
            min-width: 320px;
            padding-right: 40px;
        }

        .zenith-crest {
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(to bottom, #fff, #999);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .zenith-lint {
            font-size: 18px;
            color: var(--text-dim);
            max-width: 600px;
            margin-bottom: 40px;
        }

        .zenith-lens {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .lens-shale {
            width: 100%;
            max-width: 580px;
            height: 420px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .lens-shale svg {
            width: 80%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
        }

        /* Category Vista (Aside) */
        .vista-orbit {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .vista-crest {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            font-weight: 700;
        }

        .vista-clump {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .folio {
            background: var(--surface);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius);
            padding: 40px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .folio:hover {
            transform: translateY(-10px);
            border-color: rgba(218, 30, 46, 0.3);
            background: #1a1a1a;
        }

        .folio-pica {
            width: 56px;
            height: 56px;
            background: rgba(218, 30, 46, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .folio-crest {
            font-size: 22px;
            font-weight: 600;
        }

        .folio-lint {
            color: var(--text-dim);
            font-size: 15px;
        }

        .flux-node {
            margin-top: auto;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Value Proof (Div) */
        .proof-bedrock {
            background: var(--bg-deep);
            padding: 100px 40px;
            margin-top: 40px;
        }

        .proof-veil {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .proof-clump {
            flex: 1;
            min-width: 320px;
        }

        .proof-bead {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
        }

        .bead-pica {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .bead-crest {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .bead-lint {
            color: var(--text-dim);
        }

        /* Footer */
        .stem-echo {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 60px 40px;
            background: var(--bg-dark);
        }

        .echo-vault {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .echo-clump {
            min-width: 200px;
        }

        .echo-crest {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text-main);
        }

        .echo-spool {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .echo-node {
            color: var(--text-dim);
            text-decoration: none;
            transition: var(--transition);
            font-size: 14px;
        }

        .echo-node:hover {
            color: var(--primary);
        }

        .echo-lint {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.03);
            text-align: center;
            color: #555;
            font-size: 13px;
            width: 100%;
        }

        @media (max-width: 768px) {
            .orbit-vault { padding: 0 20px; }
            .spool { display: none; }
            .prime-zenith { padding: 40px 20px; text-align: center; }
            .zenith-clump { padding-right: 0; margin-bottom: 40px; }
            .zenith-lint { margin: 0 auto 40px; }
            .vista-orbit { padding: 60px 20px; }
            .proof-bedrock { padding: 60px 20px; }
        }

.nexus-apex{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
        }

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

.nexus-apex .nexus-orbit-ribbon{
            background: rgba(20, 20, 20, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50px;
            padding: 8px 32px;
            display: flex;
            align-items: center;
            gap: 40px;
        }

.nexus-apex .nexus-glyph{
            height: 32px;
            display: flex;
            align-items: center;
        }

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

.nexus-apex .nexus-spool{
            display: flex;
            gap: 28px;
            list-style: none;
        }

.nexus-apex .nexus-node{
            color: #a0a0a0;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: 0.25s ease;
        }

.nexus-apex .nexus-node:hover, .nexus-apex .nexus-node.active{
            color: #da1e2e;
        }

.nexus-apex .nexus-snap{
            display: inline-flex;
            align-items: center;
            padding: 16px 36px;
            background-color: #da1e2e;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 17px;
            transition: 0.25s ease;
            box-shadow: 0 10px 30px rgba(218, 30, 46, 0.4);
        }

.nexus-apex .nexus-snap:hover{
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(218, 30, 46, 0.4);
            filter: brightness(1.1);
        }

@media (max-width: 768px){.nexus-apex .nexus-orbit-vault{
                padding: 0 20px;
            }

.nexus-apex .nexus-orbit-ribbon{
                gap: 20px;
                padding: 8px 16px;
            }

.nexus-apex .nexus-spool{
                display: none; 
            }}

.echo-stem {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
}
.echo-stem,
.echo-stem *,
.echo-stem *::before,
.echo-stem *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.echo-stem{
            background-color: #050505;
            padding: 80px 40px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.echo-stem .echo-bedrock-vault{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 60px;
        }

.echo-stem .echo-bedrock-brand-veil{
            flex: 1;
            min-width: 280px;
        }

.echo-stem .echo-bedrock-crest{
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

.echo-stem .echo-bedrock-lint{
            color: #a0a0a0;
            font-size: 14px;
            line-height: 2;
        }

.echo-stem .echo-bedrock-clump{
            display: flex;
            gap: 80px;
            flex-wrap: wrap;
        }

.echo-stem .echo-bedrock-bead{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.echo-stem .echo-bedrock-bead-crest{
            font-size: 16px;
            font-weight: 600;
            color: white;
        }

.echo-stem .echo-bedrock-node{
            text-decoration: none;
            color: #a0a0a0;
            font-size: 14px;
            transition: 0.25s ease;
        }

.echo-stem .echo-bedrock-node:hover{
            color: #da1e2e;
        }

.echo-stem .echo-bedrock-ribbon{
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: #555;
            font-size: 13px;
        }