:root {
            --primary: #df7ba9;
            --primary-soft: #f8e8f0;
            --rune-color: #4a4a4a;
            --bg: #ffffff;
            --slab-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --accent-gradient: linear-gradient(135deg, #df7ba9 0%, #ff9a9e 100%);
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.8;
            color: #1a1a1a;
            background-color: var(--bg);
            word-break: keep-all;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.25s ease;
        }

        /* 导航复用样式 */
        .loft {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #f0f0f0;
        }

        .vault {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .glyph {
            min-width: 0;
        }

        .glyph img {
            height: 32px;
            display: block;
        }

        .tier {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .mark {
            font-size: 16px;
            font-weight: 500;
            color: #4a4a4a;
            position: relative;
        }

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

        .mark.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

        /* 主体布局 */
        main {
            padding-top: 80px;
        }

        /* Hero: Mural - Download Matrix */
        .mural {
            padding: 120px 0 80px;
            background: linear-gradient(180deg, #fdf5f8 0%, #ffffff 100%);
            text-align: center;
        }

        .hull {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .apex-h1 {
            font-size: 56px;
            line-height: 1.2;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            word-break: break-word;
        }

        .rune-prime {
            font-size: 20px;
            color: var(--rune-color);
            max-width: 700px;
            margin: 0 auto 48px;
            word-break: break-word;
        }

        .lens-matrix {
            width: 100%;
            max-width: 860px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            margin-bottom: 60px;
            display: block;
        }

        .clan-flux {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .urge-primary {
            display: inline-flex;
            align-items: center;
            background-color: var(--primary);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 8px 25px rgba(223, 123, 169, 0.4);
            min-width: 0;
        }

        .urge-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(223, 123, 169, 0.5);
        }

        /* Platform Selection: Vault Article */
        .prime-vault {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .apex-h2 {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

        .clan-folio {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .folio-slab {
            padding: 40px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f0f0f0;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-width: 0;
        }

        .folio-slab:hover {
            border-color: var(--primary-soft);
            box-shadow: var(--slab-shadow);
            transform: translateY(-5px);
        }

        .trek-box {
            width: 56px;
            height: 56px;
            background: var(--primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .trek-box svg {
            width: 32px;
            height: 32px;
        }

        .apex-slab {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .rune-slab {
            font-size: 15px;
            color: #666;
            margin-bottom: 24px;
            word-break: break-word;
        }

        .band-specs {
            width: 100%;
            border-top: 1px solid #f5f5f5;
            padding-top: 20px;
            margin-top: auto;
        }

        .leaf-spec {
            font-size: 13px;
            color: #999;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .urge-etch {
            margin-top: 20px;
            padding: 10px 20px;
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 6px;
            font-weight: 500;
            font-size: 14px;
            width: 100%;
            text-align: center;
        }

        .urge-etch:hover {
            background: var(--primary);
            color: white;
        }

        /* Update History: Bound Div */
        .bound-history {
            padding: 100px 0;
            background-color: #fafafa;
        }

        .veil-hull {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .clan-history {
            position: relative;
            padding-left: 32px;
            border-left: 2px solid #eee;
        }

        .leaf-log {
            position: relative;
            margin-bottom: 60px;
        }

        .leaf-log::before {
            content: '';
            position: absolute;
            left: -41px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            border: 4px solid #fff;
            box-shadow: 0 0 0 2px var(--primary-soft);
        }

        .band-date {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .apex-log {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .rune-log {
            font-size: 16px;
            color: #555;
            word-break: break-word;
        }

        .rune-log ul {
            list-style: none;
            margin-top: 10px;
        }

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

        .rune-log li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* Footer */
        .sole {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0 40px;
        }

        .trace-bound {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .seal-brand {
            flex: 1;
            min-width: 280px;
            margin-bottom: 40px;
        }

        .apex-seal {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #fff;
        }

        .rune-seal {
            color: #888;
            max-width: 300px;
        }

        .clan-mark {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .leaf-mark-clan {
            min-width: 120px;
        }

        .apex-mark-clan {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .mark-sole {
            display: block;
            color: #888;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .mark-sole:hover {
            color: var(--primary);
        }

        .band-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 30px 24px 0;
            border-top: 1px solid #333;
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .apex-h1 { font-size: 36px; }
            .tier { display: none; }
            .clan-folio { grid-template-columns: 1fr; }
            .mural { padding: 80px 0 40px; }
            .loft { height: 70px; }
            .orbit { height: 70px; }
            .trace-bound { flex-direction: column; }
        }

.orbit-loft {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    word-break: keep-all;
    color: var(--dark);
}
.orbit-loft,
.orbit-loft *,
.orbit-loft *::before,
.orbit-loft *::after {
    box-sizing: border-box;
}

.orbit-loft [role="navigation"],
.orbit-loft div,
.orbit-loft section,
.orbit-loft article,
.orbit-loft aside,
.orbit-loft p,
.orbit-loft h1,
.orbit-loft h2,
.orbit-loft h3,
.orbit-loft h4,
.orbit-loft h5,
.orbit-loft h6,
.orbit-loft a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.orbit-loft a.orbit-mark {
    --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;
}

.orbit-loft a.orbit-mark,
.orbit-loft a.orbit-mark:hover,
.orbit-loft a.orbit-mark:focus,
.orbit-loft a.orbit-mark:active,
.orbit-loft a.orbit-mark.active,
.orbit-loft a.orbit-mark[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);
}

.orbit-loft .orbit-vault{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

.orbit-loft{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }

.orbit-loft .orbit-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.orbit-loft .orbit-glyph{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.orbit-loft .orbit-glyph img{
            height: 32px;
            width: auto;
        }

.orbit-loft .orbit-tier{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 30px;
        }

.orbit-loft .orbit-mark{
            text-decoration: none;
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
        }

.orbit-loft .orbit-mark:hover, .orbit-loft .orbit-mark.active{
            color: #df7ba9;
        }

.orbit-loft .orbit-mark.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #df7ba9;
        }

@media (max-width: 768px){.orbit-loft .orbit-vault{ padding: 0 20px; }

.orbit-loft .orbit-orbit{ height: auto; padding: 20px 0; }

.orbit-loft .orbit-tier{ gap: 15px; margin-top: 15px; width: 100%; justify-content: center; }}

.orbit-loft {
    background: rgb(255, 255, 255);
    background-image: none;
}

.trace-sole {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    word-break: keep-all;
    color: var(--dark);
}
.trace-sole,
.trace-sole *,
.trace-sole *::before,
.trace-sole *::after {
    box-sizing: border-box;
}

.trace-sole [role="navigation"],
.trace-sole div,
.trace-sole section,
.trace-sole article,
.trace-sole aside,
.trace-sole p,
.trace-sole h1,
.trace-sole h2,
.trace-sole h3,
.trace-sole h4,
.trace-sole h5,
.trace-sole h6,
.trace-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.trace-sole .trace-vault{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

.trace-sole{
            background: #f8f8f8;
            padding: 80px 0 40px;
            border-top: 1px solid #eee;
        }

.trace-sole .trace-sole-veil{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

.trace-sole .trace-seal-brand p{
            margin-top: 20px;
            max-width: 300px;
            color: #888;
        }

.trace-sole .trace-seal-clan h6{
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 600;
        }

.trace-sole .trace-seal-tier{
            list-style: none;
        }

.trace-sole .trace-seal-tier li{
            margin-bottom: 12px;
        }

.trace-sole .trace-seal-tier a{
            color: #666;
            text-decoration: none;
            transition: color 0.25s ease;
        }

.trace-sole .trace-seal-tier a:hover{
            color: #df7ba9;
        }

.trace-sole .trace-sole-band{
            border-top: 1px solid #eee;
            padding-top: 30px;
            text-align: center;
            color: #999;
            font-size: 14px;
        }

@media (max-width: 1024px){.trace-sole .trace-sole-veil{ grid-template-columns: 1fr 1fr; }}

@media (max-width: 768px){.trace-sole .trace-vault{ padding: 0 20px; }

.trace-sole .trace-sole-veil{ grid-template-columns: 1fr; gap: 30px; }}