:root {
  --chroma-bg: #0d111a;
  --chroma-surface: #161c2b;
  --chroma-surface-alt: #1e2638;
  --chroma-accent: #38bdf8;
  --chroma-brand: #de3f5c;
  --chroma-brand-hover: #f04e6c;
  --chroma-brand-glow: rgba(222, 63, 92, 0.4);
  --chroma-trace: #a2b0cb;
  --chroma-focal: #f0f4fc;
  --radius-main: 18px;
  --radius-pill: 30px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-sharp: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(222, 63, 92, 0.2);
  --shadow-glass: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  --transit: 0.35s ease;
}

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

body {
  background-color: var(--chroma-bg);
  color: var(--chroma-trace);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 导航栏复用与修复 */
.drip {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 17, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.orbit-omni {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.glyph-orbit {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.glyph {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glyph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--chroma-focal);
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--chroma-brand);
}

.omni {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cylon {
  color: var(--chroma-trace);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transit);
  min-width: 0;
}

.cylon:hover {
  color: var(--chroma-focal);
  background: rgba(255, 255, 255, 0.05);
}

.cylon.active {
  color: #ffffff;
  background: var(--chroma-brand);
  box-shadow: 0 4px 15px var(--chroma-brand-glow);
}

/* 主内容容器与版心 */
.frame {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* 模块 1: Blink 内核与多进程渲染架构 (article) */
.scope-chroma {
  background: linear-gradient(145deg, var(--chroma-surface) 0%, rgba(30, 38, 56, 0.6) 100%);
  border-radius: var(--radius-main);
  padding: 50px 40px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sharp);
  position: relative;
  overflow: hidden;
}

.glow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(222, 63, 92, 0.15);
  border: 1px solid rgba(222, 63, 92, 0.4);
  color: #ff6b84;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(222, 63, 92, 0.2);
}

.focal-chroma {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--chroma-focal);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.trace-chroma {
  font-size: 1.05rem;
  color: var(--chroma-trace);
  max-width: 860px;
  margin-bottom: 40px;
}

.stack-prism {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blend-exten {
  flex: 1 1 280px;
  min-width: 0;
  background: var(--chroma-surface-alt);
  padding: 30px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transit), border-color var(--transit), box-shadow var(--transit);
}

.blend-exten:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(56, 189, 248, 0.15);
}

.spark-prism {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.spark-prism svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--chroma-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focal-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--chroma-focal);
  margin-bottom: 10px;
}

.trace-sub {
  font-size: 0.95rem;
  color: var(--chroma-trace);
  line-height: 1.6;
}

/* 模块 2: V8 引擎 (div) */
.weave-prism {
  margin-bottom: 50px;
  padding: 10px 0;
}

.focal-prism {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--chroma-focal);
  margin-bottom: 12px;
}

.trace-prism {
  font-size: 1rem;
  color: var(--chroma-trace);
  margin-bottom: 30px;
  max-width: 800px;
}

.point-exten {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.exten-prism {
  flex: 1 1 300px;
  min-width: 0;
  background: var(--chroma-surface);
  border-radius: var(--radius-main);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all var(--transit);
}

.exten-prism:hover {
  border-color: rgba(222, 63, 92, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.layer-num {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--chroma-brand);
  background: rgba(222, 63, 92, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 16px;
}

/* 模块 3: 内存优化指南 (article) */
.scope-base {
  background: linear-gradient(180deg, var(--chroma-surface) 0%, #121724 100%);
  border-radius: var(--radius-main);
  padding: 45px 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-sharp);
}

.focal-base {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--chroma-focal);
  margin-bottom: 12px;
}

.trace-base {
  font-size: 1rem;
  color: var(--chroma-trace);
  margin-bottom: 35px;
}

.exten-base {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.blend-base {
  flex: 1 1 340px;
  min-width: 0;
  background: var(--chroma-surface-alt);
  padding: 24px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--chroma-brand);
  transition: background var(--transit);
}

.blend-base:hover {
  background: rgba(30, 38, 56, 0.9);
}

.click-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--chroma-brand) 0%, #b82b45 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(222, 63, 92, 0.3);
  transition: all var(--transit);
}

.click-launch:hover {
  background: linear-gradient(135deg, var(--chroma-brand-hover) 0%, #d43350 100%);
  box-shadow: 0 12px 30px rgba(222, 63, 92, 0.45);
  transform: translateY(-2px);
}

/* 页脚区域 */
.shift-sync {
  background: #090c13;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 24px 30px;
}

.base-sync {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.trace-sync {
  font-size: 0.9rem;
  color: rgba(162, 176, 203, 0.7);
}

.cylon-sync {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cylon-sync a {
  color: var(--chroma-trace);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transit);
}

.cylon-sync a:hover {
  color: var(--chroma-focal);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .orbit-omni {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .omni {
    width: 100%;
    justify-content: flex-start;
  }
  .scope-chroma, .scope-base {
    padding: 30px 20px;
  }
  .blend-exten, .exten-prism, .blend-base {
    flex: 1 1 100%;
  }
}

.omni-drip {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--chroma-body);
}
.omni-drip,
.omni-drip *,
.omni-drip *::before,
.omni-drip *::after {
    box-sizing: border-box;
}

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

.omni-drip p,
.omni-drip h1,
.omni-drip h2,
.omni-drip h3,
.omni-drip h4,
.omni-drip h5,
.omni-drip h6 {
    text-decoration: none;
}

.omni-drip img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.omni-drip {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.omni-drip a.omni-cylon.omni-pulse,
.omni-drip a.omni-cylon {
    --aisite-shell-nav-padding: 8px 18px;
    --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;
}

.omni-drip a.omni-cylon.omni-pulse,
.omni-drip a.omni-cylon.omni-pulse:hover,
.omni-drip a.omni-cylon.omni-pulse:focus,
.omni-drip a.omni-cylon.omni-pulse:active,
.omni-drip a.omni-cylon.omni-pulse.active,
.omni-drip a.omni-cylon.omni-pulse[aria-current="page"],
.omni-drip a.omni-cylon,
.omni-drip a.omni-cylon:hover,
.omni-drip a.omni-cylon:focus,
.omni-drip a.omni-cylon:active,
.omni-drip a.omni-cylon.active,
.omni-drip a.omni-cylon[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);
}

.omni-drip{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(13, 17, 26, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid #2a354d;
        }

.omni-drip .omni-orbit-omni{
            max-width: 1320px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.omni-drip .omni-glyph-orbit{
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

.omni-drip .omni-glyph-orbit .omni-glyph{
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.omni-drip .omni-glyph-orbit .omni-glyph img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.omni-drip .omni-brand-name{
            font-size: 1.35rem;
            font-weight: 800;
            color: #f0f4fc;
            letter-spacing: -0.5px;
        }

.omni-drip .omni-brand-name span{
            color: #de3f5c;
        }

.omni-drip .omni-omni{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

.omni-drip .omni-cylon{
            color: #a2b0cb;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
        }

.omni-drip .omni-cylon:hover{
            color: #f0f4fc;
            background: rgba(255, 255, 255, 0.05);
        }

.omni-drip .omni-cylon.omni-pulse{
            color: #fff;
            background: #de3f5c;
            box-shadow: 0 4px 15px rgba(222, 63, 92, 0.25);
        }

.omni-drip .omni-cylon.omni-pulse:hover{
            background: #c4324d;
        }

@media (max-width: 768px){.omni-drip{
                position: relative;
            }

.omni-drip .omni-orbit-omni{
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

.omni-drip .omni-omni{
                width: 100%;
                justify-content: flex-start;
                gap: 4px;
            }

.omni-drip .omni-cylon{
                padding: 6px 12px;
                font-size: 0.88rem;
            }}

.omni-drip {
    background: rgb(13, 17, 26);
    background-image: none;
}

.sync-sync-shift {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--chroma-body);
}
.sync-sync-shift,
.sync-sync-shift *,
.sync-sync-shift *::before,
.sync-sync-shift *::after {
    box-sizing: border-box;
}

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

.sync-sync-shift p,
.sync-sync-shift h1,
.sync-sync-shift h2,
.sync-sync-shift h3,
.sync-sync-shift h4,
.sync-sync-shift h5,
.sync-sync-shift h6 {
    text-decoration: none;
}

.sync-sync-shift img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.sync-sync-shift {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.sync-sync-shift a,
.sync-sync-shift a:hover,
.sync-sync-shift a:focus,
.sync-sync-shift a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.sync-sync-shift{
            background: #090c13;
            border-top: 1px solid #2a354d;
            padding: 60px 24px 30px;
        }

.sync-sync-shift .sync-orbit-shift{
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.sync-sync-shift .sync-frame-shift-brand{
            max-width: 360px;
            flex: 1;
            min-width: 250px;
        }

.sync-sync-shift .sync-focal-shift-glyph{
            font-size: 1.5rem;
            font-weight: 900;
            color: #f0f4fc;
            margin-bottom: 14px;
        }

.sync-sync-shift .sync-focal-shift-glyph span{
            color: #de3f5c;
        }

.sync-sync-shift .sync-trace-shift{
            font-size: 0.9rem;
            color: #6c7c9c;
            line-height: 1.7;
        }

.sync-sync-shift .sync-point-shift-links{
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

.sync-sync-shift .sync-blend-shift-col{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.sync-sync-shift .sync-focal-col{
            font-size: 0.95rem;
            font-weight: 700;
            color: #f0f4fc;
            margin-bottom: 6px;
        }

.sync-sync-shift .sync-cylon-shift{
            color: #7a8ba9;
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.35s ease;
        }

.sync-sync-shift .sync-cylon-shift:hover{
            color: #de3f5c;
        }

.sync-sync-shift .sync-base-bottom{
            max-width: 1320px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #53627c;
        }

@media (max-width: 768px){.sync-sync-shift .sync-base-bottom{
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }}