/* mono-editorial · 233 · 黑白灰编辑精选影视站 */
:root {
  --accent: #c9302c;
  --accent-dark: #9a2420;
  --accent-soft: rgba(201, 48, 44, 0.08);
  --pink: var(--accent);
  --blue: var(--accent);
  --green: #525252;
  --orange: var(--accent);
  --ink: #111111;
  --ink-soft: #333333;
  --muted: #737373;
  --panel: #ffffff;
  --surface: #fafafa;
  --line: #e5e5e5;
  --line-strong: #d4d4d4;
  --soft: #f5f5f5;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --radius-lg: 6px;
  --font-serif: "Songti SC", "Noto Serif SC", "SimSun", Georgia, serif;
  --font-sans: "PingFang SC", "Microsoft YaHei", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

a {
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

/* 顶栏：双行结构（品牌+搜索 / 频道导航） */
.nav-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  box-shadow: none;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
  min-width: 0;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin: 0 -20px;
  padding: 0 12px;
  background: var(--soft);
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 11px 14px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--accent);
  background: transparent;
}

.nav-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
}

.nav-search input {
  width: 180px;
  padding: 8px 12px;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.nav-search button {
  padding: 8px 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  border-left: 1px solid var(--line);
}

.nav-search button:hover {
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-size: 18px;
}

.page-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

/* ── 首屏：通栏全宽主推 ── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  margin: 0 -20px 40px;
  border-radius: 0;
  background: var(--ink);
  box-shadow: none;
}

.hero-glow { display: none; }

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 0;
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transform: none;
}

.hero-visual:hover { transform: none; }

.hero-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  background: #222;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 40px 72px;
  max-width: 720px;
}

.eyebrow,
.eyebrow.solo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
}

.eyebrow span {
  background: transparent;
  color: inherit;
  padding: 0;
  box-shadow: none;
}

.hero-copy h1,
.hero-copy h2,
.compact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-copy p,
.compact-hero p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 0 20px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.tag-cloud a {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 12px;
  box-shadow: none;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.primary-btn:hover {
  background: var(--accent-dark);
  transform: none;
  box-shadow: none;
}

.ghost-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-caption { display: none; }

.hero-control {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.hero-control button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  box-shadow: none;
}

.hero-dots { display: flex; gap: 6px; }

.hero-dots button {
  width: 24px;
  height: 3px;
  padding: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots button.active {
  width: 36px;
  background: var(--accent);
}

/* ── SEO 品牌条 ── */
.seo-brand-block {
  margin: 0 0 36px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.seo-brand-block h1 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.seo-brand-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
  max-width: 820px;
}

/* ── 快速搜索 ── */
.quick-search {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quick-search h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.quick-search form {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.quick-search input {
  flex: 1;
  padding: 12px 16px;
  outline: none;
  background: transparent;
}

.quick-search button {
  padding: 0 24px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.quick-search button:hover { background: var(--accent); }

/* ── 分区标题 ── */
.section-block { margin-bottom: 44px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.section-head > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.section-head a {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.section-icon {
  display: none;
}

/* ── 影片卡片：编辑列表式 ── */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--panel);
  box-shadow: none;
  transition: background 0.18s ease;
}

.movie-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--soft);
}

.poster-link { display: block; }

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e5e5e5;
  aspect-ratio: 3 / 4;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  filter: grayscale(12%);
}

.movie-card:hover .poster-frame img {
  transform: none;
  filter: grayscale(0%);
  opacity: 0.92;
}

.image-off { opacity: 0; }

.rank-badge {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  box-shadow: none;
}

.movie-card-body { padding: 14px 12px 16px; }

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.movie-card h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card h3 a:hover { color: var(--accent); }

.movie-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 8px;
}

.card-actions a {
  display: inline-flex;
  border-radius: var(--radius);
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 600;
  font-size: 12px;
}

.card-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.card-actions span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.card-compact {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  min-height: 120px;
}

.card-compact .poster-frame {
  height: 100%;
  aspect-ratio: auto;
}

.card-compact .movie-card-body { padding: 12px; }

.card-compact h3 { font-size: 14px; }

/* ── 分类入口：横条网格 ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.category-tile,
.overview-card {
  display: block;
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: none;
}

.category-tile:hover,
.overview-card:hover {
  transform: none;
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.category-tile strong,
.overview-main strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.category-tile span,
.overview-main span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

/* ── 频道横条（首页专用） ── */
.channel-strip {
  margin-bottom: 40px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.channel-strip .section-head {
  border-bottom: none;
  margin-bottom: 14px;
  padding-bottom: 0;
}

.channel-strip .category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

/* ── 内页通用 ── */
.soft-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 12px;
}

.rank-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: none;
}

.compact-hero { padding: 36px 32px; }

.compact-hero h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: #fff;
}

.compact-hero p { color: rgba(255, 255, 255, 0.72); }

.compact-hero .eyebrow.solo { margin-bottom: 12px; }

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 14px;
  outline: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--accent);
}

.empty-state {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
  background: var(--soft);
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.category-grid.large { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.overview-card { display: grid; gap: 14px; }

.overview-links { display: flex; flex-wrap: wrap; gap: 8px; }

.overview-links a {
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 13px;
}

.overview-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-size: 13px;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.78); }

.breadcrumb a:hover { color: #fff; }

.page-hero .breadcrumb { margin-bottom: 12px; }

/* ── 播放页 ── */
.detail-hero {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  margin-bottom: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: none;
  background: #e5e5e5;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}

.detail-info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.detail-info .eyebrow span {
  background: var(--soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.player-section,
.content-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.player-section { padding: 24px; margin-bottom: 28px; }

.player-section h2,
.content-card h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.player-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-error[hidden] { display: none !important; }

.video-error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  font-weight: 600;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  margin-bottom: 40px;
}

.content-card { padding: 24px; }

.prose-card p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 20px;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }

.tag-cloud a {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.side-meta ul { display: grid; gap: 0; }

.side-meta li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.side-meta span { color: var(--muted); font-weight: 500; font-size: 13px; }

.side-meta strong { text-align: right; color: var(--ink); font-size: 14px; }

.side-link {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 11px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.side-link:hover { background: var(--accent); }

.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── 页脚 ── */
.site-footer {
  margin-top: 20px;
  background: var(--ink);
  border-top: none;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-size: 13px;
}

.footer-inner a { color: rgba(255, 255, 255, 0.85); }

.footer-inner a:hover { color: var(--accent); }

/* ── 响应式 ── */
@media (max-width: 1100px) {
  .movie-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid,
  .channel-strip .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-section { min-height: 420px; }
  .detail-hero { grid-template-columns: 200px 1fr; }
  .filter-panel { grid-template-columns: 1fr 1fr; }
  .rank-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    min-height: 52px;
    gap: 10px;
    padding: 0 14px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    margin: 0;
    border-top: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 12px 14px;
    border-bottom: none;
    border-left: 3px solid transparent;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
  }

  .main-nav a:hover {
    border-left-color: var(--accent);
    background: var(--soft);
  }

  .nav-search { margin-left: auto; }

  .nav-search input { display: none; }

  .nav-search button { padding: 8px 12px; }

  .nav-toggle { display: block; }

  .page-main { padding: 0 14px 48px; }

  .hero-section {
    margin: 0 -14px 32px;
    min-height: 380px;
  }

  .hero-copy { padding: 32px 20px 64px; }

  .hero-control { left: 20px; right: 20px; bottom: 16px; }

  .quick-search { grid-template-columns: 1fr; }

  .movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .category-grid,
  .category-grid.large,
  .channel-strip .category-grid { grid-template-columns: 1fr 1fr; }

  .scroll-row { grid-auto-columns: 280px; }

  .detail-hero { grid-template-columns: 1fr; }

  .detail-poster { max-width: 220px; }

  .detail-grid { grid-template-columns: 1fr; }

  .filter-panel { grid-template-columns: 1fr; }

  .card-compact { grid-template-columns: 80px minmax(0, 1fr); }
}

@media (max-width: 540px) {
  .brand-text { font-size: 17px; }

  .hero-section { min-height: 340px; }

  .hero-copy h1,
  .hero-copy h2 { font-size: 26px; }

  .hero-copy p,
  .detail-info p { font-size: 14px; }

  .movie-grid,
  .related-grid { grid-template-columns: 1fr; }

  .category-grid,
  .channel-strip .category-grid { grid-template-columns: 1fr; }

  .compact-hero { padding: 24px 20px; }

  .section-head { align-items: flex-start; flex-direction: column; }

  .detail-hero,
  .player-section,
  .content-card { padding: 18px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
