:root {
            --t8w7hzya-primary: #ea594f;
            --t8w7hzya-primary-soft: #fff1f0;
            --t8w7hzya-dark: #1d1d1f;
            --t8w7hzya-text: #3a3a3c;
            --t8w7hzya-gray: #86868b;
            --t8w7hzya-bg: #f5f5f7;
            --t8w7hzya-white: #ffffff;
            --t8w7hzya-radius: 18px;
            --t8w7hzya-shadow: 0 10px 30px rgba(0,0,0,0.08);
            --t8w7hzya-transition: 0.25s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

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

        /* 强制导航栏样式复用 */
        .t8w7hzya-streak {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .t8w7hzya-cloak-nav {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .t8w7hzya-logo img {
            height: 32px;
            width: auto;
            display: block;
        }
        .t8w7hzya-glide {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .t8w7hzya-nav-link {
            text-decoration: none;
            color: var(--t8w7hzya-text);
            font-size: 14px;
            font-weight: 500;
            transition: var(--t8w7hzya-transition);
            position: relative;
        }
        .t8w7hzya-nav-link:hover {
            color: var(--t8w7hzya-primary);
        }
        .t8w7hzya-nav-link.active {
            color: var(--t8w7hzya-primary);
        }
        .t8w7hzya-nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--t8w7hzya-primary);
            border-radius: 2px;
        }

        /* 布局容器 */
        .t8w7hzya-cloak {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* Lumen: Fullbleed Overlay 展示区 */
        .t8w7hzya-lumen {
            position: relative;
            background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
            padding: 120px 0 100px;
            color: var(--t8w7hzya-white);
            text-align: center;
            overflow: hidden;
        }
        .t8w7hzya-lumen::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: radial-gradient(circle, rgba(234, 89, 79, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .t8w7hzya-apex {
            position: relative;
            z-index: 2;
            word-break: keep-all;
        }
        .t8w7hzya-apex h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        .t8w7hzya-apex p {
            font-size: clamp(16px, 2vw, 20px);
            color: rgba(255,255,255,0.8);
            max-width: 700px;
            margin: 0 auto 40px;
            word-break: break-word;
        }

        /* Prism: 核心矩阵布局 */
        .t8w7hzya-prism {
            padding: 80px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }

        /* Facet: 软件版本卡片 */
        .t8w7hzya-facet {
            background: var(--t8w7hzya-white);
            border-radius: var(--t8w7hzya-radius);
            padding: 40px;
            flex: 1;
            min-width: 320px;
            max-width: 500px;
            box-shadow: var(--t8w7hzya-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .t8w7hzya-facet:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .t8w7hzya-facet-top {
            margin-bottom: 24px;
        }
        .t8w7hzya-facet-icon {
            width: 56px;
            height: 56px;
            background: var(--t8w7hzya-primary-soft);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .t8w7hzya-facet-icon svg {
            width: 28px;
            height: 28px;
            fill: var(--t8w7hzya-primary);
        }
        .t8w7hzya-facet h2 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--t8w7hzya-dark);
        }
        .t8w7hzya-facet-desc {
            color: var(--t8w7hzya-gray);
            font-size: 15px;
            margin-bottom: 30px;
            word-break: break-word;
        }
        .t8w7hzya-facet-tags {
            display: flex;
            gap: 8px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .t8w7hzya-facet-tag {
            background: #f2f2f7;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--t8w7hzya-text);
            font-weight: 500;
        }

        /* Jolt: 响应式按钮 */
        .t8w7hzya-jolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background: var(--t8w7hzya-primary);
            color: var(--t8w7hzya-white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: var(--t8w7hzya-transition);
            border: none;
            cursor: pointer;
            width: 100%;
            margin-top: auto;
        }
        .t8w7hzya-jolt:hover {
            background: #d44a42;
            transform: scale(1.02);
        }
        .t8w7hzya-jolt svg {
            margin-right: 8px;
            width: 20px;
            height: 20px;
        }

        /* Shard: 信息块 */
        .t8w7hzya-blaze {
            background: var(--t8w7hzya-white);
            padding: 60px 0;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .t8w7hzya-void-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .t8w7hzya-shard {
            padding: 20px;
            min-width: 0;
        }
        .t8w7hzya-shard h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--t8w7hzya-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .t8w7hzya-shard h3 svg {
            width: 20px;
            height: 20px;
            fill: var(--t8w7hzya-primary);
        }
        .t8w7hzya-shard p {
            font-size: 14px;
            color: var(--t8w7hzya-gray);
            word-break: break-word;
        }

        /* Abyss: 页脚区域 */
        .t8w7hzya-abyss {
            background: var(--t8w7hzya-dark);
            color: rgba(255,255,255,0.6);
            padding: 80px 0 40px;
        }
        .t8w7hzya-abyss-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }
        .t8w7hzya-abyss-brand {
            flex: 1;
            min-width: 200px;
        }
        .t8w7hzya-abyss-brand span {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: var(--t8w7hzya-white);
            margin-bottom: 20px;
        }
        .t8w7hzya-abyss-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }
        .t8w7hzya-abyss-group h4 {
            color: var(--t8w7hzya-white);
            font-size: 16px;
            margin-bottom: 20px;
        }
        .t8w7hzya-abyss-group a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: var(--t8w7hzya-transition);
        }
        .t8w7hzya-abyss-group a:hover {
            color: var(--t8w7hzya-primary);
        }
        .t8w7hzya-trace {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .t8w7hzya-glide {
                display: none; /* 简化移动端，实际应有汉堡菜单 */
            }
            .t8w7hzya-lumen {
                padding: 80px 0 60px;
            }
            .t8w7hzya-apex h1 {
                font-size: 32px;
            }
            .t8w7hzya-facet {
                padding: 30px;
            }
        }

.t8w7hzya-hdr-streak {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--t8w7hzya-text);
}
.t8w7hzya-hdr-streak,
.t8w7hzya-hdr-streak *,
.t8w7hzya-hdr-streak *::before,
.t8w7hzya-hdr-streak *::after {
    box-sizing: border-box;
}

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

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

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

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

.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-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;
}

.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link:hover,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link:focus,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link:active,
.t8w7hzya-hdr-streak a.t8w7hzya-hdr-nav-link.active,
.t8w7hzya-hdr-streak a.t8w7hzya-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);
}

.t8w7hzya-hdr-streak{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-cloak-nav{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-logo{
            height: 40px;
            display: flex;
            align-items: center;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-logo img{
            height: 100%;
            width: auto;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-glide{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link{
            font-weight: 500;
            font-size: 15px;
            color: #333333;
            position: relative;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link:hover, .t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link.active{
            color: #ea594f;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ea594f;
        }

@media (max-width: 768px){.t8w7hzya-hdr-streak .t8w7hzya-hdr-glide{
                display: none; 
            }}

.t8w7hzya-hdr-streak {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.t8w7hzya-ftr-abyss{
            background: #1a1a1a;
            color: #ffffff;
            padding: 80px 24px 40px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-prism-abyss{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 60px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer{
            flex: 1;
            min-width: 200px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer h4{
            font-size: 18px;
            margin-bottom: 24px;
            color: #ffffff;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul{
            list-style: none;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li{
            margin-bottom: 12px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li a{
            color: rgba(255,255,255,0.6);
            font-size: 15px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li a:hover{
            color: #ea594f;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-trace{
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            text-align: center;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
        }