/* mother-diversity · cherry-burst · site 10 · 浅粉底 + 樱桃红 + 电蓝 + 琥珀 */
:root {
  --cb-brand: #e11d48;
  --cb-cta: #2563eb;
  --cb-hot: #fbbf24;
  --cb-bg: #fff1f2;
  --cb-surface: #ffffff;
  --cb-surface-2: #ffe4e6;
  --cb-dark: #881337;
  --cb-text: #881337;
  --cb-muted: #be123c;
  --cb-line: rgba(225, 29, 72, 0.18);
  --cb-line-cta: rgba(37, 99, 235, 0.22);
  color-scheme: light;
}

/* ── 基础 ── */
.cb-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(800px 360px at 8% -5%, rgba(225, 29, 72, 0.14), transparent 55%),
    radial-gradient(600px 280px at 92% 12%, rgba(37, 99, 235, 0.1), transparent 50%),
    var(--cb-bg);
  color: var(--cb-text);
  font-family: "Segoe UI", "PingFang SC", "Noto Sans SC", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.cb-body a { text-decoration: none; transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.cb-body img { display: block; max-width: 100%; }

/* ── 头部：深樱桃顶栏 + 左品牌 + 右导航 + 独立搜索条 ── */
.cb-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cb-surface);
  box-shadow: 0 4px 24px rgba(225, 29, 72, 0.1);
}
.cb-top__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  min-height: 56px;
  background: linear-gradient(135deg, var(--cb-dark) 0%, var(--cb-brand) 100%);
}
.cb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  flex-shrink: 0;
}
.cb-brand__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.cb-brand__text { display: flex; flex-direction: column; gap: 1px; }
.cb-brand__text strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cb-brand__text em {
  font-size: 0.68rem;
  font-style: normal;
  opacity: 0.82;
  font-weight: 600;
}
.cb-top__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.cb-top__nav a {
  padding: 6px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 700;
  font-size: 0.84rem;
}
.cb-top__nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15);
}
.cb-top__nav a[aria-current="page"] {
  color: var(--cb-dark) !important;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.cb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  margin-left: auto;
}
.cb-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.cb-top__search {
  padding: 10px 16px;
  background: var(--cb-surface);
  border-bottom: 1px solid var(--cb-line);
}
.cb-search {
  display: flex;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
  border: 2px solid var(--cb-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cb-bg);
}
.cb-search input {
  flex: 1;
  border: 0;
  padding: 10px 16px;
  background: transparent;
  color: var(--cb-text);
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}
.cb-search input::placeholder { color: var(--cb-muted); opacity: 0.6; }
.cb-search button {
  display: grid;
  place-items: center;
  border: 0;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--cb-cta), #1d4ed8);
  color: #fff;
  cursor: pointer;
}
.cb-search button:hover { background: linear-gradient(135deg, #1d4ed8, var(--cb-cta)); }
.cb-drawer {
  display: none;
  flex-direction: column;
  padding: 8px 16px 14px;
  background: var(--cb-surface-2);
  border-bottom: 1px solid var(--cb-line);
}
.cb-drawer.open { display: flex; }
.cb-drawer a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--cb-text) !important;
  font-weight: 700;
  font-size: 0.88rem;
}
.cb-drawer a:hover { background: rgba(225, 29, 72, 0.08); color: var(--cb-brand) !important; }

/* ── 主内容 ── */
.cb-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 16px 48px;
}

/* ── 按钮 ── */
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  border: 2px solid transparent;
}
.cb-btn--cta {
  background: linear-gradient(135deg, var(--cb-cta), #1d4ed8);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.cb-btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.45);
}
.cb-btn--ghost {
  background: var(--cb-surface);
  color: var(--cb-brand) !important;
  border-color: var(--cb-brand);
}
.cb-btn--ghost:hover { background: var(--cb-surface-2); }

/* ── 首页通栏主推 ── */
.cb-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cb-dark) 0%, var(--cb-brand) 55%, #fb7185 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.cb-spotlight::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.25);
  pointer-events: none;
}
.cb-spotlight__copy { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.cb-spotlight__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.25);
  color: var(--cb-hot);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  border: 1px solid rgba(251, 191, 36, 0.4);
}
.cb-spotlight h1 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
}
.cb-spotlight__copy p {
  margin: 0 0 20px;
  opacity: 0.9;
  line-height: 1.7;
  font-size: 0.92rem;
  max-width: 420px;
}
.cb-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cb-spotlight__rail {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
}
.cb-spotlight__rail::-webkit-scrollbar { height: 5px; }
.cb-spotlight__rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}
.cb-spotlight__rail .cb-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.cb-spotlight__rail .cb-card__body h3 { color: #fff; }
.cb-spotlight__rail .cb-card__body p { color: rgba(255, 255, 255, 0.75); }
.cb-spotlight__rail .cb-card:hover { border-color: var(--cb-hot); }

/* ── 彩色胶囊分类 ── */
.cb-capsules {
  margin-bottom: 32px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-line);
}
.cb-capsules__title {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--cb-text);
}
.cb-capsules__track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cb-capsule {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cb-capsule:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15); }
.cb-capsule--cherry { background: linear-gradient(135deg, #e11d48, #be123c); }
.cb-capsule--blue { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.cb-capsule--violet { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.cb-capsule--amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.cb-capsule--rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.cb-capsule--cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.cb-capsule--indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.cb-capsule--pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.cb-capsule--all {
  background: var(--cb-surface);
  color: var(--cb-brand) !important;
  border: 2px solid var(--cb-brand);
}

/* ── 内容面板 ── */
.cb-panel { margin-bottom: 32px; }
.cb-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--cb-brand);
}
.cb-panel__head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--cb-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cb-panel__head a {
  color: var(--cb-brand) !important;
  font-weight: 700;
  font-size: 0.85rem;
}
.cb-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.cb-badge--hot {
  background: linear-gradient(135deg, var(--cb-hot), #f59e0b);
  color: var(--cb-dark);
}

/* ── 栅格 ── */
.cb-grid { display: grid; gap: 14px; }
.cb-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cb-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cb-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cb-grid--catalog { margin-top: 6px; }

/* ── 卡片：16:9横版 + 播放按钮 + 左下徽章 ── */
.cb-card {
  background: var(--cb-surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cb-line);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.14);
  border-color: var(--cb-brand);
}
.cb-card__link { display: block; color: inherit !important; }
.cb-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.cb-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--cb-dark);
  transition: transform 0.3s;
}
.cb-card:hover .cb-card__media img { transform: scale(1.05); }
.cb-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(136, 19, 55, 0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
}
.cb-card:hover .cb-card__play { opacity: 1; }
.cb-card__badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--cb-hot), #f59e0b);
  color: var(--cb-dark);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.45);
}
.cb-card__year {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(37, 99, 235, 0.88);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.cb-card__body { padding: 10px 11px 12px; }
.cb-card__body h3 {
  margin: 0 0 4px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--cb-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cb-card:hover .cb-card__body h3 { color: var(--cb-brand); }
.cb-card__body p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--cb-muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cb-card__body p span:first-child { color: var(--cb-cta); font-weight: 700; }
.cb-card--compact .cb-card__body h3 { font-size: 0.8rem; -webkit-line-clamp: 1; }
.cb-card--compact .cb-card__media img { aspect-ratio: 16 / 9; }

/* ── 分类页：左侧栏 + 右侧内容 ── */
.cb-cat-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.cb-cat-side {
  position: sticky;
  top: 130px;
  padding: 22px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--cb-dark) 0%, var(--cb-brand) 100%);
  color: #fff;
}
.cb-cat-side h1 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
}
.cb-cat-side p {
  margin: 0 0 16px;
  font-size: 0.82rem;
  opacity: 0.88;
  line-height: 1.65;
}
.cb-cat-side .cb-crumb { margin-bottom: 4px; }
.cb-cat-side .cb-crumb,
.cb-cat-side .cb-crumb a { color: rgba(255, 255, 255, 0.8) !important; }
.cb-cat-side__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.cb-cat-side__nav a {
  padding: 7px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.82rem;
  font-weight: 700;
}
.cb-cat-side__nav a:hover { background: rgba(255, 255, 255, 0.12); color: #fff !important; }
.cb-cat-main { min-width: 0; }
.cb-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-line-cta);
  box-shadow: 0 3px 14px rgba(37, 99, 235, 0.06);
}
.cb-chips__label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cb-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cb-chips input,
.cb-chips select {
  padding: 9px 12px;
  border: 1px solid var(--cb-line);
  border-radius: 8px;
  background: var(--cb-bg);
  color: var(--cb-text);
  font-size: 0.85rem;
  outline: none;
  min-width: 120px;
}
.cb-chips input:focus,
.cb-chips select:focus {
  border-color: var(--cb-brand);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}
.cb-cat-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--cb-muted);
  font-weight: 600;
}
.cb-empty {
  padding: 2.5rem;
  text-align: center;
  color: var(--cb-muted);
  border-radius: 12px;
  background: var(--cb-surface);
  border: 1px dashed var(--cb-line);
}

/* ── 播放页：影院模式 ── */
.cb-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--cb-muted);
}
.cb-crumb a { color: var(--cb-brand) !important; font-weight: 700; }
.cb-crumb a:hover { color: var(--cb-cta) !important; }
.cb-crumb--play { margin-bottom: 16px; }

.cb-cinema { margin-bottom: 32px; }
.cb-cinema__stage {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--cb-brand);
  box-shadow: 0 8px 36px rgba(225, 29, 72, 0.2);
  margin-bottom: 0;
  background: #000;
}
.cb-cinema__stage video,
.cb-cinema__stage #movie-player {
  width: 100%;
  max-height: 72vh;
  display: block;
  background: #000;
}
.cb-cinema__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}
.cb-cinema__thumb {
  margin: 0;
  flex-shrink: 0;
  width: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--cb-line);
}
.cb-cinema__thumb img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.cb-cinema__info { flex: 1; min-width: 200px; }
.cb-cinema__info h1 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--cb-text);
}
.cb-cinema__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.cb-cinema__tags span {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(225, 29, 72, 0.1);
  color: var(--cb-brand);
  border: 1px solid var(--cb-line);
}
.cb-cinema__tags span:nth-child(2n) {
  background: rgba(37, 99, 235, 0.1);
  color: var(--cb-cta);
  border-color: var(--cb-line-cta);
}
.cb-cinema__desc {
  margin: 0;
  color: var(--cb-muted);
  line-height: 1.7;
  font-size: 0.88rem;
}
.cb-cinema__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.cb-cinema__detail {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-line);
  border-left: 4px solid var(--cb-hot);
}
.cb-cinema__detail h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--cb-brand);
}
.cb-cinema__detail p {
  margin: 0;
  color: var(--cb-muted);
  line-height: 1.8;
  font-size: 0.88rem;
}

/* ── 次级页 Hero ── */
.cb-page-hero {
  text-align: center;
  padding: 32px 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cb-surface) 0%, var(--cb-surface-2) 100%);
  border: 1px solid var(--cb-line);
  border-top: 4px solid var(--cb-brand);
}
.cb-page-hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cb-hot);
  margin-bottom: 10px;
}
.cb-page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--cb-text);
}
.cb-page-hero p {
  margin: 0 auto;
  max-width: 540px;
  color: var(--cb-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ── 分类概览卡片（build 注入 overview-card） ── */
.cb-cat-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cb-body .overview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px;
  border-radius: 14px;
  background: var(--cb-surface);
  border: 1px solid var(--cb-line);
  color: var(--cb-text) !important;
  min-height: 110px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cb-body .overview-card:hover {
  transform: translateY(-3px);
  border-color: var(--cb-brand);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.12);
}
.cb-body .overview-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--cb-brand);
  margin-bottom: 4px;
}
.cb-body .overview-card span { font-size: 0.8rem; color: var(--cb-muted); }
.cb-body .overview-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cb-cta);
}

/* ── 页脚：双列 + SEO 条 ── */
.cb-foot {
  margin-top: 48px;
  background: var(--cb-surface);
  border-top: 4px solid var(--cb-brand);
}
.cb-foot__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 16px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.cb-foot__brand strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--cb-brand);
  margin-bottom: 8px;
}
.cb-foot__brand p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cb-muted);
  line-height: 1.65;
}
.cb-foot__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cb-foot__col h3 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--cb-brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cb-foot__col nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cb-foot__col a {
  color: var(--cb-muted) !important;
  font-size: 0.84rem;
  font-weight: 600;
}
.cb-foot__col a:hover { color: var(--cb-brand) !important; }
.cb-foot__seo {
  border-top: 1px solid var(--cb-line);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--cb-muted);
  background: var(--cb-bg);
}

/* ── build 注入 HOME_SECTIONS 兼容 ── */
.cb-body .section-block { margin-bottom: 32px; }
.cb-body .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--cb-brand);
}
.cb-body .section-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--cb-text);
}
.cb-body .section-head a {
  color: var(--cb-brand) !important;
  font-weight: 700;
  font-size: 0.85rem;
}
.cb-body .section-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(251, 191, 36, 0.2);
  color: var(--cb-hot);
  font-weight: 900;
  margin-right: 8px;
}
.cb-body .movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* ── 移动端 ── */
@media (max-width: 960px) {
  .cb-top__nav { display: none; }
  .cb-burger { display: flex; }
  .cb-spotlight {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
  .cb-spotlight__rail .cb-card { flex: 0 0 140px; }
  .cb-grid--5,
  .cb-grid--4,
  .cb-grid--3,
  .cb-body .movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cb-cat-layout { grid-template-columns: 1fr; }
  .cb-cat-side { position: static; }
  .cb-cat-side__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cb-cinema__bar { flex-direction: column; }
  .cb-cinema__actions { flex-direction: row; width: 100%; }
  .cb-cinema__actions .cb-btn { flex: 1; }
  .cb-foot__inner { grid-template-columns: 1fr; gap: 20px; }
  .cb-cat-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .cb-capsules__track { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .cb-capsule { flex-shrink: 0; }
  .cb-grid--5,
  .cb-grid--4,
  .cb-grid--3,
  .cb-body .movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .cb-cat-tiles { grid-template-columns: 1fr; }
  .cb-chips input,
  .cb-chips select { min-width: 100%; flex: 1 1 100%; }
}

/* craft-station-10-header */
/* ── 头部：单行莓果画廊楣板 ── */
.cb-top{
  position:sticky;top:0;z-index:100;
  background:linear-gradient(180deg,#fff7f8 0%,#ffffff 100%);
  border-bottom:1px solid rgba(190,18,60,.14);
  box-shadow:0 8px 24px rgba(136,19,55,.06);
}
.cb-top__bar,.cb-top__deck{
  max-width:1180px;margin:0 auto;
  padding:12px 18px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;gap:14px 18px;
  min-height:0;background:transparent;
}
.cb-brand{display:inline-flex;align-items:center;gap:11px;color:#881337!important;flex-shrink:0;min-width:0}
.cb-brand__icon{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,#fb7185,#be123c);
  color:#fff;font-size:.75rem;font-weight:900;
  border:0;box-shadow:0 8px 18px rgba(190,18,60,.28);
}
.cb-brand__text{display:flex;flex-direction:column;gap:2px;line-height:1.1;min-width:0}
.cb-brand__text strong{
  font-family:"Noto Serif SC","Songti SC",serif;
  font-size:1.15rem;font-weight:700;letter-spacing:.02em;color:#881337;
}
.cb-brand__text em{
  font-style:normal;font-size:.66rem;font-weight:700;
  letter-spacing:.1em;color:#be123c;
}
.cb-top__nav{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;
  gap:4px;min-width:0;margin:0!important;
}
.cb-top__nav a{
  padding:7px 12px;border-radius:999px;
  font-size:.82rem;font-weight:700;
  color:#9f1239!important;background:transparent;
  border:1px solid transparent;
}
.cb-top__nav a:hover{
  color:#881337!important;background:#fff1f2;border-color:rgba(190,18,60,.18);
}
.cb-top__nav a[aria-current="page"]{
  color:#fff!important;
  background:linear-gradient(135deg,#fb7185,#be123c);
  border-color:transparent;box-shadow:0 6px 14px rgba(190,18,60,.25);
}
.cb-search{
  display:flex;align-items:stretch;width:260px;min-width:0;
  border-radius:999px;overflow:hidden;
  background:#fff;border:1.5px solid rgba(190,18,60,.22);
  box-shadow:0 4px 14px rgba(136,19,55,.06);
  max-width:none;margin:0;
}
.cb-search input{
  flex:1;min-width:0;border:0;outline:none;background:transparent;
  padding:9px 14px;font:inherit;font-size:.84rem;color:#881337;
}
.cb-search input::placeholder{color:rgba(190,18,60,.45)}
.cb-search button{
  display:grid;place-items:center;border:0;cursor:pointer;
  width:44px;padding:0;
  color:#fff;background:linear-gradient(135deg,#fb7185,#be123c);
}
.cb-search button:hover{filter:brightness(1.05)}
.cb-burger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:40px;height:40px;padding:8px;border:0;border-radius:10px;cursor:pointer;
  background:#fff1f2;margin:0;
}
.cb-burger span{display:block;height:2px;background:#be123c;border-radius:2px}
.cb-top__search{display:none!important}
.cb-drawer{display:none}
.cb-drawer.open{
  display:flex;flex-direction:column;gap:4px;
  padding:8px 18px 14px;background:#fff7f8;
  border-top:1px solid rgba(190,18,60,.1);
}
.cb-drawer a{
  padding:10px 12px;border-radius:10px;font-weight:700;font-size:.9rem;
  color:#881337!important;
}
.cb-drawer a:hover{background:#fff1f2}

@media (max-width:960px){
  .cb-top__bar,.cb-top__deck{
    grid-template-columns:auto 1fr auto;
    grid-template-areas:"brand search burger";
    gap:10px;
  }
  .cb-brand{grid-area:brand}
  .cb-search{grid-area:search;width:auto;max-width:none}
  .cb-burger{display:flex;grid-area:burger}
  .cb-top__nav{display:none}
}
@media (max-width:560px){
  .cb-brand__text em{display:none}
}
