:root {
            --cict-krb-primary: #4b9cdf;
            --cict-krb-primary-glow: rgba(75, 156, 223, 0.1);
            --cict-krb-dark: #1d1d1f;
            --cict-krb-light: #f5f5f7;
            --cict-krb-text: #333333;
            --cict-krb-white: #ffffff;
            --cict-krb-transition: 0.15s ease;
            --cict-krb-radius: 12px;
            --cict-krb-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

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

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

        /* 强制复用导航栏样式 */
        .cict-krb-nexus {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

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

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

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

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

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

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

        .cict-krb-nav-link.active {
            color: var(--cict-krb-primary);
            font-weight: 700;
        }

        /* 核心展示区域 - Flare (Hero) */
        .cict-krb-flare {
            padding: 100px 1.5rem 60px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, var(--cict-krb-primary-glow), transparent);
        }

        .cict-krb-flare h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--cict-krb-dark);
            margin-bottom: 1.5rem;
            font-weight: 800;
            white-space: normal;
        }

        .cict-krb-glow-text {
            color: var(--cict-krb-primary);
            display: block;
        }

        .cict-krb-flare p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.25rem;
            color: #666;
            line-height: 1.6;
        }

        /* 容器组件 - Shell & Field */
        .cict-krb-shell {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 1.5rem;
        }

        /* 布局组件 - Realm */
        .cict-krb-realm {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 4rem;
        }

        .cict-krb-node {
            flex: 1;
            min-width: 300px;
            background: var(--cict-krb-light);
            padding: 3rem;
            border-radius: var(--cict-krb-radius);
            transition: transform 0.3s ease;
        }

        .cict-krb-node:hover {
            transform: translateY(-5px);
        }

        .cict-krb-node h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--cict-krb-dark);
            font-weight: 700;
        }

        /* 卡片组件 - Shard & Pulse */
        .cict-krb-spark-field {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 4rem 0;
        }

        .cict-krb-shard {
            flex: 1;
            min-width: 300px;
            background: var(--cict-krb-white);
            border: 1px solid #eee;
            padding: 2.5rem;
            border-radius: var(--cict-krb-radius);
            box-shadow: var(--cict-krb-shadow);
            position: relative;
            overflow: hidden;
        }

        .cict-krb-shard::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--cict-krb-primary);
        }

        .cict-krb-shard svg {
            width: 48px;
            height: 48px;
            fill: var(--cict-krb-primary);
            margin-bottom: 1.5rem;
        }

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

        .cict-krb-shard p {
            font-size: 1rem;
            color: #555;
        }

        /* 按钮组件 - Ping, Bolt, Snap */
        .cict-krb-ping {
            display: inline-block;
            background: var(--cict-krb-primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--cict-krb-transition);
            margin-top: 2rem;
            box-shadow: 0 4px 15px rgba(75, 156, 223, 0.3);
        }

        .cict-krb-ping:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(75, 156, 223, 0.4);
        }

        .cict-krb-bolt {
            color: var(--cict-krb-primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: var(--cict-krb-transition);
        }

        .cict-krb-bolt:hover {
            border-bottom-color: var(--cict-krb-primary);
        }

        /* 内容板块 */
        .cict-krb-glow-realm {
            background: var(--cict-krb-dark);
            color: var(--cict-krb-white);
            padding: 80px 1.5rem;
            margin: 60px 0;
            border-radius: var(--cict-krb-radius);
            text-align: center;
        }

        .cict-krb-glow-realm h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cict-krb-glow-realm p {
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.8;
        }

        /* 页脚区域 - Echo, Root, Drift */
        .cict-krb-echo {
            background: var(--cict-krb-light);
            padding: 80px 1.5rem 40px;
            margin-top: 100px;
        }

        .cict-krb-root {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .cict-krb-drift-group {
            min-width: 150px;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .cict-krb-drift-group span {
            font-weight: 700;
            color: var(--cict-krb-dark);
            margin-bottom: 0.5rem;
        }

        .cict-krb-drift-link {
            text-decoration: none;
            color: #666;
            font-size: 0.9rem;
            transition: var(--cict-krb-transition);
        }

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

        .cict-krb-copyright {
            width: 100%;
            text-align: center;
            padding-top: 60px;
            font-size: 0.85rem;
            color: #999;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 60px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .cict-krb-radar {
                flex-direction: column;
                gap: 1rem;
            }
            .cict-krb-path {
                justify-content: center;
            }
            .cict-krb-node, .cict-krb-shard {
                min-width: 100%;
            }
            .cict-krb-root {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }

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