:root {
            --fmv2e1-primary: #9e5bf7;
            --fmv2e1-primary-dark: #7b3fd3;
            --fmv2e1-accent: #f0e6ff;
            --fmv2e1-text-main: #1d1d1f;
            --fmv2e1-text-sub: #424245;
            --fmv2e1-bg-light: #ffffff;
            --fmv2e1-bg-soft: #fbfbfd;
            --fmv2e1-radius: 16px;
            --fmv2e1-transition: 0.15s 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(--fmv2e1-bg-light);
            color: var(--fmv2e1-text-main);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* 强制复用导航栏样式 */
        .fmv2e1-xway {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 72px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .fmv2e1-logo {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .fmv2e1-logo img {
            height: 32px;
            width: auto;
        }

        .fmv2e1-synca {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            min-width: 0;
        }

        .fmv2e1-nav-link {
            text-decoration: none;
            color: var(--fmv2e1-text-sub);
            font-weight: 500;
            font-size: 15px;
            transition: var(--fmv2e1-transition);
        }

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

        .fmv2e1-nav-link.active {
            color: var(--fmv2e1-primary);
            position: relative;
        }

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

        /* Hero展示区 - fullbleed_overlay */
        .fmv2e1-xsurge {
            position: relative;
            width: 100%;
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #120a21 0%, #301a52 100%);
            padding: 80px 5%;
            overflow: hidden;
        }

        .fmv2e1-xsurge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(158, 91, 247, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .fmv2e1-xhull {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            width: 100%;
            text-align: center;
            color: #ffffff;
        }

        .fmv2e1-xhull h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(to bottom, #fff, #ccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .fmv2e1-xhull p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            max-width: 700px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
        }

        .fmv2e1-zapt {
            display: inline-block;
            padding: 18px 42px;
            background-color: var(--fmv2e1-primary);
            color: #ffffff;
            text-decoration: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 18px;
            transition: transform var(--fmv2e1-transition), box-shadow var(--fmv2e1-transition);
            box-shadow: 0 10px 30px rgba(158, 91, 247, 0.3);
        }

        .fmv2e1-zapt:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(158, 91, 247, 0.4);
        }

        /* 功能展示区 */
        .fmv2e1-voxray {
            padding: 100px 5%;
            background: var(--fmv2e1-bg-soft);
        }

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

        .fmv2e1-xpod {
            background: #fff;
            padding: 48px;
            border-radius: var(--fmv2e1-radius);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--fmv2e1-transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .fmv2e1-xpod:hover {
            border-color: var(--fmv2e1-primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.03);
        }

        .fmv2e1-echox {
            width: 64px;
            height: 64px;
            background: var(--fmv2e1-accent);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            color: var(--fmv2e1-primary);
        }

        .fmv2e1-xpod h2 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--fmv2e1-text-main);
        }

        .fmv2e1-xpod p {
            font-size: 16px;
            color: var(--fmv2e1-text-sub);
            margin-bottom: 24px;
        }

        /* 脚本代码展示区 */
        .fmv2e1-flarex {
            padding: 100px 5%;
            background: #fff;
        }

        .fmv2e1-xmesh {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .fmv2e1-content-text {
            flex: 1;
            min-width: 320px;
        }

        .fmv2e1-content-text h2 {
            font-size: 36px;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .fmv2e1-content-text p {
            font-size: 18px;
            color: var(--fmv2e1-text-sub);
            margin-bottom: 30px;
        }

        .fmv2e1-code-block {
            flex: 1;
            min-width: 320px;
            background: #1e1e1e;
            border-radius: 12px;
            padding: 24px;
            font-family: 'Fira Code', monospace;
            font-size: 14px;
            color: #d4d4d4;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
        }

        .fmv2e1-code-header {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .fmv2e1-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .fmv2e1-r { background: #ff5f56; }
        .fmv2e1-y { background: #ffbd2e; }
        .fmv2e1-g { background: #27c93f; }

        .fmv2e1-keyword { color: #569cd6; }
        .fmv2e1-func { color: #dcdcaa; }
        .fmv2e1-string { color: #ce9178; }

        /* 页脚 */
        .fmv2e1-xbase {
            background: var(--fmv2e1-bg-soft);
            padding: 80px 5% 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .fmv2e1-tethx {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .fmv2e1-brand-info h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--fmv2e1-primary);
        }

        .fmv2e1-brand-info p {
            max-width: 300px;
            color: var(--fmv2e1-text-sub);
        }

        .fmv2e1-links-group {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

        .fmv2e1-link-col h4 {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .fmv2e1-link-col a {
            display: block;
            text-decoration: none;
            color: var(--fmv2e1-text-sub);
            margin-bottom: 12px;
            font-size: 14px;
            transition: var(--fmv2e1-transition);
        }

        .fmv2e1-link-col a:hover {
            color: var(--fmv2e1-primary);
        }

        .fmv2e1-copyright {
            max-width: 1100px;
            margin: 60px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(0,0,0,0.05);
            font-size: 13px;
            color: #999;
            text-align: center;
        }

        @media (max-width: 768px) {
            .fmv2e1-synca {
                display: none;
            }
            .fmv2e1-xsurge {
                min-height: 60vh;
            }
            .fmv2e1-xhull h1 {
                font-size: 2.5rem;
            }
            .fmv2e1-xpod {
                padding: 30px;
            }
        }

.fmv2e1-hdr-xway {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--fmv2e1-text-main);
}
.fmv2e1-hdr-xway,
.fmv2e1-hdr-xway *,
.fmv2e1-hdr-xway *::before,
.fmv2e1-hdr-xway *::after {
    box-sizing: border-box;
}

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

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

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

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

.fmv2e1-hdr-xway a.fmv2e1-hdr-nav-link {
    --aisite-shell-nav-padding: 6px 12px;
    --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;
}

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

.fmv2e1-hdr-xway{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(158, 91, 247, 0.1);
            padding: 15px 4vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.fmv2e1-hdr-xway .fmv2e1-hdr-logo img{
            height: 32px;
            width: auto;
        }

.fmv2e1-hdr-xway .fmv2e1-hdr-synca{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: center;
        }

.fmv2e1-hdr-xway .fmv2e1-hdr-synca > *{
            min-width: 0;
        }

.fmv2e1-hdr-xway .fmv2e1-hdr-nav-link{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1a1a24;
            transition: all 0.15s ease;
            padding: 6px 12px;
            border-radius: 8px;
        }

.fmv2e1-hdr-xway .fmv2e1-hdr-nav-link:hover, .fmv2e1-hdr-xway .fmv2e1-hdr-nav-link.active{
            color: #9e5bf7;
            background: rgba(158, 91, 247, 0.05);
        }

@media (max-width: 768px){.fmv2e1-hdr-xway{
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
            }

.fmv2e1-hdr-xway .fmv2e1-hdr-synca{
                gap: 12px;
                justify-content: center;
            }}

.fmv2e1-hdr-xway {
    background: rgb(255, 255, 255);
    background-image: none;
}

.fmv2e1-ftr-xbase {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--fmv2e1-text-main);
}
.fmv2e1-ftr-xbase,
.fmv2e1-ftr-xbase *,
.fmv2e1-ftr-xbase *::before,
.fmv2e1-ftr-xbase *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.fmv2e1-ftr-xbase{
            background: #111118;
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 4vw 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

.fmv2e1-ftr-xbase > *{ min-width: 0; }

.fmv2e1-ftr-xbase .fmv2e1-ftr-tethx{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
        }

.fmv2e1-ftr-xbase .fmv2e1-ftr-tethx > *{ min-width: 0; }

.fmv2e1-ftr-xbase .fmv2e1-ftr-brand-text{
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: 0.05em;
        }

@media (max-width: 768px){.fmv2e1-ftr-xbase .fmv2e1-ftr-tethx{ flex-direction: column; gap: 20px; text-align: center; }}