/* 全局重置 */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        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;
            overflow-x: hidden;
        }

        /* 导航栏样式 */
        .array {
            width: 100%;
            background-color: rgba(5, 6, 8, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(242, 40, 121, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

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

        .steer {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

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

        .glyph:hover {
            color: var(--text);
            background-color: rgba(242, 40, 121, 0.1);
        }

        .glyph.active, .glyph.active {
            color: #ffffff;
            background-color: var(--primary);
        }

        /* 主内容容器 */
        .matrix {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        /* 1. 订阅管理 (角色:intro) */
        .zenith {
            width: 100%;
            background: linear-gradient(to top, rgba(11, 12, 16, 1) 0%, rgba(11, 12, 16, 0.4) 60%, transparent 100%);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            padding: 40px 0;
        }

        .zenith-left {
            flex: 12;
            min-width: 300px;
            word-break: break-word;
        }

        .zenith-right {
            flex: 10;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bead-frame {
            width: 100%;
            max-width: 500px;
            border-radius: var(--radius);
            border: 1px solid rgba(242, 40, 121, 0.2);
            box-shadow: 0 15px 35px rgba(242, 40, 121, 0.15);
            overflow: hidden;
            background-color: var(--bg-card);
        }

        .bead-frame img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .lore-large {
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            font-size: clamp(2rem, 5vw, 3rem);
            letter-spacing: 1px;
            margin-bottom: 20px;
            white-space: normal;
        }

        .whisper-lead {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.8;
        }

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

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

        /* 2. 订阅管理主题焦点 (角色:pathway) */
        .flare {
            width: 100%;
        }

        .lore-mid {
            color: #ffffff;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .lore-mid::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

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

        .shard-step {
            flex: 1;
            min-width: 280px;
            background-color: var(--bg-card);
            border: 1px solid rgba(242, 40, 121, 0.1);
            border-radius: var(--radius);
            padding: 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .shard-step:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(242, 40, 121, 0.1);
        }

        .crown-step {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(242, 40, 121, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

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

        .whisper-body {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
            word-break: break-word;
        }

        /* 3. 核心信息路径 (角色:pathway) */
        .conduit {
            width: 100%;
            padding: 60px 40px;
            background-color: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid rgba(242, 40, 121, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .halo-comparison {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }

        .packet-compare {
            flex: 1;
            min-width: 300px;
            background-color: rgba(11, 12, 16, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 30px;
            transition: var(--transition);
        }

        .packet-compare:hover {
            border-color: rgba(242, 40, 121, 0.3);
        }

        .seam-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 20px 0;
        }

        /* 4. 使用场景与补充说明 (角色:capability) */
        .sheath-details {
            width: 100%;
        }

        .matrix-faq {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 35px;
        }

        .bloc-faq {
            background-color: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 25px;
            transition: var(--transition);
        }

        .bloc-faq:hover {
            border-color: rgba(242, 40, 121, 0.2);
        }

        /* 页脚样式 */
        .crest {
            background-color: #050608;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 20px 30px;
            margin-top: 100px;
        }

        .crest-sheath {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

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

        .crest-brand {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .crest-tether {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: flex-end;
        }

        .crest-halo {
            min-width: 150px;
        }

        .crest-lore {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

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

        .crest-glyph {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

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

        .crest-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .sheath {
                flex-direction: column;
                gap: 15px;
            }
            .steer {
                justify-content: center;
            }
            .crest-tether {
                justify-content: flex-start;
            }
            .matrix {
                gap: 60px;
            }
            .conduit {
                padding: 40px 20px;
            }
        }

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