:root {
            --mtyPe2y8-primary: #c2f339;
            --mtyPe2y8-dark: #0f1115;
            --mtyPe2y8-surface: #1a1d23;
            --mtyPe2y8-text: #ffffff;
            --mtyPe2y8-text-muted: #a0a0a0;
            --mtyPe2y8-radius: 20px;
            --mtyPe2y8-transition: 0.25s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--mtyPe2y8-transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* 导航区域: flux, trace */
        .mtyPe2y8-flux {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 17, 21, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(194, 243, 57, 0.1);
        }

        .mtyPe2y8-shell-nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .mtyPe2y8-logo {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .mtyPe2y8-logo img {
            height: 100%;
            width: auto;
        }

        .mtyPe2y8-trace {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

        .mtyPe2y8-nav-link {
            font-weight: 500;
            font-size: 16px;
            color: var(--mtyPe2y8-text-muted);
            position: relative;
            padding: 8px 0;
        }

        .mtyPe2y8-nav-link:hover {
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-nav-link.active {
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--mtyPe2y8-primary);
            box-shadow: 0 0 10px var(--mtyPe2y8-primary);
        }

        /* 展示区域: apex, vista, spark */
        .mtyPe2y8-apex {
            padding-top: 140px;
            background: radial-gradient(circle at 50% 0%, rgba(194, 243, 57, 0.08) 0%, transparent 50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mtyPe2y8-spark {
            max-width: 900px;
            width: 100%;
            text-align: center;
            padding: 0 20px 60px;
            word-break: break-word;
        }

        .mtyPe2y8-spark h1 {
            font-size: clamp(40px, 6vw, 72px);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .mtyPe2y8-spark p {
            font-size: 20px;
            color: var(--mtyPe2y8-text-muted);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .mtyPe2y8-vista {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: var(--mtyPe2y8-radius);
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mtyPe2y8-vista img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .mtyPe2y8-vista:hover img {
            transform: scale(1.02);
        }

        /* 容器组件: loom, shell, field */
        .mtyPe2y8-loom {
            padding: 100px 0;
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 40px;
            padding-right: 40px;
        }

        .mtyPe2y8-field-head {
            text-align: center;
            margin-bottom: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .mtyPe2y8-field-head h2 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--mtyPe2y8-primary);
        }

        /* 卡片组件: shard, echo */
        .mtyPe2y8-shard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .mtyPe2y8-echo {
            background: var(--mtyPe2y8-surface);
            padding: 40px;
            border-radius: var(--mtyPe2y8-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--mtyPe2y8-transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .mtyPe2y8-echo:hover {
            transform: translateY(-10px);
            border-color: var(--mtyPe2y8-primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .mtyPe2y8-echo-icon {
            width: 60px;
            height: 60px;
            background: rgba(194, 243, 57, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-echo-icon svg {
            width: 32px;
            height: 32px;
        }

        .mtyPe2y8-echo h3 {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .mtyPe2y8-echo p {
            color: var(--mtyPe2y8-text-muted);
            font-size: 16px;
        }

        /* 按钮组件: ping, bolt */
        .mtyPe2y8-bolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            background: var(--mtyPe2y8-primary);
            color: var(--mtyPe2y8-dark);
            font-weight: 700;
            font-size: 18px;
            border-radius: 50px;
            transition: var(--mtyPe2y8-transition);
            cursor: pointer;
            border: none;
        }

        .mtyPe2y8-bolt:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(194, 243, 57, 0.4);
        }

        .mtyPe2y8-ping-list {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .mtyPe2y8-ping {
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            font-size: 14px;
            color: var(--mtyPe2y8-text-muted);
            border: 1px solid transparent;
        }

        .mtyPe2y8-ping:hover {
            border-color: var(--mtyPe2y8-primary);
            color: var(--mtyPe2y8-primary);
        }

        /* 特色区块 */
        .mtyPe2y8-shell-split {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-bottom: 120px;
        }

        .mtyPe2y8-field-text {
            flex: 1;
            min-width: 300px;
        }

        .mtyPe2y8-field-text h2 {
            font-size: 42px;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .mtyPe2y8-field-text ul {
            list-style: none;
            margin-top: 30px;
        }

        .mtyPe2y8-field-text li {
            margin-bottom: 15px;
            padding-left: 28px;
            position: relative;
            color: var(--mtyPe2y8-text-muted);
        }

        .mtyPe2y8-field-text li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--mtyPe2y8-primary);
            font-weight: bold;
        }

        .mtyPe2y8-field-media {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .mtyPe2y8-field-media img {
            border-radius: var(--mtyPe2y8-radius);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }

        /* 页脚区域: wake, root */
        .mtyPe2y8-wake {
            background: #000;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .mtyPe2y8-root {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .mtyPe2y8-field-footer-brand {
            max-width: 400px;
        }

        .mtyPe2y8-field-footer-brand h4 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-field-footer-brand p {
            color: var(--mtyPe2y8-text-muted);
            margin-bottom: 20px;
        }

        .mtyPe2y8-field-footer-links {
            display: flex;
            gap: 80px;
            flex-wrap: wrap;
        }

        .mtyPe2y8-field-footer-col h5 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }

        .mtyPe2y8-field-footer-col a {
            display: block;
            color: var(--mtyPe2y8-text-muted);
            margin-bottom: 12px;
        }

        .mtyPe2y8-field-footer-col a:hover {
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-field-copyright {
            width: 100%;
            text-align: center;
            padding-top: 60px;
            color: #444;
            font-size: 14px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .mtyPe2y8-shell-nav { padding: 0 20px; }
            .mtyPe2y8-loom { padding: 80px 20px; }
            .mtyPe2y8-field-text h2 { font-size: 36px; }
        }

        @media (max-width: 768px) {
            .mtyPe2y8-flux { position: static; }
            .mtyPe2y8-shell-nav { height: auto; padding: 20px; flex-direction: column; gap: 20px; }
            .mtyPe2y8-trace { justify-content: center; width: 100%; }
            .mtyPe2y8-apex { padding-top: 40px; }
            .mtyPe2y8-spark h1 { font-size: 42px; }
            .mtyPe2y8-shard-grid { grid-template-columns: 1fr; }
            .mtyPe2y8-shell-split { flex-direction: column; }
            .mtyPe2y8-field-footer-links { gap: 40px; }
        }

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

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

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

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

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

.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 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;
}

.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-link,
.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-link:hover,
.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-link:focus,
.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-link:active,
.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-link.active,
.mtyPe2y8-hdr-flux a.mtyPe2y8-hdr-nav-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);
}

.mtyPe2y8-hdr-flux{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 17, 21, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(194, 243, 57, 0.1);
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-shell-nav{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-logo{
            height: 40px;
            display: flex;
            align-items: center;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-logo img{
            height: 100%;
            width: auto;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-trace{
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-nav-link{
            font-weight: 500;
            font-size: 16px;
            color: #a0a0a0;
            position: relative;
            padding: 8px 0;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-nav-link:hover{
            color: #c2f339;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-nav-link.active{
            color: #c2f339;
        }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-nav-link.active::after{
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #c2f339;
            box-shadow: 0 0 10px #c2f339;
        }

@media (max-width: 1024px){.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-shell-nav{ padding: 0 20px; }}

@media (max-width: 768px){.mtyPe2y8-hdr-flux{ position: static; }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-shell-nav{ height: auto; padding: 20px; flex-direction: column; gap: 20px; }

.mtyPe2y8-hdr-flux .mtyPe2y8-hdr-trace{ justify-content: center; width: 100%; }}

.mtyPe2y8-hdr-flux {
    background: rgb(15, 17, 21);
    background-image: none;
}

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

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

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

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

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

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

.mtyPe2y8-ftr-wake{
            background: #000;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-root{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-brand{
            max-width: 400px;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-brand h4{
            font-size: 24px;
            margin-bottom: 20px;
            color: #c2f339;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-brand p{
            color: #a0a0a0;
            margin-bottom: 20px;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-links{
            display: flex;
            gap: 80px;
            flex-wrap: wrap;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-col h5{
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-col a{
            display: block;
            color: #a0a0a0;
            margin-bottom: 12px;
        }

.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-col a:hover{
            color: #c2f339;
        }

@media (max-width: 768px){.mtyPe2y8-ftr-wake .mtyPe2y8-ftr-field-footer-links{ gap: 40px; }}