:root {
      --primary: #f22879;
      --primary-hover: #ff4b93;
      --bg: #0b0c10;
      --bg-card: #171923;
      --text: #e2e8f0;
      --text-muted: #94a3b8;
      --radius: 14px;
      --transition: 0.15s ease;
    }

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

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

    .outer-sheath {
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* 导航栏复用及规范 */
    .array {
      width: 100%;
      background-color: #050608;
      border-bottom: 1px solid rgba(242, 40, 121, 0.15);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .sheath {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .emblem {
      display: flex;
      align-items: center;
    }

    .emblem img {
      height: 40px;
      width: auto;
    }

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

    .glyph {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color var(--transition);
      padding: 5px 10px;
      border-radius: 8px;
    }

    .glyph:hover, .glyph.active {
      color: var(--primary);
    }

    .glyph.active {
      background-color: rgba(242, 40, 121, 0.1);
      font-weight: 600;
    }

    /* Cinematic Strip Hero Section (客户端下载) */
    .flare {
      width: 100%;
      background: linear-gradient(to bottom, #050608 0%, var(--bg) 100%);
      padding: 80px 20px;
      border-bottom: 1px solid rgba(242, 40, 121, 0.08);
    }

    .prism {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .prism > div {
      flex: 1;
      min-width: 320px;
    }

    .lore {
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.3;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    .whisper {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 30px;
    }

    .bead {
      max-width: 100%;
      height: auto;
      border-radius: var(--radius);
      border: 1px solid rgba(242, 40, 121, 0.25);
      box-shadow: 0 15px 40px rgba(242, 40, 121, 0.15);
      transition: transform var(--transition);
    }

    .bead:hover {
      transform: translateY(-5px);
    }

    .halo {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .ignite {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary);
      color: #ffffff;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: var(--radius);
      box-shadow: 0 4px 15px rgba(242, 40, 121, 0.3);
      text-decoration: none;
      transition: background-color var(--transition), transform var(--transition);
    }

    .ignite:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }

    .warp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      color: var(--text);
      font-weight: 600;
      padding: 14px 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-decoration: none;
      transition: border-color var(--transition), background-color var(--transition);
    }

    .warp:hover {
      border-color: var(--primary);
      background-color: rgba(242, 40, 121, 0.05);
    }

    /* Conduit - 主体容器 */
    .conduit {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .conduit .lore {
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      text-align: center;
      margin-bottom: 15px;
    }

    .conduit .whisper {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
    }

    /* Matrix - 卡片矩阵 */
    .matrix {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .bloc {
      flex: 1;
      min-width: 320px;
      background-color: var(--bg-card);
      border: 1px solid rgba(242, 40, 121, 0.15);
      border-radius: var(--radius);
      padding: 35px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: transform var(--transition), border-color var(--transition);
      display: flex;
      flex-direction: column;
    }

    .bloc:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }

    .crown {
      width: 55px;
      height: 55px;
      background: rgba(242, 40, 121, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      color: var(--primary);
    }

    .crown svg {
      width: 28px;
      height: 28px;
    }

    .bloc-lore {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 15px;
    }

    .bloc-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 25px;
      flex-grow: 1;
    }

    .strand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14px;
      color: var(--text);
    }

    .strand svg {
      width: 18px;
      height: 18px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .seam {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 25px 0;
    }

    /* Aside - 平台适配 */
    aside.matrix-aside {
      background-color: #0d0f17;
      border-top: 1px solid rgba(242, 40, 121, 0.1);
      border-bottom: 1px solid rgba(242, 40, 121, 0.1);
      padding: 80px 20px;
      width: 100%;
    }

    .matrix-prism {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .matrix-prism .lore {
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 40px;
    }

    .table-sheath {
      width: 100%;
      overflow-x: auto;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 700px;
    }

    th, td {
      padding: 18px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    th {
      background-color: #151722;
      color: #ffffff;
      font-weight: 600;
    }

    td {
      background-color: var(--bg-card);
      color: var(--text-muted);
    }

    tr:last-child td {
      border-bottom: none;
    }

    .highlight-td {
      color: #ffffff;
      font-weight: 600;
    }

    .status-spark {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      background-color: rgba(242, 40, 121, 0.15);
      color: var(--primary);
    }

    /* 安装与启动路径样式 */
    .steps-prism {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .step-bloc {
      flex: 1;
      min-width: 260px;
      background: var(--bg-card);
      border: 1px solid rgba(242, 40, 121, 0.1);
      border-radius: var(--radius);
      padding: 35px;
      position: relative;
      transition: transform var(--transition);
    }

    .step-bloc:hover {
      transform: translateY(-5px);
    }

    .step-number {
      position: absolute;
      top: 25px;
      right: 25px;
      font-size: 36px;
      font-weight: 800;
      color: rgba(242, 40, 121, 0.15);
      line-height: 1;
    }

    .step-lore {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 15px;
      padding-right: 40px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--text-muted);
    }

    .step-desc a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .step-desc a:hover {
      text-decoration: underline;
    }

    /* FAQ Details 样式 */
    .faq-sheath {
      max-width: 850px;
      margin: 50px auto 0 auto;
      width: 100%;
    }

    details {
      background-color: var(--bg-card);
      border: 1px solid rgba(242, 40, 121, 0.1);
      border-radius: var(--radius);
      margin-bottom: 15px;
      overflow: hidden;
      transition: border-color var(--transition);
    }

    details[open] {
      border-color: var(--primary);
    }

    summary {
      padding: 22px;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      font-size: 16px;
      color: #ffffff;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: '+';
      font-size: 22px;
      color: var(--primary);
      transition: transform var(--transition);
      font-weight: bold;
    }

    details[open] summary::after {
      content: '−';
    }

    .faq-whisper {
      padding: 0 22px 22px 22px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 18px;
      font-size: 14px;
      line-height: 1.6;
    }

    /* 页脚 / Crest */
    .crest {
      background-color: #050608;
      border-top: 1px solid rgba(242, 40, 121, 0.15);
      padding: 70px 20px 30px 20px;
      margin-top: auto;
    }

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

    .brand-column {
      flex: 1;
      min-width: 280px;
    }

    .brand-name {
      font-size: 26px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 15px;
      letter-spacing: 1px;
    }

    .brand-desc {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 320px;
    }

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

    .links-halo {
      min-width: 130px;
    }

    .links-halo h4 {
      color: #ffffff;
      font-size: 15px;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .links-halo a {
      display: block;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      margin-bottom: 12px;
      transition: color var(--transition);
    }

    .links-halo a:hover {
      color: var(--primary);
    }

    .abyss {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
      gap: 15px;
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
      .sheath {
        flex-direction: column;
        gap: 15px;
      }
      .steer {
        justify-content: center;
        width: 100%;
      }
      .prism {
        flex-direction: column;
        text-align: center;
      }
      .halo {
        justify-content: center;
      }
      .abyss {
        flex-direction: column;
        text-align: center;
      }
    }

.vector-array {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.vector-array,
.vector-array *,
.vector-array *::before,
.vector-array *::after {
    box-sizing: border-box;
}

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

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

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

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

.vector-array a.vector-glyph.vector-active,
.vector-array a.vector-glyph {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.vector-array a.vector-glyph.vector-active,
.vector-array a.vector-glyph.vector-active:hover,
.vector-array a.vector-glyph.vector-active:focus,
.vector-array a.vector-glyph.vector-active:active,
.vector-array a.vector-glyph.vector-active.active,
.vector-array a.vector-glyph.vector-active[aria-current="page"],
.vector-array a.vector-glyph,
.vector-array a.vector-glyph:hover,
.vector-array a.vector-glyph:focus,
.vector-array a.vector-glyph:active,
.vector-array a.vector-glyph.active,
.vector-array a.vector-glyph[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);
}

.vector-array{
            background-color: rgba(11, 12, 16, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(242, 40, 121, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

.vector-array .vector-sheath{
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

.vector-array .vector-sheath{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

.vector-array .vector-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.vector-array .vector-emblem img{
            height: 36px;
            width: auto;
            display: block;
        }

.vector-array .vector-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.vector-array .vector-glyph{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

.vector-array .vector-glyph:hover{
            color: #f22879;
        }

.vector-array .vector-glyph.vector-active{
            color: #f22879;
            font-weight: 600;
            border-bottom: 2px solid #f22879;
        }

@media (max-width: 768px){.vector-array .vector-sheath{
                height: auto;
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

.vector-array .vector-steer{
                justify-content: center;
            }}

.vector-array {
    background: rgb(11, 12, 16);
    background-image: none;
}

.anchor-crest {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.anchor-crest,
.anchor-crest *,
.anchor-crest *::before,
.anchor-crest *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-crest .anchor-sheath{
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

.anchor-crest .anchor-glyph{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

.anchor-crest .anchor-glyph:hover{
            color: #f22879;
        }

.anchor-crest .anchor-lore{
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
        }

.anchor-crest h1.anchor-lore{
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

.anchor-crest h2.anchor-lore{
            font-size: clamp(1.5rem, 3vw, 2rem);
            border-left: 4px solid #f22879;
            padding-left: 12px;
            margin-bottom: 20px;
        }

.anchor-crest h3.anchor-lore{
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

.anchor-crest .anchor-whisper{
            color: #94a3b8;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            max-width: 800px;
            margin-bottom: 24px;
        }

.anchor-crest .anchor-halo{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
        }

.anchor-crest{
            background-color: #050608;
            border-top: 1px solid rgba(242, 40, 121, 0.15);
            padding: 60px 0 20px;
            margin-top: auto;
        }

.anchor-crest .anchor-halo{
            justify-content: space-between;
            gap: 40px;
        }

.anchor-crest .anchor-bloc{
            flex: 1 1 250px;
            min-width: 0;
        }

.anchor-crest .anchor-lore{
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.anchor-crest .anchor-anchor{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-crest .anchor-anchor .anchor-glyph{
            padding: 0;
            font-size: 0.9rem;
        }

.anchor-crest .anchor-ground{
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #94a3b8;
            font-size: 0.85rem;
            width: 100%;
        }