:root {
            --emI-accent: #43cad4;
            --emI-bg: #0f1115;
            --emI-surface: #1a1d23;
            --emI-text: #e0e0e0;
            --emI-text-muted: #94a3b8;
            --emI-radius: 12px;
            --emI-transition: 0.15s ease;
        }

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

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

        /* 导航栏复用与修正 */
        .emI-orbit {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 17, 21, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .emI-halo {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .emI-logo img {
            height: 32px;
            display: block;
        }

        .emI-nexus {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .emI-nexus a {
            color: var(--emI-text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--emI-transition);
        }

        .emI-nexus a:hover, .emI-nexus a.active {
            color: var(--emI-accent);
        }

        /* Hero展示区 - Vertical Stack */
        .emI-flare {
            padding: 100px 24px 60px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .emI-flare h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, var(--emI-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: keep-all;
        }

        .emI-flare p {
            font-size: 18px;
            color: var(--emI-text-muted);
            max-width: 650px;
            margin-bottom: 40px;
        }

        /* 平台矩阵 */
        .emI-matrix {
            max-width: 1100px;
            margin: 0 auto 80px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .emI-shard {
            background: var(--emI-surface);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: var(--emI-radius);
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .emI-shard:hover {
            transform: translateY(-8px);
            border-color: rgba(67, 202, 212, 0.3);
        }

        .emI-glyph {
            width: 64px;
            height: 64px;
            background: rgba(67, 202, 212, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--emI-accent);
        }

        .emI-shard h2 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .emI-shard p {
            font-size: 14px;
            color: var(--emI-text-muted);
            margin-bottom: 32px;
            min-height: 44px;
        }

        .emI-bolt {
            width: 100%;
            padding: 14px 28px;
            background: var(--emI-accent);
            color: #000;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            transition: filter var(--emI-transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .emI-bolt:hover {
            filter: brightness(1.1);
        }

        .emI-zest {
            margin-top: 16px;
            font-size: 13px;
            color: var(--emI-text-muted);
            display: flex;
            gap: 12px;
        }

        /* 详细规格 */
        .emI-pulsar {
            background: #15181d;
            padding: 80px 24px;
        }

        .emI-vault {
            max-width: 900px;
            margin: 0 auto;
        }

        .emI-vault h2 {
            text-align: center;
            margin-bottom: 48px;
            font-size: 28px;
        }

        .emI-halo-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            list-style: none;
        }

        .emI-halo-list li {
            padding-left: 20px;
            border-left: 2px solid var(--emI-accent);
        }

        .emI-halo-list strong {
            display: block;
            font-size: 14px;
            color: var(--emI-accent);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .emI-halo-list span {
            font-size: 16px;
            color: var(--emI-text);
        }

        /* 页脚 */
        .emI-abyss {
            padding: 80px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: #0a0c10;
        }

        .emI-echo {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .emI-brand-text {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
        }

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

        .emI-links-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .emI-links-col h4 {
            font-size: 14px;
            color: #fff;
            margin-bottom: 8px;
        }

        .emI-links-col a {
            font-size: 14px;
            color: var(--emI-text-muted);
            text-decoration: none;
            transition: color var(--emI-transition);
        }

        .emI-links-col a:hover {
            color: var(--emI-accent);
        }

        .emI-copyright {
            width: 100%;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--emI-text-muted);
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .emI-halo { height: auto; padding: 20px 24px; }
            .emI-nexus { gap: 16px; margin-top: 20px; width: 100%; }
            .emI-matrix { grid-template-columns: 1fr; }
            .emI-flare { padding: 60px 24px; }
            .emI-echo { flex-direction: column; }
        }

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

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

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

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

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

.emI-hdr-orbit a[href="index.html"],
.emI-hdr-orbit a[href="get.html"],
.emI-hdr-orbit a[href="link.html"],
.emI-hdr-orbit a[href="safe.html"],
.emI-hdr-orbit a[href="tool.html"] {
    --aisite-shell-nav-padding: 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;
}

.emI-hdr-orbit a[href="index.html"],
.emI-hdr-orbit a[href="index.html"]:hover,
.emI-hdr-orbit a[href="index.html"]:focus,
.emI-hdr-orbit a[href="index.html"]:active,
.emI-hdr-orbit a[href="index.html"].active,
.emI-hdr-orbit a[href="index.html"][aria-current="page"],
.emI-hdr-orbit a[href="get.html"],
.emI-hdr-orbit a[href="get.html"]:hover,
.emI-hdr-orbit a[href="get.html"]:focus,
.emI-hdr-orbit a[href="get.html"]:active,
.emI-hdr-orbit a[href="get.html"].active,
.emI-hdr-orbit a[href="get.html"][aria-current="page"],
.emI-hdr-orbit a[href="link.html"],
.emI-hdr-orbit a[href="link.html"]:hover,
.emI-hdr-orbit a[href="link.html"]:focus,
.emI-hdr-orbit a[href="link.html"]:active,
.emI-hdr-orbit a[href="link.html"].active,
.emI-hdr-orbit a[href="link.html"][aria-current="page"],
.emI-hdr-orbit a[href="safe.html"],
.emI-hdr-orbit a[href="safe.html"]:hover,
.emI-hdr-orbit a[href="safe.html"]:focus,
.emI-hdr-orbit a[href="safe.html"]:active,
.emI-hdr-orbit a[href="safe.html"].active,
.emI-hdr-orbit a[href="safe.html"][aria-current="page"],
.emI-hdr-orbit a[href="tool.html"],
.emI-hdr-orbit a[href="tool.html"]:hover,
.emI-hdr-orbit a[href="tool.html"]:focus,
.emI-hdr-orbit a[href="tool.html"]:active,
.emI-hdr-orbit a[href="tool.html"].active,
.emI-hdr-orbit a[href="tool.html"][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);
}

.emI-hdr-orbit{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.emI-hdr-orbit .emI-hdr-halo{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.emI-hdr-orbit .emI-hdr-logo{
            flex: 0 0 auto;
        }

.emI-hdr-orbit .emI-hdr-logo img{
            height: 36px;
        }

.emI-hdr-orbit .emI-hdr-nexus{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.emI-hdr-orbit .emI-hdr-nexus a{
            font-size: 1rem;
            font-weight: 500;
            color: #94a3b8;
            padding: 0.5rem 0;
            position: relative;
        }

.emI-hdr-orbit .emI-hdr-nexus a:hover, .emI-hdr-orbit .emI-hdr-nexus a.active{
            color: #43cad4;
        }

.emI-hdr-orbit .emI-hdr-nexus a.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #43cad4;
        }

@media (max-width: 768px){.emI-hdr-orbit .emI-hdr-halo{ height: auto; padding: 1.5rem 5vw; flex-direction: column; gap: 1.5rem; }

.emI-hdr-orbit .emI-hdr-nexus{ justify-content: center; gap: 1rem; }}

.emI-hdr-orbit {
    background: rgb(15, 23, 42);
    background-image: none;
}

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

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

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

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

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

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

.emI-ftr-abyss{
            padding: 8rem 5vw 4rem;
            background: #080c14;
            position: relative;
            overflow: hidden;
        }

.emI-ftr-abyss .emI-ftr-abyss-accent{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            object-fit: cover;
            pointer-events: none;
        }

.emI-ftr-abyss .emI-ftr-abyss-matrix{
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

.emI-ftr-abyss .emI-ftr-echo-brand{
            flex: 1 1 300px;
        }

.emI-ftr-abyss .emI-ftr-echo-brand h2{
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

.emI-ftr-abyss .emI-ftr-echo-brand p{
            color: #94a3b8;
            max-width: 300px;
        }

.emI-ftr-abyss .emI-ftr-echo-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.emI-ftr-abyss .emI-ftr-echo-group h5{
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

.emI-ftr-abyss .emI-ftr-echo-group ul{
            list-style: none;
        }

.emI-ftr-abyss .emI-ftr-echo-group li{
            margin-bottom: 0.75rem;
        }

.emI-ftr-abyss .emI-ftr-echo-group a{
            color: #94a3b8;
            font-size: 0.9rem;
        }

.emI-ftr-abyss .emI-ftr-echo-group a:hover{
            color: #43cad4;
        }

.emI-ftr-abyss .emI-ftr-echo-bottom{
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: #94a3b8;
            font-size: 0.85rem;
        }

@media (max-width: 768px){.emI-ftr-abyss .emI-ftr-echo-links{ gap: 2rem; }

.emI-ftr-abyss .emI-ftr-echo-bottom{ flex-direction: column; gap: 1rem; text-align: center; }}