/* mother-diversity · site-1 · 红蓝白影站（细节见 site-craft.css） */
:root {
  --cs-primary: #dc2626;
  --cs-primary-dk: #b91c1c;
  --cs-cta: #2563eb;
  --cs-cta-dk: #1d4ed8;
  --cs-hot: #2563eb;
  --cs-hot-dk: #1d4ed8;
  --cs-bg: #f8fafc;
  --cs-surface: #ffffff;
  --cs-surface2: #f1f5f9;
  --cs-text: #0f172a;
  --cs-muted: #64748b;
  --cs-line: rgba(15, 23, 42, 0.1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }

/* ── Body ── */
.cs-body {
  margin: 0;
  min-height: 100vh;
  background: #f8fafc !important;
  color: var(--cs-text) !important;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.cs-body a { color: var(--cs-primary); }
.cs-body a:hover { color: var(--cs-cta); }
.cs-body a.cs-btn--outline { color: #fff !important; }
.cs-body a.cs-head__hot { color: #fff !important; }
.cs-body a.cs-genres__pill--all { color: #fff !important; }
.cs-body .cs-nav a[aria-current="page"] { color: #fff !important; }

/* ── Header: 单行顶栏 · 左品牌 · 中导航 · 右搜索+CTA ── */
.cs-head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(20, 16, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--cs-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
.cs-head__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 62px;
  padding: 0 18px;
}
.cs-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cs-text) !important;
  flex-shrink: 0;
  border-left: 4px solid var(--cs-primary);
  padding-left: 12px;
}
.cs-brand:hover { color: var(--cs-primary) !important; }
.cs-brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cs-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.45);
}
.cs-brand__text { display: flex; flex-direction: column; line-height: 1.2; max-width: 200px; }
.cs-brand__text strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-brand__text em { font-size: 11px; color: var(--cs-muted); font-style: normal; font-weight: 600; }

.cs-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cs-nav::-webkit-scrollbar { display: none; }
.cs-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cs-muted) !important;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.cs-nav a:hover {
  color: var(--cs-text) !important;
  background: rgba(225, 29, 72, 0.1);
}
.cs-nav a[aria-current="page"] {
  color: var(--cs-primary) !important;
  border-bottom-color: var(--cs-primary);
  background: rgba(225, 29, 72, 0.12);
}

.cs-head__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cs-search {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cs-line);
  background: var(--cs-surface2);
}
.cs-search input {
  width: 160px;
  padding: 9px 12px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--cs-text);
  font-size: 13px;
}
.cs-search input::placeholder { color: var(--cs-muted); }
.cs-search button {
  padding: 9px 14px;
  border: 0;
  background: var(--cs-cta);
  color: #1c1917;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}
.cs-search button:hover { filter: brightness(1.08); }

.cs-head__hot {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cs-hot), var(--cs-hot-dk));
  color: #042f2e !important;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.cs-head__hot:hover { transform: translateY(-1px); filter: brightness(1.06); color: #042f2e !important; }

.cs-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--cs-line);
  border-radius: 8px;
  background: var(--cs-surface2);
  cursor: pointer;
}
.cs-burger span {
  display: block;
  height: 2px;
  background: var(--cs-primary);
  border-radius: 2px;
}

/* ── Main ── */
.cs-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px 56px;
}

/* ── Hero Stage: 全宽舞台聚光灯 ── */
.cs-stage {
  position: relative;
  margin: 0 -18px 36px;
  padding: 56px 36px 64px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a1418 0%, var(--cs-bg) 100%);
  border-bottom: 1px solid var(--cs-line);
}
.cs-stage__spot {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(225, 29, 72, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cs-stage__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cs-stage__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cs-hot);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cs-stage h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cs-text);
}
.cs-stage__desc {
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--cs-muted);
  max-width: 560px;
}
.cs-stage__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
}
.cs-btn--primary {
  background: linear-gradient(135deg, var(--cs-cta), var(--cs-cta-dk));
  color: #1c1917 !important;
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}
.cs-btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); color: #1c1917 !important; }
.cs-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff !important;
}
.cs-btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.cs-btn--play { align-self: center; flex-shrink: 0; }

/* ── Hot rail (横滑) ── */
.cs-rail { margin-bottom: 32px; }
.cs-rail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cs-rail__head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--cs-text);
}
.cs-rail__live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cs-primary);
  box-shadow: 0 0 10px var(--cs-primary);
  animation: cs-beat 1.8s ease-in-out infinite;
}
@keyframes cs-beat {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .cs-rail__live { animation: none; }
}
.cs-rail__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--cs-primary) !important;
}
.cs-rail__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.cs-rail__track .cs-slide,
.cs-rail__track .cs-poster {
  flex: 0 0 130px;
  scroll-snap-align: start;
}
.cs-rail__track--rel .cs-slide {
  flex: 0 0 140px;
}

/* ── Genre pills ── */
.cs-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-genres__pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  color: var(--cs-text) !important;
  font-size: 14px;
  font-weight: 700;
}
.cs-genres__pill:hover {
  border-color: var(--cs-primary);
  background: rgba(225, 29, 72, 0.12);
  color: var(--cs-primary) !important;
}
.cs-genres__pill--all {
  background: var(--cs-primary);
  border-color: var(--cs-primary);
  color: #fff !important;
}
.cs-genres__pill--all:hover {
  background: var(--cs-primary-dk);
  color: #fff !important;
}

/* ── Poster wall sections ── */
.cs-wall { margin-bottom: 40px; }
.cs-wall--dim { opacity: 0.97; }
.cs-wall--rel { margin-bottom: 24px; }
.cs-wall__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cs-wall__head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--cs-text);
  padding-left: 12px;
  border-left: 4px solid var(--cs-primary);
}
.cs-wall__head a {
  font-size: 13px;
  font-weight: 700;
  color: var(--cs-cta) !important;
}

/* build 注入 HOME_SECTIONS */
.section-block { margin-bottom: 40px; }
.section-block .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-block .section-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--cs-text);
  padding-left: 12px;
  border-left: 4px solid var(--cs-primary);
}
.section-block .section-head a {
  font-size: 13px;
  font-weight: 700;
  color: var(--cs-cta) !important;
}
.section-block .section-icon { display: none; }

/* ── Grids: 密集海报墙 ── */
.cs-wall__grid,
.movie-grid.cs-wall__grid {
  display: grid;
  gap: 14px;
}
.cs-wall__grid--dense { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.cs-wall__grid--fresh { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cs-wall__grid--cat { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* ── Poster card: 竖版 2:3 · 标题在图下（可读） ── */
.cs-poster {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--cs-line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cs-poster:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.16);
}
.cs-poster__link {
  display: flex;
  flex-direction: column;
  color: inherit !important;
  position: relative;
}
.cs-poster__frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0f172a;
  border-radius: 0;
}
.cs-poster__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cs-poster:hover .cs-poster__frame img { transform: scale(1.06); }
.cs-poster__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--cs-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  z-index: 3;
}
.cs-poster__shade {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.4));
  z-index: 1;
  pointer-events: none;
}
.cs-poster__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.45);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 2;
}
.cs-poster:hover .cs-poster__play { opacity: 1; }
.cs-poster__caption {
  position: static;
  display: block;
  padding: 11px 12px 13px;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.cs-poster__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}
.cs-poster__meta,
.cs-poster__intro {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  color: #334155;
  font-weight: 500;
  line-height: 1.45;
}

/* ── Slide card (热播横滑) ── */
.cs-slide {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cs-slide:hover { transform: translateY(-3px); }
.cs-slide__link { display: block; color: inherit !important; }
.cs-slide__frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.cs-slide:hover .cs-slide__frame { border-color: var(--cs-primary); }
.cs-slide__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-slide__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--cs-hot);
  color: #042f2e;
  font-size: 10px;
  font-weight: 800;
}
.cs-slide__caption { display: block; padding: 10px 10px 12px; background: #fff; }
.cs-slide__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 0 0 4px;
}
.cs-slide__meta {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  color: #334155;
  font-weight: 500;
  line-height: 1.45;
}

/* ── Category page: 左侧筛选栏 + 右侧密集网格 ── */
.cs-cat-hero {
  margin-bottom: 28px;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--cs-line);
}
.cs-cat-hero h1 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--cs-primary);
}
.cs-cat-hero p { margin: 0; color: var(--cs-muted); line-height: 1.7; max-width: 640px; }

.cs-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--cs-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.cs-crumb a { color: var(--cs-primary) !important; }

.cs-cat-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}
.cs-cat-side {
  position: sticky;
  top: 78px;
  padding: 20px;
  border-radius: 10px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
}
.cs-cat-side__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  color: var(--cs-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cs-line);
}
.cs-cat-side__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.cs-cat-side__field span {
  font-size: 12px;
  font-weight: 800;
  color: var(--cs-muted);
}
.cs-cat-side input,
.cs-cat-side select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--cs-surface2);
  color: var(--cs-text);
  font-size: 14px;
  outline: none;
}
.cs-cat-side input:focus,
.cs-cat-side select:focus { border-color: var(--cs-primary); }

.cs-empty {
  padding: 36px;
  text-align: center;
  color: var(--cs-muted);
  font-weight: 700;
  border-radius: 10px;
  background: var(--cs-surface);
  margin-top: 16px;
}

/* ── Play page: 全宽剧场播放器 + 下方信息条 ── */
.cs-theater { margin-bottom: 36px; }
.cs-theater__screen {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 2px solid var(--cs-primary);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(225, 29, 72, 0.15);
  margin-bottom: 20px;
}
.cs-theater__screen video,
#movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
}
.cs-theater__meta {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
}
.cs-theater__poster {
  flex-shrink: 0;
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--cs-line);
}
.cs-theater__poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.cs-theater__info { flex: 1; min-width: 0; }
.cs-theater__info h1 {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--cs-text);
}
.cs-theater__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.cs-theater__tags span {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(225, 29, 72, 0.15);
  color: var(--cs-primary);
}
.cs-theater__tags span:nth-child(2n) {
  background: rgba(245, 158, 11, 0.15);
  color: var(--cs-cta);
}
.cs-theater__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--cs-muted);
}

/* ── Footer: 四列信息 ── */
.cs-foot {
  margin-top: 24px;
  padding: 40px 18px 32px;
  background: var(--cs-surface);
  border-top: 3px solid var(--cs-primary);
}
.cs-foot__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}
.cs-foot__col--brand strong {
  display: block;
  font-size: 16px;
  color: var(--cs-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.cs-foot__col--brand p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--cs-muted);
}
.cs-foot__label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--cs-cta);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.cs-foot__col--nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-foot__col--nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-muted) !important;
}
.cs-foot__col--nav a:hover { color: var(--cs-primary) !important; }
.cs-foot__col--legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--cs-muted);
  font-weight: 600;
}

/* ── Categories grid tiles ── */
.cs-genres--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cs-genres--grid .category-tile,
.cs-genres--grid .overview-card {
  display: block;
  padding: 22px;
  border-radius: 10px;
  background: var(--cs-surface);
  border: 1px solid var(--cs-line);
  color: var(--cs-text) !important;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cs-genres--grid .category-tile:hover,
.cs-genres--grid .overview-card:hover {
  border-color: var(--cs-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.15);
}
.cs-genres--grid .category-tile strong,
.cs-genres--grid .overview-main strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--cs-primary);
  margin-bottom: 8px;
}
.cs-genres--grid .category-tile span,
.cs-genres--grid .overview-main span {
  display: block;
  font-size: 13px;
  color: var(--cs-muted);
  line-height: 1.6;
}
.cs-genres--grid .overview-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cs-cta);
}

/* ── Mobile ── */
@media (max-width: 1100px) {
  .cs-wall__grid--dense { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .cs-wall__grid--fresh,
  .cs-wall__grid--cat { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .cs-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cs-surface); padding: 12px 18px 16px; border-bottom: 2px solid var(--cs-primary); gap: 4px; }
  .cs-nav.open { display: flex; }
  .cs-nav a { padding: 12px 16px; border-bottom: none; border-left: 3px solid transparent; }
  .cs-nav a[aria-current="page"] { border-left-color: var(--cs-primary); }
  .cs-head { position: relative; }
  .cs-burger { display: flex; }
  .cs-search input { width: 120px; }
  .cs-cat-layout { grid-template-columns: 1fr; }
  .cs-cat-side { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cs-cat-side__title { grid-column: 1 / -1; }
  .cs-foot__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .cs-head__bar { flex-wrap: wrap; min-height: 56px; gap: 10px; }
  .cs-brand__text { max-width: 140px; }
  .cs-head__tools { flex: 1; justify-content: flex-end; }
  .cs-search { flex: 1; }
  .cs-search input { width: 100%; flex: 1; }
  .cs-head__hot { display: none; }
  .cs-stage { padding: 40px 20px 48px; margin: 0 -18px 28px; }
  .cs-wall__grid--dense,
  .cs-wall__grid--fresh,
  .cs-wall__grid--cat,
  .movie-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .cs-rail__track .cs-slide { flex: 0 0 110px; }
  .cs-theater__meta { flex-direction: column; }
  .cs-theater__poster { width: 80px; }
  .cs-btn--play { width: 100%; }
  .cs-cat-side { grid-template-columns: 1fr; }
  .cs-foot__inner { grid-template-columns: 1fr; gap: 20px; }
  .cs-genres--grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .cs-brand__text em { display: none; }
  .cs-wall__grid--dense,
  .cs-wall__grid--fresh,
  .cs-wall__grid--cat { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
