/* 基础变量与重置 */
        :root {
            --ieg_dcb8-primary: #d34a8f;
            --ieg_dcb8-dark: #0f0f12;
            --ieg_dcb8-gray: #1e1e24;
            --ieg_dcb8-light: #f5f5f7;
            --ieg_dcb8-text-dim: #a1a1aa;
            --ieg_dcb8-radius: 16px;
            --ieg_dcb8-transition: 0.15s ease;
            --ieg_dcb8-width: 1100px;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--ieg_dcb8-transition);
        }

        /* 强制复用导航栏样式 */
        .ieg_dcb8-synapse {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 15, 18, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(211, 74, 143, 0.2);
        }

        .ieg_dcb8-enclave {
            max-width: var(--ieg_dcb8-width);
            margin: 0 auto;
            padding: 0 24px;
        }

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

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

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

        .ieg_dcb8-flux-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--ieg_dcb8-text-dim);
            position: relative;
        }

        .ieg_dcb8-flux-link:hover, .ieg_dcb8-flux-link.active {
            color: var(--ieg_dcb8-primary);
        }

        .ieg_dcb8-flux-link.active::after {
            content: "";
            position: absolute;
            bottom: -25px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--ieg_dcb8-primary);
        }

        /* Cinematic Strip Hero 布局 */
        .ieg_dcb8-zenith {
            padding-top: 140px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .ieg_dcb8-beam-strip-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ieg_dcb8-beam-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: linear-gradient(90deg, rgba(211, 74, 143, 0.1) 0%, rgba(15, 15, 18, 0) 100%);
            border-left: 4px solid var(--ieg_dcb8-primary);
            padding: 40px;
            border-radius: 0 var(--ieg_dcb8-radius) var(--ieg_dcb8-radius) 0;
            min-width: 0;
        }

        .ieg_dcb8-beam-strip:nth-child(2) {
            margin-left: 60px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 15, 18, 0) 100%);
            border-left: 4px solid #ffffff;
        }

        .ieg_dcb8-zenith-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            color: #fff;
        }

        .ieg_dcb8-zenith-subtitle {
            font-size: 1.25rem;
            color: var(--ieg_dcb8-text-dim);
            max-width: 600px;
        }

        /* 内容板块 */
        .ieg_dcb8-vault-main {
            padding: 100px 0;
        }

        .ieg_dcb8-glimmer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .ieg_dcb8-capsule {
            background: var(--ieg_dcb8-gray);
            padding: 40px;
            border-radius: var(--ieg_dcb8-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform var(--ieg_dcb8-transition), border-color var(--ieg_dcb8-transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .ieg_dcb8-capsule:hover {
            transform: translateY(-8px);
            border-color: var(--ieg_dcb8-primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .ieg_dcb8-mote-icon {
            width: 56px;
            height: 56px;
            background: rgba(211, 74, 143, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--ieg_dcb8-primary);
        }

        .ieg_dcb8-capsule h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #fff;
        }

        .ieg_dcb8-capsule p {
            color: var(--ieg_dcb8-text-dim);
            font-size: 1rem;
        }

        /* 深度技术板块 */
        .ieg_dcb8-vault-tech {
            background: #141418;
            padding: 120px 0;
            position: relative;
        }

        .ieg_dcb8-cradle-split {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }

        .ieg_dcb8-cradle-split > * {
            flex: 1;
            min-width: 320px;
        }

        .ieg_dcb8-glimmer-visual {
            position: relative;
            padding: 20px;
        }

        .ieg_dcb8-glimmer-visual-box {
            aspect-ratio: 1/1;
            border: 2px dashed rgba(211, 74, 143, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .ieg_dcb8-glimmer-visual-inner {
            width: 70%;
            height: 70%;
            background: radial-gradient(circle, var(--ieg_dcb8-primary) 0%, transparent 70%);
            filter: blur(40px);
            opacity: 0.4;
        }

        .ieg_dcb8-spark-link {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background: var(--ieg_dcb8-primary);
            color: #fff;
            border-radius: 40px;
            font-weight: 600;
            margin-top: 32px;
            box-shadow: 0 10px 20px rgba(211, 74, 143, 0.3);
        }

        .ieg_dcb8-spark-link:hover {
            filter: brightness(1.1);
            transform: scale(1.02);
        }

        /* 底部 */
        .ieg_dcb8-echo {
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .ieg_dcb8-residue-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .ieg_dcb8-residue-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
        }

        .ieg_dcb8-residue-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--ieg_dcb8-primary);
            margin-bottom: 20px;
        }

        .ieg_dcb8-residue-link {
            display: block;
            color: var(--ieg_dcb8-text-dim);
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .ieg_dcb8-residue-link:hover {
            color: #fff;
        }

        .ieg_dcb8-residue-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #555;
            font-size: 0.85rem;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .ieg_dcb8-flux-links {
                display: none; /* 简化移动端，实际项目中应有汉堡菜单 */
            }
            .ieg_dcb8-beam-strip {
                padding: 30px 20px;
                border-radius: var(--ieg_dcb8-radius);
            }
            .ieg_dcb8-beam-strip:nth-child(2) {
                margin-left: 0;
            }
            .ieg_dcb8-residue-grid {
                grid-template-columns: 1fr 1fr;
            }
            .ieg_dcb8-zenith-title {
                font-size: 2.2rem;
            }
        }

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