:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(30, 41, 59, 0.86);
  --line: rgba(126, 34, 206, 0.34);
  --line-bright: rgba(251, 191, 36, 0.38);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --dim: #64748b;
  --gold: #fbbf24;
  --gold-deep: #d97706;
  --purple: #7e22ce;
  --purple-soft: rgba(88, 28, 135, 0.45);
  --radius-lg: 24px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(126, 34, 206, 0.26), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(251, 191, 36, 0.12), transparent 26rem),
    linear-gradient(180deg, #0f172a 0%, #020617 58%, #020617 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(88, 28, 135, 0.82), rgba(15, 23, 42, 0.92));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  color: #111827;
  font-weight: 900;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.28);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small,
.footer-brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #cbd5e1;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero-section {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(126, 34, 206, 0.24);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-slide img.is-missing {
  opacity: 0;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(251, 191, 36, 0.15), transparent 24rem),
    radial-gradient(circle at 18% 28%, rgba(126, 34, 206, 0.32), transparent 34rem),
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(251, 191, 36, 0.14);
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  background:
    linear-gradient(135deg, rgba(88, 28, 135, 0.54), rgba(2, 6, 23, 0.84)),
    radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent 28rem);
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 78px;
}

.hero-copy {
  max-width: 760px;
}

.hero-eyebrow,
.section-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 14px 0 8px;
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  color: #fde68a;
}

.hero-copy p {
  max-width: 660px;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-meta,
.movie-meta-line,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-meta span,
.movie-meta-line span,
.detail-meta span,
.rank-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 999px;
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.btn-primary,
.btn-secondary,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.22);
}

.btn-secondary,
.btn-soft {
  color: #fef3c7;
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(251, 191, 36, 0.24);
}

.btn-soft {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 12px;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  border-color: rgba(251, 191, 36, 0.54);
}

.hero-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.hero-control.prev {
  left: max(18px, calc((100vw - 1180px) / 2));
}

.hero-control.next {
  right: max(18px, calc((100vw - 1180px) / 2));
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  transition: width 0.2s ease, background 0.2s ease;
}

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

.section-block {
  padding: 62px 0 0;
}

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

.section-title h1,
.section-title h2 {
  margin: 4px 0 0;
  color: #fef3c7;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.section-title p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.movie-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 3px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: #6b21a8 #0f172a;
}

.movie-rail .movie-card {
  flex: 0 0 295px;
}

.grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 22px;
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 34, 206, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.78));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(135deg, rgba(88, 28, 135, 0.7), rgba(15, 23, 42, 0.94)),
    radial-gradient(circle at 65% 18%, rgba(251, 191, 36, 0.2), transparent 12rem);
}

.poster-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.poster-frame img.is-missing {
  opacity: 0;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.08);
}

.poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  color: rgba(253, 230, 138, 0.82);
  font-size: clamp(2.4rem, 9vw, 5.6rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.08em;
}

.rank-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.movie-card h3 {
  margin: 10px 0 8px;
  color: #fff7ed;
  font-size: 1.15rem;
  line-height: 1.3;
}

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

.movie-card p {
  margin: 0;
  min-height: 3.5em;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.75;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.movie-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(126, 34, 206, 0.18);
  font-size: 0.76rem;
}

.movie-card.compact {
  display: grid;
  grid-template-columns: 108px 1fr;
  min-height: 160px;
}

.movie-card.compact .poster-frame {
  height: 100%;
  min-height: 160px;
  border-radius: var(--radius) 0 0 var(--radius);
}

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

.movie-card.compact p {
  min-height: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.category-card,
.info-panel,
.filter-panel,
.text-link-card,
.detail-card,
.player-shell,
.rank-row {
  border: 1px solid rgba(126, 34, 206, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.82));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.category-card {
  display: block;
  padding: 22px;
  min-height: 164px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.46);
}

.category-card strong {
  display: block;
  color: #fef3c7;
  font-size: 1.35rem;
}

.category-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-card span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 18px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
}

.search-box span {
  color: var(--gold);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-box input::placeholder {
  color: var(--dim);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-chips button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(15, 23, 42, 0.68);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.filter-chips button:hover,
.filter-chips button.active {
  color: #111827;
  border-color: transparent;
  background: var(--gold);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.info-panel {
  padding: 22px;
}

.info-panel h2,
.detail-card h2 {
  margin: 0 0 14px;
  color: #fef3c7;
  font-size: 1.5rem;
}

.info-panel p,
.detail-card p {
  color: #cbd5e1;
  line-height: 1.9;
}

.text-link-list {
  display: grid;
  gap: 12px;
}

.text-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.text-link-card:hover {
  transform: translateX(4px);
  border-color: rgba(251, 191, 36, 0.45);
}

.text-link-card span {
  color: #fef3c7;
  font-weight: 800;
}

.text-link-card small {
  color: var(--muted);
}

.rank-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 900;
}

.rank-row h3 {
  margin: 0 0 8px;
  color: #fef3c7;
  font-size: 1.08rem;
}

.rank-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 72px 0 14px;
}

.page-hero h1 {
  margin: 0;
  color: #fef3c7;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 800px;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 1.05rem;
}

.detail-hero {
  padding: 58px 0 26px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4.15;
  background:
    linear-gradient(135deg, rgba(88, 28, 135, 0.74), rgba(15, 23, 42, 0.92)),
    radial-gradient(circle at 50% 18%, rgba(251, 191, 36, 0.2), transparent 14rem);
  box-shadow: var(--shadow);
}

.detail-poster img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-poster img.is-missing {
  opacity: 0;
}

.detail-poster .poster-fallback {
  font-size: 5rem;
}

.detail-copy h1 {
  margin: 16px 0 16px;
  color: #fff;
  font-size: clamp(2.3rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-copy .lead {
  max-width: 840px;
  color: #dbeafe;
  font-size: 1.1rem;
  line-height: 1.9;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(126, 34, 206, 0.38);
  border-radius: 999px;
  color: #ddd6fe;
  background: rgba(88, 28, 135, 0.24);
}

.player-section {
  padding-top: 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 26px;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: #111827;
  background:
    radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 16rem),
    linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.42));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-layer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.28);
  font-size: 1.08rem;
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
  padding-top: 28px;
}

.detail-card {
  padding: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.category-strip a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(126, 34, 206, 0.28);
  border-radius: 16px;
  color: #fef3c7;
  background: rgba(30, 41, 59, 0.6);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-strip a:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.42);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.96));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.7fr 0.7fr;
  gap: 34px;
  padding: 44px 0;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 1.08rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(126, 34, 206, 0.22);
  color: var(--dim);
}

.footer-bottom button {
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 12px;
  color: #fde68a;
  background: rgba(88, 28, 135, 0.26);
  padding: 8px 12px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: inline-block;
  }

  .filter-panel,
  .split-layout,
  .detail-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-chips {
    justify-content: flex-start;
  }

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

  .rank-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .rank-row .btn-soft {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-section,
  .hero-content {
    min-height: 68vh;
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .hero-control {
    display: none;
  }

  .movie-card.compact {
    grid-template-columns: 88px 1fr;
  }

  .movie-card.compact .poster-frame {
    min-height: 138px;
  }

  .section-title {
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}
