:root {
            --primary: #9e5bf7;
            --primary-soft: #b182f5;
            --bg-dark: #0f0a1a;
            --bg-light: #ffffff;
            --text-main: #2d2d2d;
            --text-dim: #666666;
            --radius: 16px;
            --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;
            line-height: 1.7;
            color: var(--text-main);
            background-color: #fcfaff;
            word-break: break-word;
            overflow-x: hidden;
        }

        /* --- 强制复用导航栏 --- */
        .fmv2e1-xway {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(158, 91, 247, 0.08);
        }

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

        .fmv2e1-synca {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

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

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

        /* --- Hero: fullbleed_overlay --- */
        .fmv2e1-xsurge {
            position: relative;
            width: 100%;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2d1b4d 0%, #0f0a1a 100%);
            padding: 4rem 5%;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .fmv2e1-xsurge::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(circle at 20% 30%, rgba(158, 91, 247, 0.15) 0%, transparent 50%),
                              radial-gradient(circle at 80% 70%, rgba(177, 130, 245, 0.1) 0%, transparent 50%);
        }

        .fmv2e1-nexux {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .fmv2e1-xsurge h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -1px;
            background: linear-gradient(to right, #fff, #b182f5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .fmv2e1-xsurge p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* --- Intro Section --- */
        .fmv2e1-voxray {
            padding: 5rem 5%;
            background: white;
            text-align: center;
        }

        .fmv2e1-voxray h2 {
            font-size: 2.2rem;
            color: var(--bg-dark);
            margin-bottom: 1.5rem;
        }

        .fmv2e1-voxray .fmv2e1-xhull {
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-dim);
            font-size: 1.1rem;
        }

        /* --- Command Categories --- */
        .fmv2e1-flarex {
            padding: 4rem 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .fmv2e1-xpod {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(158, 91, 247, 0.1);
            transition: var(--transition);
        }

        .fmv2e1-xpod:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
        }

        .fmv2e1-xpod svg {
            width: 48px;
            height: 48px;
            fill: var(--primary);
            margin-bottom: 1.5rem;
        }

        .fmv2e1-xpod h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* --- Commands Detailed List --- */
        .fmv2e1-xmesh {
            padding: 5rem 5%;
            background: #f8f5ff;
        }

        .fmv2e1-echox {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 4rem;
        }

        .fmv2e1-echox table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .fmv2e1-echox th {
            background: var(--primary);
            color: white;
            padding: 1.2rem;
            font-weight: 600;
        }

        .fmv2e1-echox td {
            padding: 1.2rem;
            border-bottom: 1px solid #eee;
        }

        .fmv2e1-echox tr:last-child td {
            border-bottom: none;
        }

        .fmv2e1-echox code {
            background: #f0e6ff;
            color: var(--primary);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-family: "SFMono-Regular", Consolas, monospace;
            font-weight: 600;
        }

        /* --- Interaction Buttons --- */
        .fmv2e1-zapt {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .fmv2e1-zapt:hover {
            background: #8a46e5;
            box-shadow: 0 8px 20px rgba(158, 91, 247, 0.3);
        }

        .fmv2e1-xping {
            color: var(--primary);
            background: transparent;
            border: 2px solid var(--primary);
        }

        .fmv2e1-xping:hover {
            background: var(--primary);
            color: white;
        }

        /* --- Footer --- */
        .fmv2e1-xbase {
            padding: 4rem 5% 2rem;
            background: var(--bg-dark);
            color: white;
        }

        .fmv2e1-tethx {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 3rem;
        }

        .fmv2e1-tethx .brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-soft);
        }

        .fmv2e1-tethx .links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .fmv2e1-tethx a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: var(--transition);
        }

        .fmv2e1-tethx a:hover {
            color: white;
        }

        .fmv2e1-copy {
            width: 100%;
            text-align: center;
            padding-top: 3rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
        }

        /* --- Mobile Responsive --- */
        @media (max-width: 768px) {
            .fmv2e1-xway {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .fmv2e1-synca {
                justify-content: center;
                gap: 1rem;
            }
            .fmv2e1-xsurge h1 {
                font-size: 2.2rem;
            }
            .fmv2e1-xpod {
                min-width: 100%;
            }
            .fmv2e1-echox {
                overflow-x: auto;
            }
            .fmv2e1-echox table {
                min-width: 600px;
            }
        }

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