:root {
            --cict-krb-primary: #4b9cdf;
            --cict-krb-dark: #0f172a;
            --cict-krb-light: #f8fafc;
            --cict-krb-text: #334155;
            --cict-krb-border: #e2e8f0;
            --cict-krb-radius: 12px;
            --cict-krb-transition: 0.15s ease;
        }

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

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--cict-krb-text);
            line-height: 1.7;
            background-color: #ffffff;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* --- 导航栏复用结构 --- */
        .cict-krb-nexus {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--cict-krb-border);
            z-index: 1000;
        }

        .cict-krb-radar {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cict-krb-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .cict-krb-logo img {
            height: 32px;
            width: auto;
        }

        .cict-krb-path {
            display: flex;
            gap: 1.5rem;
        }

        .cict-krb-nav-link {
            text-decoration: none;
            color: var(--cict-krb-text);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--cict-krb-transition);
        }

        .cict-krb-nav-link:hover, .cict-krb-nav-link.active {
            color: var(--cict-krb-primary);
        }

        /* --- 杂志感主体布局 --- */
        .cict-krb-shell {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Hero: text_dominant */
        .cict-krb-spark {
            padding: 160px 0 80px;
            text-align: center;
            background: radial-gradient(circle at top right, #4b9cdf08, transparent 40%),
                        radial-gradient(circle at bottom left, #4b9cdf05, transparent 30%);
        }

        .cict-krb-spark h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 1.1;
            color: var(--cict-krb-dark);
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

        .cict-krb-flare {
            font-size: 1.25rem;
            color: var(--cict-krb-primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            display: block;
        }

        .cict-krb-glow {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: #64748b;
        }

        /* 内容区块 */
        .cict-krb-realm {
            padding: 60px 0;
        }

        .cict-krb-field {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        /* 卡片组件 */
        .cict-krb-node {
            flex: 1;
            min-width: 320px;
            background: var(--cict-krb-light);
            border: 1px solid var(--cict-krb-border);
            border-radius: var(--cict-krb-radius);
            padding: 2.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .cict-krb-node:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--cict-krb-primary);
        }

        .cict-krb-pulse {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(75, 156, 223, 0.15);
        }

        .cict-krb-shard {
            margin-bottom: 2rem;
        }

        .cict-krb-shard h2 {
            font-size: 1.75rem;
            color: var(--cict-krb-dark);
            margin-bottom: 1rem;
        }

        .cict-krb-shard h3 {
            font-size: 1.25rem;
            margin: 1.5rem 0 0.5rem;
            color: var(--cict-krb-primary);
        }

        /* 列表样式 */
        .cict-krb-snap-list {
            list-style: none;
        }

        .cict-krb-snap-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--cict-krb-border);
            display: flex;
            justify-content: space-between;
        }

        .cict-krb-snap-list li:last-child {
            border-bottom: none;
        }

        .cict-krb-snap-list b {
            color: var(--cict-krb-dark);
        }

        /* 按钮与交互 */
        .cict-krb-ping {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: var(--cict-krb-primary);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--cict-krb-transition);
            margin-top: 1rem;
        }

        .cict-krb-ping:hover {
            filter: brightness(1.1);
            transform: scale(1.02);
        }

        .cict-krb-bolt {
            background: #f1f5f9;
            color: var(--cict-krb-dark);
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.9rem;
        }

        /* 页脚区域 */
        .cict-krb-echo {
            background: var(--cict-krb-dark);
            color: #94a3b8;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

        .cict-krb-root {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 50px;
        }

        .cict-krb-drift {
            flex: 1;
            min-width: 250px;
        }

        .cict-krb-drift h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .cict-krb-drift a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: var(--cict-krb-transition);
        }

        .cict-krb-drift a:hover {
            color: var(--cict-krb-primary);
        }

        .cict-krb-copyright {
            padding-top: 40px;
            border-top: 1px solid #1e293b;
            text-align: center;
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .cict-krb-radar {
                flex-direction: column;
                height: auto;
                padding: 1rem;
            }
            .cict-krb-path {
                margin-top: 1rem;
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            .cict-krb-spark {
                padding: 120px 0 60px;
            }
            .cict-krb-node {
                min-width: 100%;
            }
        }

.cict-krb-hdr-nexus {
    font-family: 'Inter', 'Segoe UI', Roboto, 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--cict-krb-text);
}
.cict-krb-hdr-nexus,
.cict-krb-hdr-nexus *,
.cict-krb-hdr-nexus *::before,
.cict-krb-hdr-nexus *::after {
    box-sizing: border-box;
}

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

.cict-krb-hdr-nexus p,
.cict-krb-hdr-nexus h1,
.cict-krb-hdr-nexus h2,
.cict-krb-hdr-nexus h3,
.cict-krb-hdr-nexus h4,
.cict-krb-hdr-nexus h5,
.cict-krb-hdr-nexus h6 {
    text-decoration: none;
}

.cict-krb-hdr-nexus img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.cict-krb-hdr-nexus {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 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;
}

.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link,
.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link:hover,
.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link:focus,
.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link:active,
.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link.active,
.cict-krb-hdr-nexus a.cict-krb-hdr-nav-link[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);
}

.cict-krb-hdr-nexus{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 5vw;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-radar{
            max-width: 1100px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            min-width: 0;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-logo{
            display: flex;
            align-items: center;
            gap: 10px;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-logo img{
            height: 32px;
            width: auto;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-path{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-nav-link{
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.15s ease;
            padding: 8px 0;
            position: relative;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-nav-link:hover, .cict-krb-hdr-nexus .cict-krb-hdr-nav-link.active{
            color: #4b9cdf;
        }

.cict-krb-hdr-nexus .cict-krb-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4b9cdf;
        }

@media (max-width: 768px){.cict-krb-hdr-nexus .cict-krb-hdr-path{
                display: none; 
            }}

.cict-krb-hdr-nexus {
    background: rgb(255, 255, 255);
    background-image: none;
}

.cict-krb-ftr-echo {
    font-family: 'Inter', 'Segoe UI', Roboto, 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--cict-krb-text);
}
.cict-krb-ftr-echo,
.cict-krb-ftr-echo *,
.cict-krb-ftr-echo *::before,
.cict-krb-ftr-echo *::after {
    box-sizing: border-box;
}

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

.cict-krb-ftr-echo p,
.cict-krb-ftr-echo h1,
.cict-krb-ftr-echo h2,
.cict-krb-ftr-echo h3,
.cict-krb-ftr-echo h4,
.cict-krb-ftr-echo h5,
.cict-krb-ftr-echo h6 {
    text-decoration: none;
}

.cict-krb-ftr-echo img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.cict-krb-ftr-echo {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.cict-krb-ftr-echo a,
.cict-krb-ftr-echo a:hover,
.cict-krb-ftr-echo a:focus,
.cict-krb-ftr-echo a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.cict-krb-ftr-echo{
            background: #1a1a1a;
            color: #94a3b8;
            padding: 80px 0 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 80px 5vw 40px;
        }

.cict-krb-ftr-echo .cict-krb-ftr-root{
            max-width: 1100px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

.cict-krb-ftr-echo .cict-krb-ftr-drift{
            flex: 1;
            min-width: 200px;
        }

.cict-krb-ftr-echo .cict-krb-ftr-drift h4{
            color: white;
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

.cict-krb-ftr-echo .cict-krb-ftr-drift a{
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 12px;
            transition: 0.15s ease;
        }

.cict-krb-ftr-echo .cict-krb-ftr-drift a:hover{
            color: #4b9cdf;
        }

.cict-krb-ftr-echo .cict-krb-ftr-copy{
            width: 100%;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.85rem;
        }