:root {
            --emI-prime: #43cad4;
            --emI-accent: #2b8c94;
            --emI-void: #0a0c10;
            --emI-mist: #f4f7f8;
            --emI-shadow: rgba(0, 0, 0, 0.4);
            --emI-glass: rgba(255, 255, 255, 0.03);
            --emI-border: rgba(67, 202, 212, 0.2);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        body {
            background-color: var(--emI-void);
            color: #d1d5db;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* 强制复用导航栏样式 */
        .emI-orbit {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 12, 16, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emI-border);
        }

        .emI-halo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
        }

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

        .emI-nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .emI-nexus a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.15s ease;
            min-width: 0;
        }

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

        /* 创意Hero区：Vertical Stack */
        .emI-pulsar {
            padding: 8rem 2rem 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, rgba(67, 202, 212, 0.15) 0%, transparent 70%);
        }

        .emI-apex-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .emI-apex-title span {
            color: var(--emI-prime);
        }

        .emI-flare-summary {
            max-width: 700px;
            font-size: 1.25rem;
            color: #94a3b8;
            margin-bottom: 3rem;
        }

        .emI-matrix-visual {
            width: 100%;
            max-width: 900px;
            background: #161b22;
            border-radius: 12px;
            border: 1px solid var(--emI-border);
            padding: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .emI-matrix-visual::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--emI-prime), transparent);
        }

        .emI-glyph-code {
            font-family: "Fira Code", monospace;
            font-size: 0.9rem;
            color: #43cad4;
            text-align: left;
            white-space: pre-wrap;
        }

        /* 内容板块 */
        .emI-vault {
            max-width: 1100px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .emI-matrix-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .emI-shard {
            background: var(--emI-glass);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 13px;
            transition: all 0.15s ease;
            position: relative;
        }

        .emI-shard:hover {
            border-color: var(--emI-prime);
            transform: translateY(-5px);
            background: rgba(67, 202, 212, 0.02);
        }

        .emI-glyph-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            fill: var(--emI-prime);
        }

        .emI-shard h3 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .emI-shard p {
            color: #94a3b8;
            font-size: 1rem;
        }

        /* 语言支持列表 */
        .emI-flare-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 5rem;
            justify-content: center;
        }

        .emI-zest-badge {
            background: rgba(67, 202, 212, 0.1);
            color: var(--emI-prime);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid var(--emI-border);
            font-size: 0.9rem;
            transition: 0.15s;
        }

        .emI-zest-badge:hover {
            background: var(--emI-prime);
            color: var(--emI-void);
        }

        /* 特色详情区 */
        .emI-apex-detail {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
            padding: 6rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .emI-matrix-text {
            flex: 1;
            min-width: 320px;
        }

        .emI-matrix-text h2 {
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .emI-bolt-action {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 2.5rem;
            background: var(--emI-prime);
            color: var(--emI-void);
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            transition: 0.15s;
        }

        .emI-bolt-action:hover {
            background: #fff;
            transform: scale(1.02);
        }

        /* 页脚 */
        .emI-abyss {
            background: #050608;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }

        .emI-echo-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
        }

        .emI-echo-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .emI-echo-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .emI-echo-links a:hover {
            color: var(--emI-prime);
        }

        .emI-echo-copy {
            color: #475569;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .emI-apex-title { font-size: 2.5rem; }
            .emI-halo { flex-direction: column; gap: 1rem; }
            .emI-nexus { justify-content: center; }
            .emI-vault { padding: 4rem 1.5rem; }
            .emI-shard { padding: 1.5rem; }
        }

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