:root {
            --v54o-primary: #7f4cf8;
            --v54o-primary-soft: rgba(127, 76, 248, 0.1);
            --v54o-text: #2d3436;
            --v54o-text-light: #636e72;
            --v54o-bg: #fdfdff;
            --v54o-white: #ffffff;
            --v54o-shadow: 0 10px 30px rgba(127, 76, 248, 0.08);
            --v54o-shadow-deep: 0 20px 40px rgba(127, 76, 248, 0.15);
            --v54o-radius: 22px;
            --v54o-transition: 0.35s ease;
        }

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

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

        /* 强制复用导航栏样式 */
        .v54o-orbit {
            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 rgba(127, 76, 248, 0.1);
        }

        .v54o-aura {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .v54o-logo img {
            height: 40px;
            display: block;
        }

        .v54o-trace {
            display: flex;
            gap: 32px;
        }

        .v54o-trace-link {
            text-decoration: none;
            color: var(--v54o-text);
            font-weight: 500;
            font-size: 16px;
            transition: var(--v54o-transition);
            position: relative;
        }

        .v54o-trace-link:hover, .v54o-trace-link.active {
            color: var(--v54o-primary);
        }

        .v54o-trace-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--v54o-primary);
            border-radius: 2px;
        }

        /* Hero Area: card_float */
        .v54o-flare {
            padding-top: 160px;
            padding-bottom: 100px;
            background: radial-gradient(circle at top right, var(--v54o-primary-soft), transparent);
            position: relative;
            overflow: hidden;
        }

        .v54o-nexus {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .v54o-apex {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .v54o-apex h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--v54o-text);
            word-break: keep-all;
        }

        .v54o-apex p {
            font-size: 1.2rem;
            color: var(--v54o-text-light);
            margin-bottom: 40px;
        }

        /* Floating Shards in Hero */
        .v54o-shard-float {
            position: absolute;
            background: var(--v54o-white);
            padding: 16px 24px;
            border-radius: var(--v54o-radius);
            box-shadow: var(--v54o-shadow-deep);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float-y 6s ease-in-out infinite alternate;
            z-index: 1;
        }

        @keyframes float-y {
            from { transform: translateY(0); }
            to { transform: translateY(-20px); }
        }

        .v54o-shard-1 { top: 120px; left: 5%; animation-delay: 0s; }
        .v54o-shard-2 { top: 250px; right: 8%; animation-delay: -2s; }
        .v54o-shard-3 { bottom: 50px; left: 15%; animation-delay: -4s; }

        .v54o-shard-icon {
            width: 40px;
            height: 40px;
            background: var(--v54o-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* Main Field */
        .v54o-field {
            padding: 80px 0;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }

        .v54o-pulse-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .v54o-pulse-title h2 {
            font-size: 2.2rem;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .v54o-pulse-title h2::after {
            content: '';
            position: absolute;
            width: 40%;
            height: 4px;
            background: var(--v54o-primary);
            bottom: -10px;
            left: 30%;
            border-radius: 2px;
        }

        /* Channel Pods Grid */
        .v54o-pod-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .v54o-pod {
            flex: 1;
            min-width: 320px;
            max-width: 340px;
            background: var(--v54o-white);
            padding: 40px;
            border-radius: var(--v54o-radius);
            box-shadow: var(--v54o-shadow);
            transition: var(--v54o-transition);
            border: 1px solid rgba(127, 76, 248, 0.05);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .v54o-pod:hover {
            transform: translateY(-10px);
            box-shadow: var(--v54o-shadow-deep);
            border-color: var(--v54o-primary);
        }

        .v54o-pod-head {
            margin-bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .v54o-pod-tag {
            background: var(--v54o-primary-soft);
            color: var(--v54o-primary);
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }

        .v54o-pod h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--v54o-primary);
        }

        .v54o-pod p {
            font-size: 15px;
            color: var(--v54o-text-light);
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .v54o-bolt {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--v54o-primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--v54o-transition);
        }

        .v54o-bolt:hover {
            background: #6439d1;
            box-shadow: 0 5px 15px rgba(127, 76, 248, 0.4);
        }

        /* Tips Shard */
        .v54o-nexus-info {
            background: var(--v54o-white);
            margin-top: 80px;
            border-radius: var(--v54o-radius);
            padding: 50px;
            box-shadow: var(--v54o-shadow);
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .v54o-shard-visual {
            flex: 1;
            min-width: 300px;
        }

        .v54o-shard-visual svg {
            width: 100%;
            max-width: 400px;
            height: auto;
        }

        .v54o-shard-text {
            flex: 1.5;
            min-width: 300px;
        }

        .v54o-shard-text h2 {
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .v54o-info-list {
            list-style: none;
        }

        .v54o-info-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .v54o-info-list code {
            background: #f1f2f6;
            padding: 2px 8px;
            border-radius: 4px;
            color: var(--v54o-primary);
            font-family: monospace;
        }

        /* Echo Footer */
        .v54o-echo {
            background: #1a1a2e;
            color: #d1d1e0;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

        .v54o-depth {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }

        .v54o-depth-brand {
            flex: 1.5;
            min-width: 260px;
        }

        .v54o-depth-brand h3 {
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .v54o-depth-links {
            flex: 1;
            min-width: 150px;
        }

        .v54o-depth-links h4 {
            color: white;
            margin-bottom: 20px;
        }

        .v54o-depth-links a {
            display: block;
            color: #a0a0b8;
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--v54o-transition);
        }

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

        .v54o-copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 60px;
            font-size: 14px;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .v54o-trace { display: none; }
            .v54o-shard-float { display: none; }
            .v54o-apex h1 { font-size: 2rem; }
            .v54o-nexus-info { padding: 30px; }
            .v54o-pod { max-width: 100%; }
        }

.v54o-hdr-orbit {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--v54o-text);
}
.v54o-hdr-orbit,
.v54o-hdr-orbit *,
.v54o-hdr-orbit *::before,
.v54o-hdr-orbit *::after {
    box-sizing: border-box;
}

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

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

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

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

.v54o-hdr-orbit a.v54o-hdr-trace-link {
    --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;
}

.v54o-hdr-orbit a.v54o-hdr-trace-link,
.v54o-hdr-orbit a.v54o-hdr-trace-link:hover,
.v54o-hdr-orbit a.v54o-hdr-trace-link:focus,
.v54o-hdr-orbit a.v54o-hdr-trace-link:active,
.v54o-hdr-orbit a.v54o-hdr-trace-link.active,
.v54o-hdr-orbit a.v54o-hdr-trace-link[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);
}

.v54o-hdr-orbit .v54o-hdr-aura{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

.v54o-hdr-orbit{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(127, 76, 248, 0.1);
            padding: 1rem 0;
        }

.v54o-hdr-orbit .v54o-hdr-aura{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.v54o-hdr-orbit .v54o-hdr-logo{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.v54o-hdr-orbit .v54o-hdr-logo img{
            height: 40px;
            width: auto;
        }

.v54o-hdr-orbit .v54o-hdr-trace{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.v54o-hdr-orbit .v54o-hdr-trace-link{
            font-weight: 600;
            color: #334155;
            font-size: 0.95rem;
            position: relative;
        }

.v54o-hdr-orbit .v54o-hdr-trace-link:hover, .v54o-hdr-orbit .v54o-hdr-trace-link.active{
            color: #7f4cf8;
        }

.v54o-hdr-orbit .v54o-hdr-trace-link.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #7f4cf8;
            border-radius: 2px;
        }

@media (max-width: 768px){.v54o-hdr-orbit .v54o-hdr-trace{
                display: none; 
            }}

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

.v54o-ftr-echo {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--v54o-text);
}
.v54o-ftr-echo,
.v54o-ftr-echo *,
.v54o-ftr-echo *::before,
.v54o-ftr-echo *::after {
    box-sizing: border-box;
}

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

.v54o-ftr-echo p,
.v54o-ftr-echo h1,
.v54o-ftr-echo h2,
.v54o-ftr-echo h3,
.v54o-ftr-echo h4,
.v54o-ftr-echo h5,
.v54o-ftr-echo h6 {
    text-decoration: none;
}

.v54o-ftr-echo img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.v54o-ftr-echo {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.v54o-ftr-echo a,
.v54o-ftr-echo a:hover,
.v54o-ftr-echo a:focus,
.v54o-ftr-echo a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.v54o-ftr-echo .v54o-ftr-aura{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

.v54o-ftr-echo{
            background: #0f172a;
            color: #fff;
            padding: 100px 0 50px;
            position: relative;
        }

.v54o-ftr-echo .v54o-ftr-echo-art{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
            pointer-events: none;
        }

.v54o-ftr-echo .v54o-ftr-aura{
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

.v54o-ftr-echo .v54o-ftr-echo-brand{
            flex: 1;
            min-width: 250px;
        }

.v54o-ftr-echo .v54o-ftr-echo-brand h2{
            color: #fff;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

.v54o-ftr-echo .v54o-ftr-echo-links{
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

.v54o-ftr-echo .v54o-ftr-echo-group h4{
            color: #a381ff;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.v54o-ftr-echo .v54o-ftr-echo-group ul{
            list-style: none;
        }

.v54o-ftr-echo .v54o-ftr-echo-group ul li{
            margin-bottom: 0.8rem;
        }

.v54o-ftr-echo .v54o-ftr-echo-group ul li a{
            color: rgba(255,255,255,0.6);
        }

.v54o-ftr-echo .v54o-ftr-echo-group ul li a:hover{
            color: #fff;
            padding-left: 5px;
        }

.v54o-ftr-echo .v54o-ftr-depth{
            margin-top: 80px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
        }