:root {
            --color-brand: #9c3eee;
            --color-brand-dark: #741cc7;
            --color-brand-light: #f5eeff;
            --color-text-main: #111118;
            --color-text-sub: #4b4b5a;
            --color-bg-base: #fcfcfd;
            --color-bg-surface: #ffffff;
            --color-border: #eaeaea;
            --color-success: #10b981;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 24px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(156, 62, 238, 0.08);
            --shadow-lg: 0 12px 32px rgba(156, 62, 238, 0.12);
            --transition: 0.25s ease;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex item safety */
        }

        body {
            font-family: var(--font-family);
            background-color: var(--color-bg-base);
            color: var(--color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        /* 强制复用导航栏样式 */
        .peak {
            background-color: rgba(252, 252, 253, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
        }

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

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

        .queue {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .node {
            color: var(--color-text-sub);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }

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

        .node.active {
            color: var(--color-brand);
            font-weight: 600;
        }

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

        /* 页面级容器 */
        .crate {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .vault {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        /* Hero / Intro Article */
        .splash {
            width: 100%;
            background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-brand-light) 100%);
            padding: 6rem 2rem 4rem;
            display: flex;
            justify-content: center;
            border-bottom: 1px solid var(--color-border);
        }

        .splash .shell {
            max-width: 1000px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .splash .part {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .name-primary {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--color-text-main);
            white-space: normal;
        }

        .byte-lead {
            font-size: 1.125rem;
            color: var(--color-text-sub);
            line-height: 1.8;
            word-break: keep-all;
        }

        /* Data UI - Hero */
        .splash .vol {
            flex: 1;
            min-width: 300px;
            background: var(--color-bg-surface);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(156, 62, 238, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .ui-belt {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        .ui-name {
            font-family: monospace;
            color: var(--color-text-sub);
            font-size: 0.9rem;
        }

        .ui-batch {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 8px;
        }

        .ui-byte {
            aspect-ratio: 1;
            border-radius: 4px;
            background-color: var(--color-border);
            transition: background-color var(--transition), transform var(--transition);
        }

        .ui-byte:hover {
            transform: scale(1.1);
        }

        .ui-byte.bad {
            background-color: #ef4444;
            animation: pulse-bad 2s infinite alternate;
        }

        .ui-byte.fixed {
            background-color: var(--color-success);
        }

        @keyframes pulse-bad {
            0% { opacity: 0.6; }
            100% { opacity: 1; }
        }

        /* Steps Article */
        .stack {
            width: 100%;
            max-width: 1200px;
            padding: 5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .name-arch {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            color: var(--color-text-main);
            white-space: normal;
        }

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

        .chunk {
            background: var(--color-bg-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            position: relative;
            overflow: hidden;
        }

        .chunk:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(156, 62, 238, 0.3);
        }

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

        .chunk:hover::before {
            opacity: 1;
        }

        .glyph {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background-color: var(--color-brand-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-brand);
        }

        .glyph svg {
            width: 24px;
            height: 24px;
            stroke-width: 2;
            stroke: currentColor;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .name-chunk {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-main);
            white-space: normal;
        }

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

        /* Tips / Strategy Section */
        .bundle {
            width: 100%;
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
            padding: 5rem 2rem;
            display: flex;
            justify-content: center;
        }

        .bundle .shell {
            max-width: 900px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-items: center;
            text-align: center;
        }

        .bundle .chunk {
            width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 3rem;
            background: linear-gradient(135deg, #ffffff 0%, var(--color-bg-base) 100%);
        }

        .ui-stat {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: left;
            flex: 1;
            min-width: 200px;
        }

        .ui-stat .name-stat {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-brand);
            line-height: 1;
        }

        .ui-stat .byte-stat {
            color: var(--color-text-sub);
            font-weight: 500;
        }

        .ui-progress-shell {
            flex: 2;
            min-width: 250px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ui-track {
            width: 100%;
            height: 12px;
            background-color: var(--color-border);
            border-radius: 6px;
            overflow: hidden;
            display: flex;
        }

        .ui-fill-arch {
            height: 100%;
            background-color: var(--color-text-sub);
            width: 95%;
        }

        .ui-fill-record {
            height: 100%;
            background-color: var(--color-brand);
            width: 5%;
        }

        .ui-legend {
            display: flex;
            gap: 1.5rem;
            font-size: 0.85rem;
            color: var(--color-text-sub);
            justify-content: flex-end;
        }

        .ui-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 6px;
        }

        .ui-dot.main { background-color: var(--color-text-sub); }
        .ui-dot.record { background-color: var(--color-brand); }

        /* Action Press */
        .press {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-brand);
            color: #ffffff;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 4px 14px rgba(156, 62, 238, 0.4);
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            margin-top: 1rem;
        }

        .press:hover {
            background-color: var(--color-brand-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(156, 62, 238, 0.5);
            color: #ffffff;
        }

        /* Footer */
        .root {
            background-color: var(--color-bg-base);
            border-top: 1px solid var(--color-border);
            padding: 3rem 2rem;
            text-align: center;
            color: var(--color-text-sub);
            font-size: 0.9rem;
        }

        .root .name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-main);
            margin-bottom: 1rem;
        }

        .path-batch {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .queue {
                display: none; /* Mobile menu logic handled by external JS if needed, hiding for structural simplicity here */
            }
            .splash {
                padding-top: 3rem;
            }
            .splash .shell {
                gap: 2rem;
            }
            .bundle .chunk {
                flex-direction: column;
                gap: 2rem;
                padding: 2rem;
            }
            .ui-progress-shell {
                width: 100%;
            }
            .ui-legend {
                justify-content: center;
            }
        }

.shelf-peak, .shelf-peak .shelf-shelf, .shelf-peak .shelf-queue{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.shelf-peak a.shelf-node{
            text-decoration: none;
            transition: all 0.25s ease;
        }

.shelf-peak{
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #eaeaea;
            position: sticky;
            top: 0;
            z-index: 100;
            justify-content: center;
        }

.shelf-peak .shelf-shelf{
            width: 100%;
            max-width: 1280px;
            padding: 1rem 5%;
            justify-content: space-between;
            align-items: center;
        }

.shelf-peak .shelf-seal{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.shelf-peak .shelf-seal img{
            height: 32px;
            width: auto;
            display: block;
        }

.shelf-peak .shelf-queue{
            gap: 2rem;
            align-items: center;
        }

.shelf-peak .shelf-node{
            color: #4b4b5a;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
        }

.shelf-peak .shelf-node:hover, .shelf-peak .shelf-node.active{
            color: #9c3eee;
        }

.shelf-peak .shelf-node::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #9c3eee;
            transition: all 0.25s ease;
        }

.shelf-peak .shelf-node:hover::after, .shelf-peak .shelf-node.active::after{
            width: 100%;
        }

@media (max-width: 768px){.shelf-peak .shelf-queue{
                display: none; 
            }}

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

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

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

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

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

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

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

.tail-root, .tail-root .tail-tail{
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

.tail-root .tail-name, .tail-root .tail-byte{
            word-break: break-word;
            overflow-wrap: break-word;
            min-width: 0;
        }

.tail-root .tail-name{
            white-space: normal;
            font-weight: 700;
            color: #111118;
        }

.tail-root .tail-byte{
            word-break: keep-all;
            color: #4b4b5a;
        }

.tail-root{
            width: 100%;
            background-color: #0a0a0f;
            padding: 4rem 5%;
            justify-content: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.tail-root .tail-tail{
            width: 100%;
            max-width: 1280px;
            justify-content: space-between;
            align-items: center;
        }

.tail-root .tail-tail .tail-name{
            color: white;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }

.tail-root .tail-tail .tail-byte{
            color: rgba(255,255,255,0.4);
            font-size: 0.875rem;
        }

@media (max-width: 768px){.tail-root .tail-tail{
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }}