:root {
  --page-bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f2f6ff;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-soft: #dbeafe;
  --accent: #f97316;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
  width: var(--container);
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.brand-text {
  font-size: 19px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-panel a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--brand);
  background: var(--brand-soft);
}

.header-search,
.mobile-search,
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search input,
.search-grid input,
.search-grid select,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: 0.2s ease;
}

.header-search input {
  width: 220px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-grid input:focus,
.search-grid select:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.header-search button,
.mobile-search button,
.hero-search button,
.primary-action,
.load-more {
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 750;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.24);
  transition: 0.2s ease;
}

.header-search button {
  padding: 10px 16px;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-action:hover,
.load-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  padding: 12px 14px;
}

.mobile-search button {
  padding: 12px 16px;
}

.hero-carousel {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.45), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  overflow: hidden;
}

.hero-track,
.hero-slide,
.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: blur(1px) saturate(1.06);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.86)),
    radial-gradient(circle at 75% 25%, rgba(37, 99, 235, 0.35), transparent 32%);
  z-index: 1;
}

.hero-no-image .hero-backdrop,
.detail-backdrop.has-fallback {
  background:
    radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.4), transparent 28%),
    linear-gradient(135deg, #0f172a, #1e40af 54%, #111827);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: 690px;
  margin: 0 auto;
  padding: 96px 0 138px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 52px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-kicker {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(191, 219, 254, 0.26);
}

.hero-copy h1 {
  max-width: 800px;
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0;
  color: #dbeafe;
  font-size: 18px;
}

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

.hero-tags {
  margin: 26px 0;
}

.hero-tags span,
.tag-row span,
.tag-cloud span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #eff6ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-row span,
.tag-cloud span {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
}

.secondary-action {
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: inherit;
  font-weight: 750;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.2s ease;
}

.secondary-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-poster {
  display: block;
  transform: rotate(2.6deg);
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.42));
}

.poster-shell {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.7), transparent 28%),
    linear-gradient(135deg, #172554, #2563eb 48%, #7c3aed);
}

.poster-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-hero {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.poster-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  color: #fff;
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
}

.poster-shell.has-fallback .poster-fallback {
  display: grid;
}

.hero-control-panel {
  position: absolute;
  left: 50%;
  bottom: 84px;
  z-index: 4;
  width: var(--container);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-control {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 26px;
  transition: 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.hero-dots button {
  width: 28px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 44px;
  background: #fff;
}

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  width: min(680px, calc(100vw - 32px));
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.hero-search input {
  padding: 15px 18px;
  border-color: transparent;
  background: transparent;
}

.hero-search button {
  min-width: 126px;
  padding: 13px 18px;
}

.stats-band,
.content-section,
.split-feature,
.page-shell,
.detail-content,
.player-section,
.related-section,
.ranking-layout,
.search-panel,
.category-list-block {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -38px;
  position: relative;
  z-index: 10;
}

.stats-band article {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats-band strong {
  display: block;
  color: var(--brand);
  font-size: 34px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.content-section,
.split-feature,
.category-list-block,
.ranking-layout,
.search-panel {
  margin-top: 56px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.story-card h2,
.info-card h2,
.rank-list-panel h2,
.category-list-block h2 {
  margin: 0;
  color: #0f172a;
  line-height: 1.1;
}

.section-heading h2 {
  margin-top: 10px;
  font-size: clamp(26px, 4vw, 40px);
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-link {
  color: var(--brand);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.13);
}

.movie-poster-link {
  position: relative;
  display: block;
}

.movie-poster-link .poster-shell {
  border-radius: 0;
}

.corner-badge,
.rating-badge {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(8px);
}

.corner-badge {
  left: 12px;
}

.rating-badge {
  right: 12px;
  background: rgba(249, 115, 22, 0.88);
}

.movie-card-body {
  padding: 18px;
}

.movie-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

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

.movie-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.movie-desc {
  min-height: 46px;
  margin: 10px 0 14px;
  color: #334155;
  font-size: 14px;
}

.compact-card .movie-desc {
  min-height: 42px;
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

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

.chip-grid,
.category-card-grid,
.category-link-grid {
  display: grid;
  gap: 14px;
}

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

.chip-grid a,
.category-link-grid a,
.category-card {
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: #fff;
  transition: 0.2s ease;
}

.chip-grid a {
  padding: 16px;
  text-align: center;
  font-weight: 800;
}

.chip-grid a:hover,
.category-link-grid a:hover,
.category-card:hover {
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.page-shell {
  padding: 42px 0 72px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #eff6ff, #fff 58%, #eef2ff);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.page-hero {
  padding: clamp(34px, 6vw, 72px);
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(34px, 6vw, 62px);
}

.page-actions {
  margin-top: 24px;
}

.page-actions .secondary-action,
.detail-actions .secondary-action {
  color: var(--brand-dark);
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
}

.filter-panel,
.search-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr auto;
  gap: 14px;
  align-items: end;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.filter-panel label,
.search-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.filter-panel input,
.filter-panel select,
.search-grid input,
.search-grid select {
  padding: 13px 14px;
}

.filter-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

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

.category-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.category-card span,
.category-card em,
.category-link-grid em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.category-card strong {
  font-size: 22px;
}

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

.category-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  font-weight: 750;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.rank-list-panel {
  position: sticky;
  top: 92px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.rank-list-panel h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.rank-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.rank-row:first-of-type {
  border-top: 0;
}

.rank-number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #ef4444);
}

.rank-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  grid-column: 2 / 4;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.search-panel {
  display: block;
}

.search-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 14px;
}

.search-summary {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.load-more {
  display: block;
  margin: 28px auto 0;
  padding: 13px 24px;
}

.load-more[hidden] {
  display: none;
}

.detail-page {
  padding-bottom: 72px;
}

.detail-hero {
  width: var(--container);
  min-height: 560px;
  margin: 32px auto 0;
  color: #fff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: blur(1px) saturate(1.08);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.9)),
    radial-gradient(circle at 78% 20%, rgba(37, 99, 235, 0.28), transparent 30%);
}

.detail-inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  padding: clamp(28px, 5vw, 62px);
}

.detail-copy h1 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: -0.05em;
}

.detail-line {
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 750;
}

.player-section {
  margin-top: 28px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.45), transparent 34%),
    #020617;
  box-shadow: var(--shadow);
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 6px;
  color: #fff;
  border: 0;
  background: rgba(2, 6, 23, 0.42);
  cursor: pointer;
  transition: 0.2s ease;
}

.player-overlay:hover {
  background: rgba(2, 6, 23, 0.3);
}

.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #7c3aed);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.32);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 22px;
}

.player-overlay em,
.player-status {
  color: #bfdbfe;
  font-style: normal;
}

.player-status {
  margin: 12px 4px 0;
  color: var(--muted);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  margin-top: 36px;
}

.story-card,
.info-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.story-card + .story-card {
  margin-top: 22px;
}

.story-card p {
  margin: 14px 0 0;
  color: #334155;
  white-space: pre-line;
}

.info-card {
  align-self: start;
}

.info-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 14px;
  margin: 18px 0;
}

.info-card dt {
  color: var(--muted);
}

.info-card dd {
  margin: 0;
  font-weight: 750;
}

.info-card dd a {
  color: var(--brand);
  margin-right: 8px;
}

.site-footer {
  margin-top: 72px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.footer-grid p {
  color: #94a3b8;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: #94a3b8;
  font-size: 13px;
}

.is-hidden-by-filter {
  display: none !important;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-poster {
    display: none;
  }

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

  .chip-grid,
  .category-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ranking-layout,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .rank-list-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .hero-carousel,
  .hero-content {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 150px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-feature,
  .footer-grid,
  .detail-inner {
    grid-template-columns: 1fr;
  }

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

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

  .filter-panel p {
    text-align: left;
  }

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

@media (max-width: 560px) {
  .header-inner {
    height: 62px;
  }

  .brand-text {
    font-size: 16px;
  }

  .hero-search {
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search button {
    width: 100%;
  }

  .hero-control-panel {
    bottom: 112px;
  }

  .stats-band,
  .movie-grid,
  .split-feature .movie-grid,
  .chip-grid,
  .category-card-grid,
  .category-link-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-inner {
    padding: 22px;
  }

  .detail-copy h1 {
    font-size: 36px;
  }
}


.plain-link-list {
  columns: 3 260px;
  margin: 0;
  padding-left: 20px;
}

.plain-link-list li {
  break-inside: avoid;
  margin: 0 0 8px;
}

.plain-link-list a:hover {
  color: var(--brand);
}
