/* 变量系统 - 继承主站视觉契约 */
        :root {
            --color-primary: #db7970;
            --color-primary-dark: #c2655d;
            --color-primary-light: #fdf2f0;
            --color-bg-base: #fcfbfa;
            --color-bg-alt: #f3f0ec;
            --color-surface: #ffffff;
            --color-text-main: #2d3748;
            --color-text-muted: #64748b;
            --color-border: #e2e8f0;
            --color-terminal-bg: #0f172a;
            --color-terminal-text: #38bdf8;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-full: 9999px;
            --shadow-sm: 0 4px 6px -1px rgba(45, 55, 72, 0.05);
            --shadow-md: 0 10px 20px -5px rgba(45, 55, 72, 0.08);
            --shadow-lg: 0 20px 40px -8px rgba(45, 55, 72, 0.12), 0 0 0 1px rgba(219, 121, 112, 0.05);
            --transition: all 0.35s ease;
            --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
        }

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

        body {
            font-family: var(--font-base);
            color: var(--color-text-main);
            background-color: var(--color-bg-base);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 全局强制文本与Flex约束 */
        .lore, .apex, p, h1, h2, h3, span, a, div {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 导航栏复用样式 (严格按照要求) */
        .peak {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 251, 250, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        }

        .nexus {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .nexus > * { min-width: 0; }

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

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

        .thread > * { min-width: 0; }

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

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

        .bond.active {
            color: var(--color-primary);
            font-weight: 600;
        }

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

        /* 布局网格与壳层 */
        .mesh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero 区域 (重塑你的 IRC 终端) */
        .flare-intro {
            padding: 8rem 0 6rem;
            background: radial-gradient(circle at top right, var(--color-primary-light) 0%, transparent 40%),
                        radial-gradient(circle at bottom left, var(--color-bg-alt) 0%, transparent 40%);
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }

        .flare-intro > * { min-width: 0; }

        .flare-intro .mesh {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

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

        .intro-lore {
            flex: 1 1 450px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1.5rem;
        }

        .intro-lore > * { min-width: 0; }

        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--color-text-main);
            white-space: normal;
        }

        .apex-mega span {
            color: var(--color-primary);
        }

        .lore-lead {
            font-size: 1.25rem;
            color: var(--color-text-muted);
            line-height: 1.8;
            max-width: 540px;
        }

        .intro-visual {
            flex: 1 1 500px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
        }

        .intro-visual > * { min-width: 0; }

        /* 终端视窗 CSS 画作 */
        .cloak-terminal {
            width: 100%;
            background: var(--color-terminal-bg);
            border-radius: var(--radius-lg);
            box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(0);
            transition: var(--transition);
        }

        .cloak-terminal:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.3);
        }

        .vein-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            gap: 0.5rem;
        }

        .vein-top > * { min-width: 0; }

        .rune-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .rune-dot:nth-child(1) { background: #ff5f56; }
        .rune-dot:nth-child(2) { background: #ffbd2e; }
        .rune-dot:nth-child(3) { background: #27c93f; }

        .lore-code {
            padding: 2rem;
            font-family: var(--font-mono);
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 0.5rem;
        }

        .lore-code > * { min-width: 0; }

        .lore-code span.cmd { color: var(--color-terminal-text); }
        .lore-code span.path { color: #a78bfa; }
        .lore-code span.success { color: #34d399; }

        /* 能力矩阵区域 (高频实用脚本推荐) */
        .beacon-capability {
            padding: 6rem 0;
            background-color: var(--color-surface);
            display: flex;
            flex-wrap: wrap;
        }

        .beacon-capability > * { min-width: 0; }

        .beacon-capability .mesh {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 4rem;
            width: 100%;
        }

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

        .apex-mesh {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--color-text-main);
            margin-bottom: 1rem;
        }

        .hive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            width: 100%;
        }

        .pod-feature {
            background: var(--color-surface);
            padding: 3rem 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

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

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

        .pod-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .pod-feature:hover::before {
            opacity: 1;
        }

        .rune-rune {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        .apex-packet {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--color-text-main);
        }

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

        /* 开发者指南区域 (编写你的第一个插件) */
        .pulse-dev {
            padding: 8rem 0;
            background-color: var(--color-bg-base);
            display: flex;
            flex-wrap: wrap;
        }

        .pulse-dev > * { min-width: 0; }

        .pulse-dev .mesh {
            display: flex;
            flex-wrap: wrap;
            align-items: stretch;
            gap: 4rem;
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 4rem;
            border: 1px solid rgba(255, 255, 255, 0.8);
            width: 100%;
        }

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

        .dev-lore {
            flex: 1 1 350px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
        }

        .dev-lore > * { min-width: 0; }

        .clan-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .clan-tags > * { min-width: 0; }

        .spark-tag {
            padding: 0.4rem 1rem;
            background: var(--color-bg-alt);
            color: var(--color-text-main);
            font-size: 0.875rem;
            border-radius: var(--radius-full);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .dev-code {
            flex: 1 1 450px;
            background: #fafaf9;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 2rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            overflow-x: auto;
        }

        .dev-code pre {
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
            color: #44403c;
        }
        
        .dev-code .keyword { color: #d946ef; font-weight: 600; }
        .dev-code .string { color: #16a34a; }
        .dev-code .function { color: #2563eb; }
        .dev-code .comment { color: #94a3b8; font-style: italic; }

        /* 部署指引区域 (如何加载与运行) */
        .flare-steps {
            padding: 6rem 0 8rem;
            background-color: var(--color-surface);
            display: flex;
            flex-wrap: wrap;
            border-top: 1px solid var(--color-border);
        }

        .flare-steps > * { min-width: 0; }

        .flare-steps .mesh {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 4rem;
            width: 100%;
        }

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

        .hive-timeline {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }

        .hive-timeline > * { min-width: 0; }

        .shard-step {
            flex: 1 1 280px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 1.25rem;
            padding: 2.5rem;
            background: var(--color-bg-base);
            border-radius: var(--radius-md);
            position: relative;
            z-index: 1;
        }

        .shard-step > * { min-width: 0; }

        .rune-number {
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(219, 121, 112, 0.3);
        }

        /* 页脚区域 */
        .sole {
            background-color: var(--color-bg-base);
            border-top: 1px solid var(--color-border);
            padding: 4rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
        }

        .sole > * { min-width: 0; }

        .root {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            width: 100%;
        }

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

        .anchor-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-main);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .lore-copyright {
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .pulse-dev .mesh {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .thread {
                gap: 1rem;
                justify-content: center;
                width: 100%;
                margin-top: 1rem;
            }
            .nexus {
                flex-direction: column;
            }
            .flare-intro {
                padding: 4rem 0;
            }
            .pulse-dev .mesh {
                padding: 2rem 1.5rem;
            }
        }

.nexus-peak{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 251, 250, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        }

.nexus-peak .nexus-nexus{
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

.nexus-peak .nexus-thread{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.nexus-peak .nexus-bond{
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            position: relative;
        }

.nexus-peak .nexus-bond:hover, .nexus-peak .nexus-bond.active{
            color: #db7970;
        }

.nexus-peak .nexus-bond.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #db7970;
            border-radius: 2px;
        }

@media (max-width: 768px){.nexus-peak .nexus-thread{
                display: none; 
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }

.nexus-peak:hover .nexus-thread{
                display: flex;
            }}

.nexus-peak {
    background: rgb(252, 251, 250);
    background-image: none;
}

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

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

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

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

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

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

.root-root .root-apex{
            font-weight: 700;
            color: #2d3748;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.root-root .root-lore-sm{
            font-size: 0.95rem;
            color: #64748b;
        }

.root-root{
            background-color: #1a202c;
            color: #a0aec0;
            padding: 4rem 2rem;
            text-align: center;
        }

.root-root .root-root-mesh{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

.root-root .root-apex{
            color: #fff;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }

.root-root .root-root-clan{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

.root-root .root-root-bond{
            color: #a0aec0;
            text-decoration: none;
            transition: all 0.35s ease;
        }

.root-root .root-root-bond:hover{
            color: #fff;
        }