:root {
            --ckonY-primary: #1f4bda;
            --ckonY-primary-dark: #1636a3;
            --ckonY-accent: #00f2ff;
            --ckonY-bg: #05070a;
            --ckonY-surface: #0f1218;
            --ckonY-text: #e1e1e1;
            --ckonY-text-dim: #a0a0a0;
            --ckonY-border: rgba(255, 255, 255, 0.1);
            --ckonY-radius: 18px;
        }

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

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

        /* 强制复用导航栏样式 */
        .ckonY-fin {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(5, 7, 10, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--ckonY-border);
        }

        .ckonY-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

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

        .ckonY-beacon-link {
            color: var(--ckonY-text-dim);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.25s ease;
        }

        .ckonY-beacon-link:hover, .ckonY-beacon-link.active {
            color: var(--ckonY-accent);
        }

        /* 主体布局容器 */
        .ckonY-vessel {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Cinematic Strip Hero */
        .ckonY-crest {
            padding-top: 160px;
            padding-bottom: 80px;
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .ckonY-crest::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140%;
            height: 400px;
            background: radial-gradient(circle, rgba(31, 75, 218, 0.15) 0%, transparent 70%);
            z-index: -1;
        }

        .ckonY-apex-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .ckonY-apex-desc {
            font-size: 1.1rem;
            color: var(--ckonY-text-dim);
            max-width: 700px;
            margin: 0 auto 48px;
        }

        /* Cinematic Strip Element */
        .ckonY-apex-strip {
            display: flex;
            flex-wrap: nowrap;
            gap: 15px;
            margin-top: 40px;
            justify-content: center;
            opacity: 0.8;
        }

        .ckonY-apex-frame {
            width: 180px;
            height: 100px;
            background: var(--ckonY-surface);
            border: 1px solid var(--ckonY-border);
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .ckonY-apex-frame::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(31, 75, 218, 0.2), transparent);
        }

        /* 下载矩阵网格 */
        .ckonY-surge {
            padding: 60px 0;
        }

        .ckonY-mesh {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .ckonY-octet {
            flex: 1;
            min-width: 300px;
            background: var(--ckonY-surface);
            border: 1px solid var(--ckonY-border);
            border-radius: var(--ckonY-radius);
            padding: 40px;
            transition: all 0.25s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .ckonY-octet:hover {
            transform: translateY(-8px);
            border-color: var(--ckonY-primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .ckonY-octet-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px;
            background: rgba(31, 75, 218, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ckonY-accent);
        }

        .ckonY-octet-title {
            font-size: 1.5rem;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .ckonY-octet-info {
            font-size: 0.9rem;
            color: var(--ckonY-text-dim);
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .ckonY-ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: var(--ckonY-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.25s ease;
            width: 100%;
        }

        .ckonY-ping:hover {
            background: var(--ckonY-primary-dark);
            transform: scale(1.02);
        }

        /* 详情信息区块 */
        .ckonY-pcap {
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--ckonY-radius);
            padding: 60px;
            margin-top: 40px;
            border: 1px solid var(--ckonY-border);
        }

        .ckonY-pcap-h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .ckonY-pcap-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .ckonY-pcap-item {
            flex: 1;
            min-width: 260px;
        }

        .ckonY-pcap-label {
            display: block;
            color: var(--ckonY-accent);
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .ckonY-pcap-text {
            font-size: 0.95rem;
            color: var(--ckonY-text-dim);
        }

        /* 页脚区 */
        .ckonY-abyss {
            margin-top: 100px;
            padding: 80px 0 40px;
            border-top: 1px solid var(--ckonY-border);
            background: #020305;
        }

        .ckonY-sediment {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .ckonY-sediment-brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .ckonY-sediment-links {
            display: flex;
            gap: 30px;
        }

        .ckonY-sediment-link {
            color: var(--ckonY-text-dim);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .ckonY-sediment-link:hover {
            color: white;
        }

        .ckonY-sediment-copy {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            font-size: 0.8rem;
            color: #444;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .ckonY-crest { padding-top: 120px; }
            .ckonY-pcap { padding: 30px; }
            .ckonY-octet { min-width: 100%; }
            .ckonY-apex-strip { display: none; }
            .ckonY-beacon { display: none; } /* 移动端简化 */
        }

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

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

.ckonY-hdr-fin p,
.ckonY-hdr-fin h1,
.ckonY-hdr-fin h2,
.ckonY-hdr-fin h3,
.ckonY-hdr-fin h4,
.ckonY-hdr-fin h5,
.ckonY-hdr-fin h6 {
    text-decoration: none;
}

.ckonY-hdr-fin img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.ckonY-hdr-fin {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.ckonY-hdr-fin a.ckonY-hdr-beacon-link {
    --aisite-shell-nav-padding: 8px 12px;
    --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;
}

.ckonY-hdr-fin a.ckonY-hdr-beacon-link,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link:hover,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link:focus,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link:active,
.ckonY-hdr-fin a.ckonY-hdr-beacon-link.active,
.ckonY-hdr-fin a.ckonY-hdr-beacon-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);
}

.ckonY-hdr-fin{
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90vw;
            max-width: 1100px;
            z-index: 1000;
            background: rgba(10, 12, 18, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

.ckonY-hdr-fin .ckonY-hdr-logo img{
            height: 32px;
            filter: brightness(1.2);
        }

.ckonY-hdr-fin .ckonY-hdr-beacon{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

.ckonY-hdr-fin .ckonY-hdr-beacon-link{
            color: #8b949e;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.25s ease;
            padding: 8px 12px;
            border-radius: 12px;
            min-width: 0;
        }

.ckonY-hdr-fin .ckonY-hdr-beacon-link:hover, .ckonY-hdr-fin .ckonY-hdr-beacon-link.active{
            color: #1f4bda;
            background: rgba(31, 75, 218, 0.1);
        }

@media (max-width: 768px){.ckonY-hdr-fin{
                padding: 10px 15px;
            }

.ckonY-hdr-fin .ckonY-hdr-beacon{
                display: none; 
            }}

.ckonY-hdr-fin {
    background: rgb(10, 12, 18);
    background-image: none;
}

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

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

.ckonY-ftr-abyss p,
.ckonY-ftr-abyss h1,
.ckonY-ftr-abyss h2,
.ckonY-ftr-abyss h3,
.ckonY-ftr-abyss h4,
.ckonY-ftr-abyss h5,
.ckonY-ftr-abyss h6 {
    text-decoration: none;
}

.ckonY-ftr-abyss img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.ckonY-ftr-abyss {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

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

.ckonY-ftr-abyss{
            background: #050608;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 100px;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment{
            width: 90vw;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-brand h4{
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-brand p{
            color: #8b949e;
            max-width: 300px;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-links{
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-group h5{
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-group a{
            display: block;
            color: #8b949e;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.25s ease;
        }

.ckonY-ftr-abyss .ckonY-ftr-sediment-group a:hover{
            color: #1f4bda;
        }

.ckonY-ftr-abyss .ckonY-ftr-copyright{
            width: 90vw;
            max-width: 1100px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #8b949e;
            font-size: 0.9rem;
            text-align: center;
        }