/* 变量定义：继承首页深色基因 */
        :root {
            --bg-dark: #0a0e0b;
            --bg-surface: #121814;
            --bg-surface-elevated: #1a231d;
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            --accent-green: #62c73a;
            --accent-green-dim: rgba(98, 199, 58, 0.15);
            --radius-soft: 18px;
            --radius-pill: 999px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
            --shadow-float: 0 10px 30px rgba(0, 0, 0, 0.5);
            --shadow-glow: inset 0 0 80px rgba(98, 199, 58, 0.05), 0 20px 40px rgba(0, 0, 0, 0.4);
            --transition-base: 0.15s ease;
        }

        /* 基础重置与排版规范 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: var(--font-sans);
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 强制Flex安全规则 */
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-wrap > * {
            min-width: 0;
        }

        /* 顶部导航壳层 (继承自首页) */
        .apex {
            background-color: rgba(10, 14, 11, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 999;
            border-bottom: var(--border-subtle);
        }

        .bios {
            max-width: 1320px;
            margin: 0 auto;
            padding: 1rem 2rem;
            align-items: center;
            justify-content: space-between;
        }

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

        .crest img {
            height: 28px;
            width: auto;
            display: block;
        }

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

        .wire {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition-base);
        }

        .wire:hover,
        .wire.active {
            color: var(--accent-green);
        }

        /* 主容器 */
        .skin-core {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding-bottom: 6rem;
        }

        /* Section 1: Hero (非对称网格变体) */
        .splash-asymmetric {
            max-width: 1320px;
            margin: 4rem auto 0;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .splash-byte-cluster {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .head-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            white-space: normal;
        }

        .head-mega span {
            color: var(--accent-green);
        }

        .byte-lead {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 90%;
            word-break: keep-all;
        }

        .trigger-cluster {
            margin-top: 1rem;
            gap: 1rem;
        }

        .plug-primary {
            background-color: var(--accent-green);
            color: #000;
            padding: 0.8rem 2rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform var(--transition-base), box-shadow var(--transition-base);
            box-shadow: 0 8px 24px rgba(98, 199, 58, 0.2);
            border: 1px solid transparent;
        }

        .plug-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(98, 199, 58, 0.4);
        }

        /* 纯视觉几何图形 (替代真实图片) */
        .ignite-blueprint {
            background: linear-gradient(145deg, var(--bg-surface), var(--bg-dark));
            border-radius: 24px;
            border: var(--border-subtle);
            box-shadow: var(--shadow-glow);
            padding: 3rem;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        .blueprint-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .blueprint-chunk {
            background: rgba(255, 255, 255, 0.03);
            border: 1px dashed rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            transition: background var(--transition-base), border-color var(--transition-base);
        }
        
        .blueprint-chunk:hover {
            background: var(--accent-green-dim);
            border-color: var(--accent-green);
        }

        .blueprint-glyph {
            width: 48px;
            height: 48px;
            fill: none;
            stroke: var(--accent-green);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .blueprint-byte {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 1px;
        }

        /* 装饰性背景光晕 */
        .flare {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(98, 199, 58, 0.15) 0%, rgba(0,0,0,0) 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
        }

        /* Section 2: Tutorial Steps (步骤引导) */
        .dock-tutorial {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .head-shell {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .byte-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 800px;
            margin-bottom: 3rem;
        }

        .track-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .ignite-pixel {
            background: var(--bg-surface);
            border-radius: var(--radius-soft);
            border: var(--border-subtle);
            padding: 2.5rem 2rem;
            transition: transform var(--transition-base), box-shadow var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .ignite-pixel:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
            border-color: rgba(98, 199, 58, 0.3);
        }

        .step-flag {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--accent-green-dim);
            color: var(--accent-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .head-chunk {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .byte-chunk {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Section 3: Structure (目录树展示) */
        .vault-structure {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .structure-visual {
            background: var(--bg-surface-elevated);
            border-radius: var(--radius-soft);
            border: var(--border-subtle);
            padding: 2rem;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: 0.9rem;
            color: var(--text-secondary);
            box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
        }

        .tree-entry {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem 0;
            transition: color 0.2s;
        }
        
        .tree-entry:hover {
            color: var(--text-primary);
        }

        .tree-entry svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .tree-indent {
            margin-left: 1.5rem;
            border-left: 1px solid rgba(255,255,255,0.1);
            padding-left: 1rem;
        }

        .tree-iso {
            color: var(--accent-green);
        }

        /* Section 4: FAQ (常见疑问) */
        .dock-faq {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .faq-cluster {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .faq-entry {
            background: var(--bg-surface);
            border: var(--border-subtle);
            border-radius: 12px;
            padding: 1.5rem 2rem;
            transition: background var(--transition-base);
        }

        .faq-entry:hover {
            background: var(--bg-surface-elevated);
        }

        .faq-head {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .faq-head::before {
            content: "Q.";
            color: var(--accent-green);
            font-weight: 800;
        }

        .faq-byte {
            color: var(--text-secondary);
            font-size: 0.95rem;
            padding-left: 1.8rem;
        }

        /* Footer */
        .base-root {
            border-top: var(--border-subtle);
            padding: 4rem 2rem;
            text-align: center;
            background: var(--bg-surface);
        }

        .base-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .base-byte {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .splash-asymmetric,
            .vault-structure {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .ignite-blueprint {
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .bios {
                padding: 1rem;
            }
            .array {
                gap: 1rem;
                justify-content: center;
                width: 100%;
                margin-top: 1rem;
            }
            .head-mega {
                font-size: 2.2rem;
            }
            .skin-core {
                gap: 4rem;
                padding-bottom: 4rem;
            }
            .track-steps {
                grid-template-columns: 1fr;
            }
            .vault-structure {
                padding: 0 1.5rem;
            }
        }

.bios-apex .bios-flex-wrap{
            display: flex;
            flex-wrap: wrap;
        }

.bios-apex .bios-flex-wrap > *{
            min-width: 0;
        }

.bios-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 14, 11, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1rem 0;
        }

.bios-apex .bios-bios{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            justify-content: space-between;
            align-items: center;
        }

.bios-apex .bios-crest{
            display: flex;
            align-items: center;
            height: 36px;
        }

.bios-apex .bios-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.bios-apex .bios-array{
            display: flex;
            gap: 2rem;
            align-items: center;
        }

.bios-apex .bios-wire{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
        }

.bios-apex .bios-wire:hover, .bios-apex .bios-wire:focus, .bios-apex .bios-wire.active{
            color: #62c73a;
        }

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

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

.root-skin {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-primary);
}
.root-skin,
.root-skin *,
.root-skin *::before,
.root-skin *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.root-skin .root-flex-wrap{
            display: flex;
            flex-wrap: wrap;
        }

.root-skin .root-flex-wrap > *{
            min-width: 0;
        }

.root-skin .root-byte-wrap{
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }

.root-skin .root-byte-cn{
            word-break: keep-all;
        }

.root-skin{
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

.root-skin .root-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 14, 11, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1rem 0;
        }

.root-skin .root-bios{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            justify-content: space-between;
            align-items: center;
        }

.root-skin .root-crest{
            display: flex;
            align-items: center;
            height: 36px;
        }

.root-skin .root-crest img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.root-skin .root-array{
            display: flex;
            gap: 2rem;
            align-items: center;
        }

.root-skin .root-wire{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
        }

.root-skin .root-wire:hover, .root-skin .root-wire:focus, .root-skin .root-wire.active{
            color: #62c73a;
        }

.root-skin .root-dock{
            flex: 1;
            width: 100%;
        }

.root-skin .root-splash{
            max-width: 1320px;
            margin: 6rem auto 8rem;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

@media (min-width: 1024px){.root-skin .root-splash{
                
                grid-template-columns: 1fr 1.85fr;
            }}

.root-skin .root-ignite-byte{
            order: 2;
        }

@media (min-width: 1024px){.root-skin .root-ignite-byte{
                order: 1;
            }}

.root-skin .root-head-mega{
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #a3b8a9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.root-skin .root-byte-lead{
            font-size: 1.125rem;
            color: #9ca3af;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

.root-skin .root-plug{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: #62c73a;
            color: #000;
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            border-radius: 999px;
            transition: all 0.15s ease;
            box-shadow: 0 8px 24px rgba(98, 199, 58, 0.3);
            border: 1px solid transparent;
        }

.root-skin .root-plug:hover, .root-skin .root-plug:focus{
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(98, 199, 58, 0.3);
            background-color: #6ed942;
        }

.root-skin .root-ignite-pixel{
            order: 1;
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(145deg, #121814, #0a0e0b);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 80px rgba(98, 199, 58, 0.05),
                        0 20px 40px rgba(0,0,0,0.4);
        }

@media (min-width: 1024px){.root-skin .root-ignite-pixel{
                order: 2;
                min-height: 600px;
            }}

.root-skin .root-ignite-glyph{
            width: 80%;
            height: 80%;
            filter: drop-shadow(0 0 30px rgba(98, 199, 58, 0.3));
        }

.root-skin .root-vault{
            padding: 8rem 0;
            background: #121814;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

.root-skin .root-vault-inner{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            align-items: center;
            gap: 4rem;
        }

@media (min-width: 1024px){.root-skin .root-vault-inner{
                display: grid;
                grid-template-columns: 1fr 1fr;
            }}

.root-skin .root-head-shell{
            font-size: clamp(2rem, 3vw, 2.75rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

.root-skin .root-cluster-array{
            margin-top: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

.root-skin .root-chunk-point{
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

.root-skin .root-glyph-check{
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            color: #62c73a;
            margin-top: 4px;
        }

.root-skin .root-pixel-showcase{
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 24px 48px rgba(0,0,0,0.5);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.15s ease;
        }

.root-skin .root-pixel-showcase:hover{
            transform: scale(1.02);
        }

.root-skin{
            padding: 8rem 0;
            background: radial-gradient(circle at center, #1a231d 0%, #0a0e0b 100%);
        }

.root-skin .root-skin-inner{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-skin .root-head-center{
            text-align: center;
            margin-bottom: 4rem;
        }

.root-skin .root-iso-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

.root-skin .root-iso-iso{
            background: rgba(26, 35, 29, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            padding: 2.5rem;
            backdrop-filter: blur(12px);
            transition: all 0.15s ease;
        }

.root-skin .root-iso-iso:hover{
            background: rgba(26, 35, 29, 0.8);
            border-color: rgba(98, 199, 58, 0.3);
            transform: translateY(-5px);
        }

.root-skin .root-glyph-feature{
            width: 48px;
            height: 48px;
            color: #62c73a;
            margin-bottom: 1.5rem;
        }

.root-skin .root-head-iso{
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

.root-skin .root-byte-iso{
            color: #9ca3af;
            font-size: 0.95rem;
        }

.root-skin .root-cluster-stats{
            max-width: 1320px;
            margin: 0 auto;
            padding: 6rem 2rem;
            text-align: center;
        }

.root-skin .root-stat-mega{
            font-size: clamp(4rem, 8vw, 7rem);
            font-weight: 900;
            color: #62c73a;
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 10px 30px rgba(98, 199, 58, 0.3);
        }

.root-skin .root-stat-byte{
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

.root-skin .root-vault-ecosystem{
            background: #121814;
            padding: 6rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

.root-skin .root-eco-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-skin .root-disk-eco{
            padding: 2rem;
            border-radius: 18px;
            background: #0a0e0b;
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

.root-skin .root-wire-eco{
            margin-top: auto;
            padding-top: 1.5rem;
            color: #62c73a;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.15s ease;
        }

.root-skin .root-disk-eco:hover .root-wire-eco{
            gap: 0.8rem;
        }

.root-skin .root-base{
            background: #050706;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4rem 0 2rem;
        }

.root-skin .root-root{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

.root-skin .root-head-base{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

.root-skin .root-sector-links{
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

.root-skin .root-socket{
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.root-skin .root-socket:hover{
            color: #62c73a;
        }

.root-skin .root-base-bottom{
            max-width: 1320px;
            margin: 0 auto;
            padding: 2rem 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
        }

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