:root {
            --primary: #a94af7;
            --accent: #7a28c2;
            --bg: #ffffff;
            --text: #1a1a1a;
            --mute: #666666;
            --border: #eeeeee;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(169, 74, 247, 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.6; color: var(--text); background: var(--bg); overflow-x: hidden; }

        /* 强制复用导航栏风格 */
        .groop { display: flex; align-items: center; justify-content: space-between; padding: 20px 5%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
        .logoz img { height: 32px; width: auto; }
        .voxly { display: flex; gap: 30px; }
        .linx { text-decoration: none; color: var(--text); font-weight: 500; font-size: 15px; transition: color 0.25s ease; position: relative; }
        .linx:hover { color: var(--primary); }
        .linx.active { color: var(--primary); }
        .linx.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary); }

        /* 内容容器 */
        .realm { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

        /* 首屏展示 */
        .focuz { padding: 100px 0 60px; text-align: center; background: radial-gradient(circle at top right, rgba(169, 74, 247, 0.05), transparent); }
        .capz { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 24px; color: #000; word-break: keep-all; }
        .tailz { font-size: 1.25rem; color: var(--mute); max-width: 800px; margin: 0 auto 40px; }
        
        /* 脚本功能区 - acquire */
        .scope { padding: 80px 0; background: #fafafa; border-radius: 40px; margin: 40px 0; }
        .vivid { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
        .unit { flex: 1; min-width: 320px; }
        .pict { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; flex: 1.5; min-width: 320px; }
        
        /* 卡片风格 */
        .nodez { background: white; padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.25s ease; position: relative; overflow: hidden; }
        .nodez:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary); }
        .ikons { width: 48px; height: 48px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: rgba(169, 74, 247, 0.1); border-radius: 12px; color: var(--primary); }
        .titl { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }

        /* 编辑器展示区 - visual_editor_showcase */
        .broadc { background: #1a1a1a; color: #fff; padding: 80px 40px; border-radius: 30px; margin-bottom: 80px; position: relative; overflow: hidden; }
        .bound { display: flex; flex-wrap: wrap; gap: 60px; align-items: center; }
        .tranz { flex: 1; min-width: 300px; }
        .packt { flex: 1.2; min-width: 320px; background: #2a2a2a; border-radius: 15px; padding: 20px; border: 1px solid #444; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
        .bubbl { font-family: "Fira Code", monospace; font-size: 14px; color: #d4d4d4; line-height: 1.8; }
        .spark { color: var(--primary); }
        
        /* 插件库列表 - aside */
        .basix { padding: 60px 0; border-top: 1px solid var(--border); }
        .holdz { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
        .strix { border-bottom: 1px solid var(--border); padding: 20px 0; }
        .strix summary { font-size: 1.2rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        .strix summary::after { content: '+'; color: var(--primary); font-size: 20px; }
        .strix[open] summary::after { content: '-'; }
        .textz { padding: 15px 0; color: var(--mute); line-height: 1.7; }

        /* 按钮与交互 */
        .trigg { display: inline-flex; align-items: center; padding: 14px 36px; background: var(--primary); color: white; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.25s ease; border: none; cursor: pointer; }
        .trigg:hover { background: var(--accent); transform: scale(1.05); }
        .pulse { margin-left: 10px; transition: transform 0.25s ease; }
        .trigg:hover .pulse { transform: translateX(5px); }

        /* 页脚 */
        .anchr { background: #f9f9f9; padding: 80px 0 40px; border-top: 1px solid var(--border); }
        .echos { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
        .waypt { font-size: 14px; color: var(--mute); }
        .waypt h4 { color: var(--text); margin-bottom: 20px; font-size: 16px; }
        .waypt a { display: block; color: var(--mute); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
        .waypt a:hover { color: var(--primary); }

        @media (max-width: 768px) {
            .capz { font-size: 2.2rem; }
            .voxly { display: none; }
            .realm { padding: 0 20px; }
            .focuz { padding: 60px 0; }
            .unit, .pict, .tranz, .packt { flex: 100%; min-width: 100%; }
        }

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