:root {
            --mtyPe2y8-primary: #c2f339;
            --mtyPe2y8-bg: #0a0a0a;
            --mtyPe2y8-surface: #1a1a1a;
            --mtyPe2y8-text: #ffffff;
            --mtyPe2y8-text-dim: #a0a0a0;
            --mtyPe2y8-radius: 20px;
            --mtyPe2y8-transition: 0.25s ease;
        }

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

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

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

        /* 强制复用导航栏样式 */
        header.mtyPe2y8-flux {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(194, 243, 57, 0.1);
        }

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

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

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

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

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

        /* Hero展示区域 - vertical_stack结构 */
        .mtyPe2y8-spark {
            padding: 160px 24px 80px;
            background: radial-gradient(circle at 50% 0%, rgba(194, 243, 57, 0.15) 0%, transparent 70%);
            text-align: center;
        }

        .mtyPe2y8-shell {
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        .mtyPe2y8-apex {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
        }

        .mtyPe2y8-apex h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.03em;
            word-break: break-word;
        }

        .mtyPe2y8-apex h1 span {
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-vista {
            max-width: 750px;
            margin: 0 auto 48px;
            font-size: 1.25rem;
            color: var(--mtyPe2y8-text-dim);
            word-break: break-word;
        }

        .mtyPe2y8-loom {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .mtyPe2y8-ping {
            background: var(--mtyPe2y8-primary);
            color: #000;
            padding: 18px 36px;
            border-radius: var(--mtyPe2y8-radius);
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .mtyPe2y8-ping:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(194, 243, 57, 0.3);
        }

        .mtyPe2y8-bolt {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            padding: 18px 36px;
            border-radius: var(--mtyPe2y8-radius);
            font-weight: 600;
        }

        .mtyPe2y8-bolt:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* 内容板块 */
        .mtyPe2y8-field {
            padding: 80px 24px;
        }

        .mtyPe2y8-echo {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .mtyPe2y8-shard {
            background: var(--mtyPe2y8-surface);
            padding: 40px;
            border-radius: var(--mtyPe2y8-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--mtyPe2y8-transition);
            min-width: 0;
            word-break: break-word;
        }

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

        .mtyPe2y8-shard svg {
            width: 48px;
            height: 48px;
            fill: var(--mtyPe2y8-primary);
            margin-bottom: 24px;
        }

        .mtyPe2y8-shard h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-shard p {
            color: var(--mtyPe2y8-text-dim);
            margin-bottom: 20px;
        }

        .mtyPe2y8-shard ul {
            list-style: none;
        }

        .mtyPe2y8-shard li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            font-family: monospace;
            font-size: 0.95rem;
        }

        .mtyPe2y8-shard li span {
            color: var(--mtyPe2y8-text);
        }

        /* 列表容器 */
        .mtyPe2y8-vista-wide {
            max-width: 900px;
            margin: 100px auto;
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            padding: 60px;
            border-radius: 30px;
            border: 1px solid rgba(194, 243, 57, 0.1);
        }

        .mtyPe2y8-vista-wide h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .mtyPe2y8-vista-wide p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--mtyPe2y8-text-dim);
        }

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

        .mtyPe2y8-root {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .mtyPe2y8-root .brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-root .links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .mtyPe2y8-root .links a {
            color: var(--mtyPe2y8-text-dim);
            font-size: 0.9rem;
        }

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

        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            color: #444;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .mtyPe2y8-shell-nav {
                height: auto;
                padding: 20px;
                flex-direction: column;
                gap: 16px;
            }
            .mtyPe2y8-trace {
                justify-content: center;
                gap: 16px;
            }
            .mtyPe2y8-spark {
                padding-top: 120px;
            }
            .mtyPe2y8-echo {
                grid-template-columns: 1fr;
            }
            .mtyPe2y8-vista-wide {
                padding: 30px 20px;
            }
            .mtyPe2y8-root {
                flex-direction: column;
                text-align: center;
            }
        }

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