:root {
            --primary: #a94af7;
            --accent: #7a28c2;
            --text: #1a1a1a;
            --bg: #ffffff;
            --muted: #f8f9fa;
            --border: #eef0f2;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(169, 74, 247, 0.1);
            --transition: 0.25s ease;
        }

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

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

        a {
            text-decoration: none;
            transition: var(--transition);
        }

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

        .logoz img {
            height: 40px;
            display: block;
        }

        .voxly {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .linx {
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 8px;
        }

        .linx:hover {
            color: var(--primary);
            background: rgba(169, 74, 247, 0.05);
        }

        .linx.active {
            color: var(--primary);
            font-weight: 700;
        }

        /* 主内容容器 */
        main {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Hero 区: 全平台覆盖 (acquire) */
        .focuz {
            padding: 80px 5%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
            background: linear-gradient(135deg, #ffffff 0%, #fdfaff 100%);
        }

        .unit {
            flex: 1;
            min-width: 320px;
        }

        .capz {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            color: #000;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .tailz {
            font-size: 1.15rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
            word-break: break-word;
        }

        .pict {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .trigg {
            display: inline-flex;
            align-items: center;
            padding: 14px 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(169, 74, 247, 0.3);
        }

        .trigg:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(169, 74, 247, 0.4);
        }

        .spark {
            display: inline-flex;
            align-items: center;
            padding: 14px 28px;
            background: #fff;
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-weight: 600;
        }

        .spark:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .lixt {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }

        .lixt img {
            width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* 版本历史区 (comparison) */
        .realm {
            padding: 100px 5%;
            background: #fff;
        }

        .bound {
            text-align: center;
            margin-bottom: 60px;
        }

        .bound h2 {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

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

        .nodez {
            flex: 1;
            min-width: 280px;
            max-width: 400px;
            padding: 32px;
            background: var(--muted);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .nodez:hover {
            background: #fff;
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }

        .titl {
            display: inline-block;
            padding: 4px 12px;
            background: var(--primary);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .packt {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .textz {
            font-size: 0.95rem;
            color: #555;
            list-style: none;
        }

        .textz li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .textz li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* 安装指南 (steps) */
        .scope {
            padding: 80px 5%;
            background: var(--muted);
        }

        .vivid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .bubbl {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .ikons {
            width: 48px;
            height: 48px;
            background: rgba(169, 74, 247, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .ikons svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .bubbl h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            color: var(--text);
        }

        .bubbl p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        code {
            display: block;
            background: #f1f1f1;
            padding: 12px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.85rem;
            overflow-x: auto;
            color: var(--accent);
        }

        /* 页脚区 */
        .strix {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 5% 40px;
        }

        .echos {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 60px;
        }

        .anchr {
            flex: 1;
            min-width: 250px;
        }

        .anchr h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .anchr p {
            color: #aaa;
            max-width: 300px;
        }

        .basix {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .basix div h5 {
            font-size: 1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .basix div a {
            display: block;
            color: #888;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .basix div a:hover {
            color: #fff;
        }

        .tranz {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            color: #666;
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .focuz { gap: 40px; }
            .capz { font-size: 2.8rem; }
        }

        @media (max-width: 768px) {
            .groop { padding: 15px 5%; }
            .voxly { display: none; } /* 移动端可隐藏或改为汉堡菜单，此处简化 */
            .focuz { padding: 40px 5%; text-align: center; }
            .pict { justify-content: center; }
            .lixt { order: -1; }
            .realm, .scope { padding: 60px 5%; }
        }

.voxly-groop {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
}
.voxly-groop,
.voxly-groop *,
.voxly-groop *::before,
.voxly-groop *::after {
    box-sizing: border-box;
}

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

.voxly-groop p,
.voxly-groop h1,
.voxly-groop h2,
.voxly-groop h3,
.voxly-groop h4,
.voxly-groop h5,
.voxly-groop h6 {
    text-decoration: none;
}

.voxly-groop img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.voxly-groop {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.voxly-groop a.voxly-linx {
    --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;
}

.voxly-groop a.voxly-linx,
.voxly-groop a.voxly-linx:hover,
.voxly-groop a.voxly-linx:focus,
.voxly-groop a.voxly-linx:active,
.voxly-groop a.voxly-linx.active,
.voxly-groop a.voxly-linx[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);
}

.voxly-groop{ display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid #f4f4f4; }

.voxly-groop .voxly-logoz{ width: 120px; }

.voxly-groop .voxly-logoz img{ width: 100%; height: auto; }

.voxly-groop .voxly-voxly{ display: flex; gap: 20px; }

.voxly-groop .voxly-linx{ text-decoration: none; color: #1a1a1a; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: 0.25s; }

.voxly-groop .voxly-linx:hover{ background: #f4f4f4; }

.voxly-groop .voxly-linx.active{ color: #a94af7; background: #f3e5ff; }

.anchr-strix {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
}
.anchr-strix,
.anchr-strix *,
.anchr-strix *::before,
.anchr-strix *::after {
    box-sizing: border-box;
}

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

.anchr-strix p,
.anchr-strix h1,
.anchr-strix h2,
.anchr-strix h3,
.anchr-strix h4,
.anchr-strix h5,
.anchr-strix h6 {
    text-decoration: none;
}

.anchr-strix img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.anchr-strix {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.anchr-strix a,
.anchr-strix a:hover,
.anchr-strix a:focus,
.anchr-strix a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.anchr-strix .anchr-linx{ text-decoration: none; color: #1a1a1a; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: 0.25s; }

.anchr-strix .anchr-linx:hover{ background: #f4f4f4; }

.anchr-strix .anchr-linx.active{ color: #a94af7; background: #f3e5ff; }

.anchr-strix{ padding: 40px 20px; text-align: center; color: #666; border-top: 1px solid #f4f4f4; }