:root {
            --ieg_dcb8-primary: #d34a8f;
            --ieg_dcb8-primary-soft: #f8e7f0;
            --ieg_dcb8-dark: #1a1a1c;
            --ieg_dcb8-text: #333333;
            --ieg_dcb8-text-light: #666666;
            --ieg_dcb8-bg: #ffffff;
            --ieg_dcb8-radius: 17px;
            --ieg_dcb8-shadow: 0 10px 30px rgba(211, 74, 143, 0.08);
            --ieg_dcb8-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(--ieg_dcb8-text);
            background-color: #fafafa;
            word-break: break-word;
        }

        /* 导航栏复用 */
        .ieg_dcb8-synapse {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .ieg_dcb8-enclave {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .ieg_dcb8-flux-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .ieg_dcb8-logo img {
            height: 40px;
            display: block;
        }
        .ieg_dcb8-flux-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .ieg_dcb8-flux-link {
            text-decoration: none;
            color: var(--ieg_dcb8-text);
            font-weight: 500;
            font-size: 15px;
            transition: var(--ieg_dcb8-transition);
        }
        .ieg_dcb8-flux-link:hover, .ieg_dcb8-flux-link.active {
            color: var(--ieg_dcb8-primary);
        }

        /* Zenith - Cinematic Strip Hero */
        .ieg_dcb8-zenith {
            position: relative;
            background: var(--ieg_dcb8-dark);
            color: #fff;
            padding: 100px 0;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }
        .ieg_dcb8-zenith::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(211, 74, 143, 0.2) 0%, rgba(26, 26, 28, 0.9) 50%, rgba(211, 74, 143, 0.2) 100%);
            z-index: 1;
        }
        .ieg_dcb8-zenith-strip {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 25px;
        }
        .ieg_dcb8-zenith h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
        }
        .ieg_dcb8-zenith p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* Glimmer - Intro Section */
        .ieg_dcb8-glimmer {
            padding: 80px 0;
            background: #fff;
        }
        .ieg_dcb8-glimmer-vault {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        .ieg_dcb8-glimmer-text {
            flex: 1;
            min-width: 320px;
        }
        .ieg_dcb8-glimmer-text h2 {
            font-size: 2.2rem;
            color: var(--ieg_dcb8-dark);
            margin-bottom: 25px;
            position: relative;
        }
        .ieg_dcb8-glimmer-text h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: var(--ieg_dcb8-primary);
            margin-top: 15px;
            border-radius: 2px;
        }
        .ieg_dcb8-glimmer-text p {
            font-size: 1.1rem;
            color: var(--ieg_dcb8-text-light);
            margin-bottom: 20px;
        }

        /* Vault - Configuration Steps */
        .ieg_dcb8-vault {
            padding: 100px 0;
            background: #fdfdfd;
        }
        .ieg_dcb8-vault-head {
            text-align: center;
            margin-bottom: 60px;
        }
        .ieg_dcb8-vault-head h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .ieg_dcb8-vault-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .ieg_dcb8-mote {
            background: #fff;
            padding: 40px;
            border-radius: var(--ieg_dcb8-radius);
            box-shadow: var(--ieg_dcb8-shadow);
            transition: var(--ieg_dcb8-transition);
            border: 1px solid #f0f0f0;
        }
        .ieg_dcb8-mote:hover {
            transform: translateY(-8px);
            border-color: var(--ieg_dcb8-primary-soft);
        }
        .ieg_dcb8-mote-icon {
            width: 60px;
            height: 60px;
            background: var(--ieg_dcb8-primary-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        .ieg_dcb8-mote-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--ieg_dcb8-primary);
        }
        .ieg_dcb8-mote h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--ieg_dcb8-dark);
        }
        .ieg_dcb8-mote p {
            color: var(--ieg_dcb8-text-light);
            font-size: 0.95rem;
        }

        /* Beam - Developer & Scripting */
        .ieg_dcb8-beam {
            padding: 100px 0;
            background: linear-gradient(to right, #ffffff, #fff5f9);
        }
        .ieg_dcb8-beam-cradle {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }
        .ieg_dcb8-beam-visual {
            flex: 1;
            min-width: 320px;
            background: var(--ieg_dcb8-dark);
            border-radius: var(--ieg_dcb8-radius);
            padding: 30px;
            font-family: "Courier New", Courier, monospace;
            color: #d3d3d3;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .ieg_dcb8-beam-visual .ieg_dcb8-code-line {
            margin-bottom: 8px;
            display: block;
        }
        .ieg_dcb8-beam-visual .ieg_dcb8-code-attr { color: #d34a8f; }
        .ieg_dcb8-beam-visual .ieg_dcb8-code-val { color: #e6db74; }
        .ieg_dcb8-beam-content {
            flex: 1;
            min-width: 320px;
        }
        .ieg_dcb8-beam-content h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
        }
        .ieg_dcb8-capsule {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        .ieg_dcb8-capsule-mark {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            background: var(--ieg_dcb8-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 5px;
        }
        .ieg_dcb8-capsule-mark svg {
            width: 14px;
            height: 14px;
            fill: #fff;
        }
        .ieg_dcb8-capsule-text h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        /* Jolt - CTA Section */
        .ieg_dcb8-jolt-enclave {
            padding: 80px 0;
            text-align: center;
        }
        .ieg_dcb8-jolt-wrap {
            background: var(--ieg_dcb8-primary);
            padding: 60px 40px;
            border-radius: var(--ieg_dcb8-radius);
            color: #fff;
        }
        .ieg_dcb8-jolt-wrap h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        .ieg_dcb8-spark {
            display: inline-block;
            background: #fff;
            color: var(--ieg_dcb8-primary);
            padding: 16px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--ieg_dcb8-transition);
            margin-top: 30px;
        }
        .ieg_dcb8-spark:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Echo - Footer */
        .ieg_dcb8-residue {
            background: #1a1a1c;
            color: #999;
            padding: 80px 0 40px;
        }
        .ieg_dcb8-echo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 50px;
            margin-bottom: 30px;
        }
        .ieg_dcb8-echo-brand {
            flex: 1;
            min-width: 250px;
        }
        .ieg_dcb8-echo-brand h3 {
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        .ieg_dcb8-echo-links {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }
        .ieg_dcb8-echo-col h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .ieg_dcb8-echo-col a {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--ieg_dcb8-transition);
        }
        .ieg_dcb8-echo-col a:hover {
            color: var(--ieg_dcb8-primary);
        }
        .ieg_dcb8-echo-copy {
            text-align: center;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .ieg_dcb8-flux-wrap { height: auto; padding: 15px 0; }
            .ieg_dcb8-flux-links { gap: 15px; margin-top: 15px; width: 100%; justify-content: center; }
            .ieg_dcb8-zenith { padding: 60px 0; }
            .ieg_dcb8-glimmer-vault, .ieg_dcb8-beam-cradle { flex-direction: column; text-align: center; }
            .ieg_dcb8-glimmer-text h2::after { margin: 15px auto; }
            .ieg_dcb8-capsule { text-align: left; }
        }

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

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

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

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

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

.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: flex;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link:hover,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link:focus,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link:active,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-link.active,
.ieg_dcb8-hdr-synapse a.ieg_dcb8-hdr-flux-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);
}

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-enclave{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.ieg_dcb8-hdr-synapse{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(211, 74, 143, 0.1);
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-wrap{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-logo{
            height: 32px;
            display: flex;
            align-items: center;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-logo img{
            height: 100%;
            width: auto;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-links{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link{
            font-size: 14px;
            font-weight: 500;
            color: #5c536b;
            position: relative;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link:hover, .ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link.active{
            color: #d34a8f;
        }

.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #d34a8f;
        }

@media (max-width: 768px){.ieg_dcb8-hdr-synapse .ieg_dcb8-hdr-flux-links{
                display: none; 
            }}

.ieg_dcb8-hdr-synapse {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-enclave{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.ieg_dcb8-ftr-echo{
            background: #110d18;
            color: #fff;
            padding: 80px 0 40px;
            margin-top: 100px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-brand h4{
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #d34a8f;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-brand p{
            font-size: 14px;
            opacity: 0.6;
            margin-bottom: 24px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-list h5{
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-list a{
            display: block;
            font-size: 14px;
            opacity: 0.6;
            margin-bottom: 12px;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-residue-list a:hover{
            opacity: 1;
            color: #d34a8f;
        }

.ieg_dcb8-ftr-echo .ieg_dcb8-ftr-echo-bottom{
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 13px;
            opacity: 0.4;
        }