:root {
            --bg-dark: #07080d;
            --bg-surface: #0e111a;
            --bg-card: rgba(18, 22, 36, 0.85);
            --font-head: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            --text-main: #f0f3fc;
            --text-sub: #94a3b8;
            --text-muted: #64748b;
            --accent: #6a26f1;
            --accent-light: #8b5cf6;
            --accent-glow: rgba(106, 38, 241, 0.4);
            --border: rgba(106, 38, 241, 0.25);
            --border-hover: rgba(139, 92, 246, 0.6);
        }

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

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-head);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 导航栏复用与修正 */
        .tip {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(7, 8, 13, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            width: 100%;
        }

        .shell {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .emblem {
            display: flex;
            align-items: center;
            min-width: 0;
        }

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

        .flock {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
        }

        .path {
            color: var(--text-sub);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.35s ease;
            white-space: nowrap;
        }

        .path:hover,
        .path.active {
            color: #ffffff;
        }

        .path.active {
            position: relative;
        }

        .path.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-light);
            border-radius: 2px;
            box-shadow: 0 0 8px var(--accent-glow);
        }

        .stamp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: #ffffff;
            text-decoration: none;
            box-shadow: 0 4px 18px var(--accent-glow);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.35s ease;
            white-space: nowrap;
        }

        .stamp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(106, 38, 241, 0.6);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* 主体布局与区域黑名单校验规范 */
        main {
            display: block;
            width: 100%;
        }

        .surge {
            padding: 60px 0 80px 0;
            position: relative;
            background: radial-gradient(circle at 50% 0%, rgba(106, 38, 241, 0.15) 0%, transparent 70%);
        }

        .crest {
            margin-bottom: 48px;
            text-align: center;
        }

        .ribbon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 20px;
            background: rgba(106, 38, 241, 0.12);
            border: 1px solid var(--border);
            color: var(--accent-light);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .crown {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .script {
            color: var(--text-sub);
            font-size: clamp(15px, 1.8vw, 18px);
            max-width: 800px;
            margin: 0 auto;
        }

        /* 统一卡片与视觉载体 */
        .cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 48px;
        }

        .paddock {
            flex: 1;
            min-width: 280px;
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(106, 38, 241, 0.15);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .paddock:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(106, 38, 241, 0.3);
        }

        .spark {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(106, 38, 241, 0.2) 0%, rgba(139, 92, 246, 0.3) 100%);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .spark svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--accent-light);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .vault {
            margin-bottom: 24px;
        }

        .vault h3 {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .vault p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.6;
        }

        .steer {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-top: 16px;
        }

        .hoof {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            background: var(--accent);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.35s ease;
            flex: 1;
            min-width: 140px;
        }

        .hoof:hover {
            background: var(--accent-light);
            box-shadow: 0 0 16px var(--accent-glow);
        }

        .charge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 16px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--text-main);
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.35s ease;
        }

        .charge:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* 界面展台展示 */
        .rally {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            margin-top: 32px;
        }

        .snap {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* 功能对比区域 (aside) */
        .realm {
            padding: 80px 0;
            background: var(--bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .slab {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .calf {
            flex: 1;
            min-width: 300px;
            background: rgba(14, 17, 26, 0.8);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            transition: transform 0.35s ease;
        }

        .calf:hover {
            transform: translateY(-4px);
        }

        .calf h3 {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .calf ul {
            list-style: none;
        }

        .calf li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 14px;
            color: var(--text-sub);
            font-size: 14px;
        }

        .calf li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-light);
            box-shadow: 0 0 6px var(--accent-glow);
        }

        /* 系统兼容性与校验 (article) */
        .arena {
            padding: 80px 0;
        }

        .corral {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .paddock-wide {
            flex: 2;
            min-width: 320px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
        }

        .paddock-side {
            flex: 1;
            min-width: 280px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
        }

        .table th,
        .table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
        }

        .table th {
            color: var(--text-main);
            font-weight: 600;
            background: rgba(106, 38, 241, 0.1);
        }

        .table td {
            color: var(--text-sub);
        }

        .code-block {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 12px 16px;
            font-family: monospace;
            font-size: 13px;
            color: #a7f3d0;
            margin-top: 8px;
            word-break: break-all;
        }

        .step-flock {
            list-style: none;
            counter-reset: step-counter;
            margin-top: 16px;
        }

        .step-calf {
            position: relative;
            padding-left: 44px;
            margin-bottom: 20px;
            color: var(--text-sub);
            font-size: 14px;
        }

        .step-calf::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(106, 38, 241, 0.2);
            border: 1px solid var(--border);
            color: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 13px;
        }

        /* 页脚区域 */
        .sole {
            background: #040508;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0 30px 0;
        }

        .meadow {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .brand-script {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
        }

        .bedrock {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .flock {
                display: none; /* 移动端隐藏完整导航 */
            }
            .cluster,
            .slab,
            .corral {
                flex-direction: column;
            }
            .paddock,
            .calf,
            .paddock-wide,
            .paddock-side {
                min-width: 100%;
            }
            .surge {
                padding: 40px 0;
            }
        }

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

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

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

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

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

.horns-tip a.horns-path {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.horns-tip a.horns-path,
.horns-tip a.horns-path:hover,
.horns-tip a.horns-path:focus,
.horns-tip a.horns-path:active,
.horns-tip a.horns-path.active,
.horns-tip a.horns-path[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);
}

.horns-tip .horns-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.horns-tip{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 8, 13, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(106, 38, 241, 0.22);
        }

.horns-tip .horns-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.horns-tip .horns-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.horns-tip .horns-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.horns-tip .horns-flock{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            list-style: none;
        }

.horns-tip .horns-path{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            border: 1px solid transparent;
            min-width: 0;
        }

.horns-tip .horns-path:hover, .horns-tip .horns-path.active{
            color: #ffffff;
            background: rgba(106, 38, 241, 0.18);
            border-color: rgba(106, 38, 241, 0.22);
            text-shadow: 0 0 10px rgba(106, 38, 241, 0.4);
        }

.horns-tip .horns-stamp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            background: linear-gradient(135deg, #6a26f1 0%, #8b5cf6 100%);
            color: #ffffff;
            box-shadow: 0 4px 18px rgba(106, 38, 241, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.35s ease;
            min-width: 0;
        }

.horns-tip .horns-stamp:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 38, 241, 0.6);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }

@media (max-width: 768px){.horns-tip .horns-orbit{
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.horns-tip .horns-flock{
                width: 100%;
                justify-content: space-between;
                overflow-x: auto;
                padding-bottom: 4px;
            }

.horns-tip .horns-path{
                padding: 6px 10px;
                font-size: 13px;
                white-space: nowrap;
            }}

.horns-tip {
    background: rgb(7, 8, 13);
    background-image: none;
}

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

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

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

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

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

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

.meadow-sole .meadow-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.meadow-sole{
            background: #040508;
            border-top: 1px solid rgba(106, 38, 241, 0.22);
            padding: 60px 0 30px 0;
            font-size: 14px;
            color: #64748b;
        }

.meadow-sole .meadow-meadow{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.meadow-sole .meadow-bedrock{
            flex: 1 1 300px;
            min-width: 0;
        }

.meadow-sole .meadow-bedrock-brand{
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.meadow-sole .meadow-bedrock-desc{
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

.meadow-sole .meadow-cluster-sole-links{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

.meadow-sole .meadow-sole-column{
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

.meadow-sole .meadow-sole-column .meadow-crown{
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

.meadow-sole .meadow-sole-column a{
            color: #64748b;
            font-size: 13px;
        }

.meadow-sole .meadow-sole-column a:hover{
            color: #00f2fe;
        }

.meadow-sole .meadow-tail{
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }