:root {
            --ckonY-primary: #1f4bda;
            --ckonY-accent: #00f2ff;
            --ckonY-dark: #05070a;
            --ckonY-surface: #0f1218;
            --ckonY-text: #e0e6ed;
            --ckonY-text-muted: #94a3b8;
            --ckonY-radius: 18px;
            --ckonY-transition: 0.25s ease;
        }

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

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

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

        .ckonY-logo img {
            height: 40px;
            display: block;
        }

        .ckonY-beacon {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .ckonY-beacon-link {
            color: var(--ckonY-text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--ckonY-transition);
        }

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

        /* Cinematic Strip Hero 布局 */
        .ckonY-crest {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 4rem 5%;
        }

        .ckonY-surge {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            gap: 4rem;
        }

        .ckonY-pcap-hero {
            flex: 1;
            min-width: 320px;
        }

        .ckonY-pcap-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, var(--ckonY-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ckonY-pcap-hero p {
            font-size: 1.2rem;
            color: var(--ckonY-text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        /* 电影胶片感条带展示区 */
        .ckonY-vessel-strip {
            flex: 1;
            min-width: 320px;
            display: flex;
            gap: 1rem;
            transform: skewY(-5deg);
        }

        .ckonY-frame-strip {
            background: linear-gradient(to bottom, var(--ckonY-primary), #000);
            width: 120px;
            height: 400px;
            border-radius: var(--ckonY-radius);
            opacity: 0.8;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: stripFloat 6s ease-in-out infinite alternate;
        }

        .ckonY-frame-strip:nth-child(2) { animation-delay: -1.5s; margin-top: 40px; }
        .ckonY-frame-strip:nth-child(3) { animation-delay: -3s; margin-top: 80px; }

        @keyframes stripFloat {
            from { transform: translateY(0); }
            to { transform: translateY(-20px); }
        }

        /* 通用容器布局 */
        .ckonY-vessel {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .ckonY-mesh-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        /* 卡片组件 */
        .ckonY-octet {
            background: var(--ckonY-surface);
            padding: 2.5rem;
            border-radius: var(--ckonY-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--ckonY-transition);
            position: relative;
            overflow: hidden;
        }

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

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

        .ckonY-octet h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .ckonY-octet p {
            color: var(--ckonY-text-muted);
            font-size: 0.95rem;
        }

        /* 内容板块样式 */
        .ckonY-pcap-main {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .ckonY-pcap-text {
            flex: 1;
            min-width: 300px;
        }

        .ckonY-pcap-visual {
            flex: 1;
            min-width: 300px;
            background: radial-gradient(circle at center, var(--ckonY-primary) 0%, transparent 70%);
            padding: 2rem;
            display: flex;
            justify-content: center;
        }

        .ckonY-pcap-visual .ckonY-frame-data {
            background: rgba(15, 18, 24, 0.9);
            border: 1px solid var(--ckonY-primary);
            padding: 1.5rem;
            border-radius: 12px;
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--ckonY-accent);
            box-shadow: 0 0 30px rgba(31, 75, 218, 0.3);
        }

        /* 按钮样式 */
        .ckonY-ping {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--ckonY-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--ckonY-transition);
            border: none;
            cursor: pointer;
        }

        .ckonY-ping:hover {
            background: #2b5cf3;
            box-shadow: 0 10px 20px rgba(31, 75, 218, 0.4);
            transform: scale(1.02);
        }

        .ckonY-snap {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--ckonY-transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-left: 1rem;
        }

        .ckonY-snap:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        /* 页脚区域 */
        .ckonY-abyss {
            background: #020305;
            padding: 5rem 5% 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ckonY-sediment {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

        .ckonY-sediment-brand h4 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .ckonY-sediment-links {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .ckonY-sediment-list {
            list-style: none;
        }

        .ckonY-sediment-list li {
            margin-bottom: 0.8rem;
        }

        .ckonY-sediment-list a {
            color: var(--ckonY-text-muted);
            text-decoration: none;
            transition: var(--ckonY-transition);
        }

        .ckonY-sediment-list a:hover {
            color: var(--ckonY-primary);
        }

        .ckonY-sediment-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--ckonY-text-muted);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .ckonY-beacon { display: none; }
            .ckonY-surge { text-align: center; }
            .ckonY-vessel-strip { display: none; }
            .ckonY-pcap-hero h1 { font-size: 2.5rem; }
            .ckonY-sediment { flex-direction: column; text-align: center; }
            .ckonY-sediment-links { justify-content: center; gap: 2rem; }
            .ckonY-snap { margin-left: 0; margin-top: 1rem; }
        }

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