: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;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-soft: 0 10px 25px -5px rgba(45, 55, 72, 0.05), 0 8px 10px -6px rgba(45, 55, 72, 0.01);
            --shadow-hover: 0 20px 40px -8px rgba(45, 55, 72, 0.1), 0 0 0 1px rgba(219, 121, 112, 0.05);
            --transition: all 0.35s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--color-bg-base);
            color: var(--color-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* 强制换行与Flex规则 */
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-blip {
            min-width: 0;
        }
        .word-break {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .word-keep {
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 导航栏复用样式 */
        .peak {
            background: rgba(252, 251, 250, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nexus {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .sigil {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .sigil img {
            height: 32px;
            width: auto;
        }
        .thread {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }
        .bond {
            text-decoration: none;
            color: var(--color-text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            min-width: 0;
        }
        .bond:hover, .bond:focus {
            color: var(--color-primary);
        }
        .bond.active {
            color: var(--color-primary);
            font-weight: 600;
            position: relative;
        }
        .bond.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-primary);
            border-radius: 2px;
        }

        /* 布局容器 */
        .mesh {
            width: 100%;
        }
        .cloak {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* 区块 1: Intro (Hero变体) */
        .flare {
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at 50% 0%, var(--color-primary-light) 0%, transparent 70%);
        }
        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--color-text-main);
            margin-bottom: 1.5rem;
            white-space: normal;
        }
        .flare .lore {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--color-text-muted);
            max-width: 720px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }
        /* 创意种子：浮动节点装饰 */
        .flare-rune {
            position: absolute;
            opacity: 0.6;
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }
        .flare-rune:nth-child(1) { top: 10%; left: 15%; width: 120px; color: var(--color-primary-light); animation-delay: 0s; }
        .flare-rune:nth-child(2) { top: 30%; right: 10%; width: 80px; color: var(--color-bg-alt); animation-delay: 2s; }
        .flare-rune:nth-child(3) { bottom: 20%; left: 20%; width: 60px; color: rgba(219, 121, 112, 0.1); animation-delay: 4s; }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* 区块 2: Server List (detail) */
        .pulse {
            padding: 5rem 0;
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .pulse .apex {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            white-space: normal;
        }
        .hive {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .pod {
            background: var(--color-bg-base);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-break: break-word;
        }
        .pod:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(219, 121, 112, 0.2);
        }
        .pod .rune {
            width: 48px;
            height: 48px;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .pod .apex {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            text-align: left;
        }
        .pod .lore {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        .pod .clan {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            background: var(--color-surface);
            padding: 1rem;
            border-radius: var(--radius-sm);
        }
        .blip {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: var(--color-text-main);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            min-width: 0;
        }
        .blip::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--color-primary);
            border-radius: 50%;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        /* 区块 3: Channel Recommendations (context) */
        .beacon {
            padding: 6rem 0;
            background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-alt) 100%);
        }
        .beacon .apex {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            white-space: normal;
        }
        .beacon > .lore {
            color: var(--color-text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
        }
        .beacon .clan {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .packet {
            flex: 1 1 calc(33.333% - 1.5rem);
            min-width: 280px;
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: var(--transition);
        }
        .packet:hover {
            border-color: var(--color-primary);
            box-shadow: 0 8px 24px rgba(219, 121, 112, 0.08);
        }
        .packet .rune {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--color-primary);
            background: var(--color-primary-light);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
        }
        .packet-info {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            min-width: 0;
        }
        .packet .lore {
            font-weight: 500;
            color: var(--color-text-main);
            margin: 0;
            word-break: keep-all;
        }
        .packet-code {
            font-family: ui-monospace, SFMono-Regular, monospace;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            background: var(--color-bg-base);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            display: inline-block;
            width: fit-content;
        }

        /* 区块 4: Connection Guide (steps) */
        .orbit {
            padding: 6rem 0;
            background: var(--color-surface);
        }
        .orbit .apex {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            white-space: normal;
        }
        .vein {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }
        .vein::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 24px;
            bottom: 24px;
            width: 2px;
            background: var(--color-border);
            z-index: 0;
        }
        .vein .blip {
            display: flex;
            gap: 2rem;
            position: relative;
            z-index: 1;
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid transparent;
            transition: var(--transition);
            min-width: 0;
        }
        .vein .blip:hover {
            border-color: var(--color-border);
            box-shadow: var(--shadow-soft);
        }
        .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-primary-light);
            color: var(--color-primary);
            font-weight: 700;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 4px solid var(--color-surface);
            box-shadow: 0 0 0 1px var(--color-border);
        }
        .step-cloak {
            padding-top: 0.5rem;
            min-width: 0;
        }
        .step-cloak .apex {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-align: left;
        }
        .step-cloak .lore {
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        /* 页脚 */
        .sole {
            background-color: var(--color-bg-base);
            border-top: 1px solid var(--color-border);
            padding: 4rem 0 2rem;
            color: var(--color-text-muted);
        }
        .root {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .sole .apex {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-main);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }
        .anchor {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            min-width: 0;
        }
        .anchor .bond {
            font-size: 0.9rem;
        }
        .sole-lore {
            width: 100%;
            text-align: center;
            font-size: 0.85rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(226, 232, 240, 0.5);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .nexus { padding: 1rem; flex-direction: column; gap: 1rem; }
            .thread { justify-content: center; gap: 1rem; }
            .flare { padding: 5rem 0 4rem; }
            .hive { grid-template-columns: 1fr; }
            .packet { flex: 1 1 100%; }
            .vein::before { left: 24px; }
            .vein .blip { flex-direction: column; gap: 1rem; padding: 1rem; }
            .step-num { width: 36px; height: 36px; font-size: 1rem; border-width: 2px; }
            .vein::before { left: 18px; }
            .root { flex-direction: column; text-align: center; }
            .anchor { justify-content: center; }
        }

.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;
        }