:root {
            --cict-krb-primary: #4b9cdf;
            --cict-krb-primary-soft: rgba(75, 156, 223, 0.1);
            --cict-krb-dark: #1a1a1a;
            --cict-krb-light: #f8fafc;
            --cict-krb-text: #334155;
            --cict-krb-text-dim: #64748b;
            --cict-krb-radius: 10px;
            --cict-krb-transition: 0.15s ease;
        }

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

        body {
            font-family: 'Inter', 'Segoe UI', Roboto, 'PingFang SC', 'Hiragino Sans GB', sans-serif;
            background-color: #ffffff;
            color: var(--cict-krb-text);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 布局容器 - Realm & Field */
        .cict-krb-realm {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 5vw;
        }

        .cict-krb-field {
            max-width: 1100px;
            width: 100%;
            min-width: 0;
            padding: 80px 0;
        }

        /* 导航 - Nexus & Path */
        .cict-krb-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-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-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

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

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

        .cict-krb-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--cict-krb-primary);
        }

        /* 首屏展示 - Spark & Flare */
        .cict-krb-spark {
            min-height: 100vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 120px;
            background: radial-gradient(circle at top right, var(--cict-krb-primary-soft), transparent 40%),
                        radial-gradient(circle at bottom left, var(--cict-krb-primary-soft), transparent 40%);
        }

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

        .cict-krb-glow {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--cict-krb-text-dim);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cict-krb-ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--cict-krb-primary);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--cict-krb-transition);
            box-shadow: 0 10px 20px rgba(75, 156, 223, 0.2);
            margin: 10px;
        }

        .cict-krb-ping:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(75, 156, 223, 0.3);
            background: #3a8cd0;
        }

        .cict-krb-bolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: var(--cict-krb-text);
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--cict-krb-transition);
            border: 1px solid rgba(0, 0, 0, 0.1);
            margin: 10px;
        }

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

        /* 装饰图块 */
        .cict-krb-snap {
            margin-top: 60px;
            width: 100%;
            max-width: 900px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .cict-krb-snap img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 内容板块 - Shard & Pulse */
        .cict-krb-shell {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .cict-krb-shard {
            flex: 1;
            min-width: 300px;
            background: #ffffff;
            padding: 40px;
            border-radius: var(--cict-krb-radius);
            transition: var(--cict-krb-transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
        }

        .cict-krb-shard:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }

        .cict-krb-node-icon {
            width: 48px;
            height: 48px;
            background: var(--cict-krb-primary-soft);
            color: var(--cict-krb-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

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

        .cict-krb-shard p {
            color: var(--cict-krb-text-dim);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        /* 专题切片 - Pulse */
        .cict-krb-pulse {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            margin-top: 80px;
        }

        .cict-krb-pulse:nth-child(even) {
            flex-direction: row-reverse;
        }

        .cict-krb-pulse-text {
            flex: 1;
            min-width: 300px;
        }

        .cict-krb-pulse-media {
            flex: 1;
            min-width: 300px;
            border-radius: var(--cict-krb-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .cict-krb-pulse-media img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .cict-krb-pulse:hover .cict-krb-pulse-media img {
            transform: scale(1.05);
        }

        .cict-krb-pulse h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--cict-krb-dark);
            line-height: 1.3;
        }

        .cict-krb-pulse ul {
            list-style: none;
            margin-top: 20px;
        }

        .cict-krb-pulse li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 12px;
            color: var(--cict-krb-text);
        }

        .cict-krb-pulse li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--cict-krb-primary);
            font-weight: bold;
        }

        /* 页脚 - Echo & Root */
        .cict-krb-echo {
            background: var(--cict-krb-dark);
            color: #94a3b8;
            padding: 80px 0 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 80px 5vw 40px;
        }

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

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

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

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

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

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

        /* 响应式调整 */
        @media (max-width: 768px) {
            .cict-krb-path {
                display: none; /* 简化移动端，通常会有汉堡菜单，此处仅做布局隐藏 */
            }
            .cict-krb-flare {
                font-size: 2.5rem;
            }
            .cict-krb-pulse {
                gap: 30px;
            }
            .cict-krb-field {
                padding: 40px 0;
            }
        }

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