:root {
            --primary: #2e84cf;
            --primary-gnaw: #3b95e6;
            --bg: #020617;
            --surface: #0f172a;
            --surface-billet: #1e293b;
            --crown-color: #f8fafc;
            --grain-color: #94a3b8;
            --radius: 18px;
            --sheath-width: 1200px;
        }

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

        body {
            background-color: var(--bg);
            color: var(--grain-color);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* 导航区域 - 严格继承 */
        .apex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .sluice {
            max-width: var(--sheath-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            flex-wrap: wrap;
        }

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

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

        .twine {
            color: var(--grain-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.15s ease;
        }

        .twine:hover, .twine.active {
            color: var(--primary);
        }

        /* 主体内容布局 */
        .haven {
            display: block;
            min-height: 100vh;
        }

        .pond {
            max-width: var(--sheath-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero区 - Article */
        .lodge {
            padding: 6rem 0 4rem;
            text-align: center;
        }

        .lodge-sheath {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .crown-vista {
            font-size: clamp(2.5rem, 6vw, 4.2rem);
            color: var(--crown-color);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.02em;
            max-width: 900px;
            word-break: keep-all;
        }

        .grain-drift {
            font-size: 1.25rem;
            max-width: 650px;
            margin: 1.5rem auto 2.5rem;
        }

        .lens-vista {
            width: 100%;
            max-width: 1000px;
            border-radius: var(--radius);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.15s ease;
        }

        .lens-vista:hover {
            transform: scale(1.01);
        }

        /* 效率功能区 - Aside */
        .vista {
            padding: 5rem 0;
            background: linear-gradient(180deg, transparent 0%, rgba(46, 132, 207, 0.03) 100%);
        }

        .crest-sheath {
            margin-bottom: 4rem;
            text-align: left;
        }

        .crown-streak {
            font-size: 2.25rem;
            color: var(--crown-color);
            margin-bottom: 1rem;
        }

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

        .shingle-stump {
            flex: 1;
            min-width: 300px;
            background: var(--surface);
            padding: 2.5rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .shingle-stump:hover {
            border-color: var(--primary);
            background: var(--surface-billet);
            transform: translateY(-5px);
        }

        .mark-spark {
            width: 48px;
            height: 48px;
            background: rgba(46, 132, 207, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .crown-twig {
            font-size: 1.5rem;
            color: var(--crown-color);
            font-weight: 600;
        }

        /* 快捷键区 - Section */
        .basin-pond {
            padding: 5rem 0 8rem;
        }

        .casing-billet {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .streak-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .streak-table th {
            background: rgba(255, 255, 255, 0.03);
            color: var(--crown-color);
            padding: 1.25rem 2rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .streak-table td {
            padding: 1.25rem 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
        }

        .stump-key {
            background: rgba(255, 255, 255, 0.08);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-family: monospace;
            color: var(--primary);
            margin-right: 0.5rem;
        }

        /* 按钮语法 */
        .spark-prime {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: #fff;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 10px 25px rgba(46, 132, 207, 0.3);
            border: none;
            cursor: pointer;
        }

        .spark-prime:hover {
            background: var(--primary-gnaw);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(46, 132, 207, 0.4);
        }

        /* 页脚 */
        .base {
            background: #020617;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 0 2rem;
        }

        .delta-haven {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .depth-info {
            flex: 1;
            min-width: 250px;
        }

        .crown-base {
            color: var(--crown-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .clump-twine {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .twig-sheath {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .depth-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .sluice {
                padding: 1rem;
            }
            .raft {
                gap: 1rem;
                margin-top: 1rem;
            }
            .shingle-stump {
                min-width: 100%;
            }
            .clump-twine {
                gap: 2rem;
            }
        }

.current-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--grain-color);
}
.current-apex,
.current-apex *,
.current-apex *::before,
.current-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.current-apex a.current-twine.current-current,
.current-apex a.current-twine {
    --aisite-shell-nav-padding: 0.5rem 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.current-apex a.current-twine.current-current,
.current-apex a.current-twine.current-current:hover,
.current-apex a.current-twine.current-current:focus,
.current-apex a.current-twine.current-current:active,
.current-apex a.current-twine.current-current.active,
.current-apex a.current-twine.current-current[aria-current="page"],
.current-apex a.current-twine,
.current-apex a.current-twine:hover,
.current-apex a.current-twine:focus,
.current-apex a.current-twine:active,
.current-apex a.current-twine.active,
.current-apex a.current-twine[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.current-apex{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(2, 6, 23, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.current-apex .current-sluice{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.current-apex .current-glyph{
            height: 38px;
            min-width: 0;
        }

.current-apex .current-glyph img{
            height: 100%;
            display: block;
        }

.current-apex .current-raft{
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

.current-apex .current-twine{
            text-decoration: none;
            color: #94a3b8;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            padding: 0.5rem 0;
        }

.current-apex .current-twine:hover, .current-apex .current-twine.current-current{
            color: #2e84cf;
        }

@media (max-width: 768px){.current-apex .current-sluice{
                justify-content: center;
                gap: 1rem;
            }

.current-apex .current-raft{
                justify-content: center;
            }}

.current-apex {
    background: rgb(2, 6, 23);
    background-image: none;
}

.basin-base {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--grain-color);
}
.basin-base,
.basin-base *,
.basin-base *::before,
.basin-base *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.basin-base{
            background: #020617;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 5rem 0 3rem;
            margin-top: 5rem;
        }

.basin-base .basin-basin-grid{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

.basin-base .basin-depth-brand{
            grid-column: span 2;
        }

.basin-base .basin-crown-base{
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

.basin-base .basin-grain-base{
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

.basin-base .basin-twine-base{
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            transition: color 0.15s ease;
        }

.basin-base .basin-twine-base:hover{
            color: #2e84cf;
        }

@media (max-width: 1024px){.basin-base .basin-depth-brand{
                grid-column: span 1;
            }}