:root {
            --mtyPe2y8-primary: #c2f339;
            --mtyPe2y8-dark: #0f110c;
            --mtyPe2y8-accent: #1e2218;
            --mtyPe2y8-text: #f0f0f0;
            --mtyPe2y8-text-dim: #a0a0a0;
            --mtyPe2y8-radius: 20px;
            --mtyPe2y8-transition: 0.25s ease;
        }

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

        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: break-word;
        }

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

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

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

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

        .mtyPe2y8-nav-link {
            color: var(--mtyPe2y8-text-dim);
            text-decoration: none;
            font-weight: 500;
            transition: var(--mtyPe2y8-transition);
            font-size: 0.95rem;
        }

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

        /* 核心展示区域 - Apex (Vertical Stack Hero) */
        .mtyPe2y8-apex {
            padding: 160px 25px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, rgba(194, 243, 57, 0.15) 0%, transparent 70%);
        }

        .mtyPe2y8-shell {
            max-width: 1000px;
            width: 100%;
            min-width: 0;
        }

        .mtyPe2y8-spark {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--mtyPe2y8-text);
            font-weight: 800;
            word-break: keep-all;
        }

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

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

        /* 按钮组件 - Bolt & Ping */
        .mtyPe2y8-bolt {
            display: inline-flex;
            align-items: center;
            padding: 16px 40px;
            background: var(--mtyPe2y8-primary);
            color: var(--mtyPe2y8-dark);
            text-decoration: none;
            font-weight: 700;
            border-radius: var(--mtyPe2y8-radius);
            transition: var(--mtyPe2y8-transition);
            border: 2px solid var(--mtyPe2y8-primary);
        }

        .mtyPe2y8-bolt:hover {
            background: transparent;
            color: var(--mtyPe2y8-primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(194, 243, 57, 0.2);
        }

        /* 插件列表区域 - Loom & Shard */
        .mtyPe2y8-loom {
            padding: 80px 25px;
            background: var(--mtyPe2y8-accent);
        }

        .mtyPe2y8-field {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .mtyPe2y8-shard {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: var(--mtyPe2y8-radius);
            transition: var(--mtyPe2y8-transition);
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .mtyPe2y8-shard:hover {
            border-color: var(--mtyPe2y8-primary);
            transform: translateY(-10px);
            background: rgba(194, 243, 57, 0.02);
        }

        .mtyPe2y8-shard-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--mtyPe2y8-primary), #8db31c);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(194, 243, 57, 0.15);
        }

        .mtyPe2y8-shard-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--mtyPe2y8-dark);
        }

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

        .mtyPe2y8-echo p {
            color: var(--mtyPe2y8-text-dim);
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .mtyPe2y8-ping {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--mtyPe2y8-primary);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .mtyPe2y8-ping::after {
            content: "→";
            transition: var(--mtyPe2y8-transition);
        }

        .mtyPe2y8-ping:hover::after {
            transform: translateX(5px);
        }

        /* 安装指南区域 - Field */
        .mtyPe2y8-guide {
            padding: 100px 25px;
            max-width: 900px;
            margin: 0 auto;
        }

        .mtyPe2y8-guide-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .mtyPe2y8-guide-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .mtyPe2y8-guide-step {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .mtyPe2y8-step-num {
            font-size: 4rem;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px var(--mtyPe2y8-primary);
            line-height: 1;
            opacity: 0.4;
        }

        .mtyPe2y8-step-content {
            flex: 1;
            min-width: 280px;
        }

        .mtyPe2y8-step-content h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--mtyPe2y8-text);
        }

        /* 页脚区域 - Wake & Root */
        .mtyPe2y8-wake {
            padding: 80px 25px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: var(--mtyPe2y8-dark);
        }

        .mtyPe2y8-wake-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .mtyPe2y8-wake-brand h2 {
            font-size: 2rem;
            color: var(--mtyPe2y8-primary);
            margin-bottom: 20px;
        }

        .mtyPe2y8-wake-brand p {
            color: var(--mtyPe2y8-text-dim);
            font-size: 0.95rem;
        }

        .mtyPe2y8-wake-links h5 {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: var(--mtyPe2y8-text);
        }

        .mtyPe2y8-wake-links a {
            display: block;
            color: var(--mtyPe2y8-text-dim);
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--mtyPe2y8-transition);
        }

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

        .mtyPe2y8-root {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--mtyPe2y8-text-dim);
            font-size: 0.85rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .mtyPe2y8-shell-nav {
                flex-direction: column;
                gap: 15px;
            }
            .mtyPe2y8-trace {
                justify-content: center;
                gap: 12px;
            }
            .mtyPe2y8-spark {
                font-size: 2.5rem;
            }
            .mtyPe2y8-shard {
                padding: 30px;
            }
            .mtyPe2y8-guide-step {
                gap: 20px;
            }
        }

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