:root {
            --hskf09-primary: #5055e8;
            --hskf09-accent: #6366f1;
            --hskf09-bg: #f8fafc;
            --hskf09-text: #1e293b;
            --hskf09-muted: #64748b;
            --hskf09-radius: 20px;
            --hskf09-shadow: 0 10px 25px -5px rgba(80, 85, 232, 0.1), 0 8px 10px -6px rgba(80, 85, 232, 0.1);
        }

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

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

        /* 强制复用导航栏样式 */
        .hskf09-vortex {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(80, 85, 232, 0.1);
        }

        .hskf09-vault-nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hskf09-logo img {
            height: 32px;
            display: block;
        }

        .hskf09-clasp-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .hskf09-trace-link {
            text-decoration: none;
            color: var(--hskf09-text);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.25s ease;
        }

        .hskf09-trace-link:hover, .hskf09-trace-link.active {
            color: var(--hskf09-primary);
        }

        .hskf09-warp-cta {
            background: var(--hskf09-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: inline-block;
        }

        .hskf09-warp-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(80, 85, 232, 0.3);
        }

        /* 核心展示区 - cinematic_strip 布局 */
        .hskf09-beacon {
            position: relative;
            padding: 80px 0;
            background: linear-gradient(135deg, #5055e8 0%, #312e81 100%);
            color: white;
            overflow: hidden;
        }

        .hskf09-plex-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hskf09-prime-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hskf09-prime-lead {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            max-width: 800px;
            opacity: 0.9;
            margin-bottom: 48px;
            word-break: break-word;
        }

        /* 电影条纹装饰 */
        .hskf09-glaze-strip {
            width: 100%;
            display: flex;
            gap: 20px;
            overflow: hidden;
            padding: 20px 0;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .hskf09-shard-pulse {
            flex: 0 0 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--hskf09-radius);
            padding: 24px;
            text-align: left;
            min-width: 0;
            transition: background 0.25s ease;
        }

        .hskf09-shard-pulse:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* 内容版块 */
        .hskf09-glaze-main {
            padding: 100px 0;
            max-width: 1100px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        .hskf09-plex-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 60px;
        }

        .hskf09-shard-entry {
            flex: 1 1 300px;
            background: white;
            border-radius: var(--hskf09-radius);
            padding: 40px;
            box-shadow: var(--hskf09-shadow);
            transition: transform 0.25s ease;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hskf09-shard-entry:hover {
            transform: translateY(-8px);
        }

        .hskf09-glyph-badge {
            width: 56px;
            height: 56px;
            background: rgba(80, 85, 232, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hskf09-primary);
        }

        .hskf09-shard-entry h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--hskf09-text);
        }

        .hskf09-shard-entry p {
            color: var(--hskf09-muted);
            font-size: 16px;
            word-break: break-word;
        }

        /* 列表风格 */
        .hskf09-plex-list {
            margin-top: 80px;
            background: white;
            border-radius: var(--hskf09-radius);
            overflow: hidden;
            box-shadow: var(--hskf09-shadow);
        }

        .hskf09-clasp-row {
            display: flex;
            align-items: center;
            padding: 24px 40px;
            border-bottom: 1px solid #f1f5f9;
            flex-wrap: wrap;
            gap: 20px;
            transition: background 0.25s ease;
        }

        .hskf09-clasp-row:hover {
            background: #f8fafc;
        }

        .hskf09-clasp-row:last-child {
            border-bottom: none;
        }

        .hskf09-trace-tag {
            background: #e0e7ff;
            color: var(--hskf09-primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
        }

        .hskf09-jolt-action {
            margin-left: auto;
            background: var(--hskf09-primary);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: opacity 0.25s ease;
        }

        .hskf09-jolt-action:hover {
            opacity: 0.9;
        }

        /* 页脚 */
        .hskf09-tether {
            background: #1e293b;
            color: #94a3b8;
            padding: 80px 0 40px;
        }

        .hskf09-plex-stow {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .hskf09-stow-brand {
            flex: 1 1 300px;
        }

        .hskf09-stow-brand h2 {
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .hskf09-stow-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .hskf09-stow-group h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .hskf09-stow-group a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.25s ease;
        }

        .hskf09-stow-group a:hover {
            color: white;
        }

        .hskf09-stow-copyright {
            width: 100%;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hskf09-vault-nav {
                height: auto;
                padding: 20px;
            }
            .hskf09-clasp-links {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 20px;
                gap: 15px;
            }
            .hskf09-jolt-action {
                margin-left: 0;
                width: 100%;
                text-align: center;
            }
            .hskf09-clasp-row {
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 20px;
            }
        }

.hskf09-hdr-vortex {
    font-family: var(--hskf09-sans);
    line-height: 1.8;
    word-break: break-word;
    color: var(--hskf09-text-main);
}
.hskf09-hdr-vortex,
.hskf09-hdr-vortex *,
.hskf09-hdr-vortex *::before,
.hskf09-hdr-vortex *::after {
    box-sizing: border-box;
}

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

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

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

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

.hskf09-hdr-vortex a.hskf09-hdr-trace-link {
    --aisite-shell-nav-padding: 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;
}

.hskf09-hdr-vortex a.hskf09-hdr-trace-link,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link:hover,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link:focus,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link:active,
.hskf09-hdr-vortex a.hskf09-hdr-trace-link.active,
.hskf09-hdr-vortex a.hskf09-hdr-trace-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);
}

.hskf09-hdr-vortex{
            position: sticky;
            top: 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);
        }

.hskf09-hdr-vortex .hskf09-hdr-vault-nav{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }

.hskf09-hdr-vortex .hskf09-hdr-logo{
            display: flex;
            align-items: center;
        }

.hskf09-hdr-vortex .hskf09-hdr-logo img{
            height: 36px;
            width: auto;
        }

.hskf09-hdr-vortex .hskf09-hdr-clasp-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link{
            font-size: 15px;
            font-weight: 500;
            color: #6e6e73;
            position: relative;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link:hover{
            color: #5055e8;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link.active{
            color: #5055e8;
        }

.hskf09-hdr-vortex .hskf09-hdr-trace-link.active::after{
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #5055e8;
        }

.hskf09-hdr-vortex .hskf09-hdr-warp-cta{
            display: inline-flex;
            align-items: center;
            background: #5055e8;
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

.hskf09-hdr-vortex .hskf09-hdr-warp-cta:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(80, 85, 232, 0.4);
        }

@media (max-width: 768px){.hskf09-hdr-vortex .hskf09-hdr-clasp-links{
                display: none;
            }}

.hskf09-hdr-vortex {
    background: rgb(255, 255, 255);
    background-image: none;
}

.hskf09-ftr-tether {
    font-family: var(--hskf09-sans);
    line-height: 1.8;
    word-break: break-word;
    color: var(--hskf09-text-main);
}
.hskf09-ftr-tether,
.hskf09-ftr-tether *,
.hskf09-ftr-tether *::before,
.hskf09-ftr-tether *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.hskf09-ftr-tether{
            background: #f5f5f7;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

.hskf09-ftr-tether .hskf09-ftr-stow-grid{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-brand{
            flex: 2;
            min-width: 300px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-brand h2{
            font-size: 28px;
            margin-bottom: 20px;
            font-family: "Inter", system-ui, -apple-system, sans-serif;
            letter-spacing: -1px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-nav-group{
            flex: 1;
            min-width: 150px;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-nav-group h5{
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            color: #1d1d1f;
        }

.hskf09-ftr-tether .hskf09-ftr-trace-footer{
            display: block;
            font-size: 14px;
            color: #6e6e73;
            margin-bottom: 12px;
        }

.hskf09-ftr-tether .hskf09-ftr-trace-footer:hover{
            color: #5055e8;
        }

.hskf09-ftr-tether .hskf09-ftr-clasp-copyright{
            max-width: 1280px;
            margin: 60px auto 0;
            padding: 40px 24px 0;
            border-top: 1px solid rgba(0,0,0,0.06);
            font-size: 13px;
            color: #6e6e73;
            text-align: center;
        }