:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.72);
  --panel-strong: #111827;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --orange: #fb923c;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.14), transparent 36rem),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.26);
  font-size: 15px;
}

.brand-name {
  font-size: clamp(20px, 3vw, 28px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--soft);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown:hover .nav-dropdown-button {
  color: white;
  background: rgba(34, 211, 238, 0.13);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--soft);
}

.dropdown-panel a:hover {
  color: var(--cyan);
  background: rgba(148, 163, 184, 0.10);
}

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

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

.hero-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 24%, rgba(34, 211, 238, 0.28), transparent 24rem),
    radial-gradient(circle at 80% 24%, rgba(59, 130, 246, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(2, 6, 23, 0.72), rgba(15, 23, 42, 0.92));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 90px);
}

.hero-slider {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(34, 211, 238, 0.30);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-tags,
.tag-row,
.detail-meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(148, 163, 184, 0.12);
  font-size: 13px;
}

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

.btn,
.search-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.search-box button:hover {
  transform: translateY(-2px);
}

.btn-primary,
.search-box button {
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
  box-shadow: 0 18px 50px rgba(6, 182, 212, 0.23);
}

.btn-ghost {
  color: white;
  background: rgba(51, 65, 85, 0.72);
  backdrop-filter: blur(12px);
}

.btn-soft {
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.08);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5.2;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(37, 99, 235, 0.18));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.poster-glow {
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 30%;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.22);
  filter: blur(36px);
}

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

.hero-dot {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.34);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--cyan);
}

.search-band,
.content-section,
.page-main,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.search-band {
  margin-top: -38px;
  position: relative;
  z-index: 8;
}

.search-box {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-box label,
.filter-panel span {
  color: var(--cyan);
  font-weight: 800;
}

.search-box div {
  display: flex;
  gap: 12px;
}

.search-box input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.72);
  outline: none;
}

.search-box input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.10);
}

.content-section {
  padding: 76px 0 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-weight: 800;
}

.section-more span {
  font-size: 24px;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.62);
  background: rgba(15, 23, 42, 0.96);
}

.cover-link,
.cover-frame {
  display: block;
}

.cover-frame {
  position: relative;
  aspect-ratio: 16 / 10.4;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(37, 99, 235, 0.16));
}

.movie-grid-large .cover-frame {
  aspect-ratio: 16 / 9;
}

.movie-card-compact .cover-frame,
.movie-grid-small .cover-frame {
  aspect-ratio: 4 / 3;
}

.cover-frame img,
.poster-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cover-frame img.image-missing,
.hero-poster img.image-missing,
.poster-side img.image-missing {
  display: none;
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
  opacity: 0.62;
}

.play-ring,
.overlay-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: white;
  background: rgba(6, 182, 212, 0.90);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.24);
}

.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.corner-label,
.year-label,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(12px);
}

.corner-label {
  left: 12px;
}

.year-label {
  right: 12px;
}

.rank-badge {
  left: 12px;
  top: auto;
  bottom: 12px;
  background: rgba(251, 146, 60, 0.92);
}

.movie-body {
  padding: 18px;
}

.movie-title {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.movie-title:hover {
  color: var(--cyan);
}

.movie-body p {
  min-height: 46px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.meta-row {
  margin-bottom: 12px;
}

.meta-row span:nth-child(2),
.detail-meta span:nth-child(3) {
  color: var(--orange);
  background: rgba(251, 146, 60, 0.12);
}

.tag-row span {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.10);
}

.category-section {
  padding-top: 86px;
}

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

.category-tile,
.category-overview-card,
.filter-panel,
.detail-card,
.player-card,
.side-card {
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
}

.category-tile {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(37, 99, 235, 0.04));
  opacity: 0.76;
}

.category-tile strong,
.category-tile span,
.category-tile em {
  position: relative;
  display: block;
}

.category-tile strong {
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

.category-tile span {
  color: var(--soft);
  font-size: 14px;
}

.category-tile em {
  margin-top: 14px;
  font-style: normal;
}

.category-tile em a {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 13px;
}

.page-main {
  padding-top: 42px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 36px;
  padding: clamp(38px, 8vw, 78px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 18%, rgba(34, 211, 238, 0.20), transparent 24rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.84));
  box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1,
.rank-hero h1,
.search-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  margin-bottom: 36px;
  padding: 22px;
  border-radius: 24px;
}

.filter-panel.wide-filter {
  grid-template-columns: minmax(0, 1fr) 220px 180px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
}

.empty-state.is-visible {
  display: block;
}

.filter-card.is-filtered-out {
  display: none;
}

.category-overview-card {
  padding: 24px;
  border-radius: 28px;
  margin-bottom: 28px;
}

.category-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  margin: 0;
  font-size: 28px;
}

.category-overview-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--cyan);
}

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

.detail-primary {
  min-width: 0;
}

.player-card,
.detail-card,
.side-card {
  border-radius: 26px;
  overflow: hidden;
}

.player-card {
  margin-bottom: 26px;
  background: rgba(2, 6, 23, 0.72);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.30), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay strong {
  max-width: min(620px, 86%);
  font-size: clamp(20px, 4vw, 34px);
  text-align: center;
}

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

.detail-card {
  padding: clamp(22px, 4vw, 34px);
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-meta {
  margin-bottom: 26px;
}

.detail-block {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.detail-block + .detail-block {
  margin-top: 22px;
}

.detail-block h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-block p {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
}

.tag-row-large span {
  min-height: 34px;
  padding: 0 14px;
  font-size: 14px;
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 22px;
}

.side-list {
  display: grid;
  gap: 8px;
}

.side-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.side-list a:last-child {
  border-bottom: 0;
}

.side-list span {
  color: var(--soft);
  font-weight: 700;
}

.side-list em {
  flex: 0 0 auto;
  color: var(--cyan);
  font-style: normal;
}

.poster-side {
  padding: 0;
  overflow: hidden;
}

.poster-side a {
  display: block;
  position: relative;
  min-height: 260px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(37, 99, 235, 0.16));
}

.poster-side img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.poster-side span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.site-footer {
  margin-top: 88px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.70);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  padding: 48px 0 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: #64748b;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .movie-grid-large,
  .movie-grid-small,
  .movie-grid-normal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.98);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-link,
  .nav-dropdown-button {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .hero-section,
  .hero-slider {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }

  .hero-poster {
    max-width: 360px;
    margin: 0 auto;
    transform: none;
  }

  .search-box div,
  .section-heading,
  .category-overview-head {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box div {
    display: grid;
  }

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

  .movie-grid-large,
  .movie-grid-small,
  .movie-grid-normal,
  .movie-grid-mini,
  .category-grid,
  .footer-grid,
  .detail-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .search-band,
  .content-section,
  .page-main,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .hero-section,
  .hero-slider {
    min-height: 840px;
  }

  .hero-actions,
  .search-box div {
    display: grid;
  }

  .hero-actions .btn,
  .search-box button {
    width: 100%;
  }

  .movie-grid-large,
  .movie-grid-small,
  .movie-grid-normal,
  .movie-grid-mini,
  .category-grid,
  .footer-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 28px;
    border-radius: 26px;
  }

  .movie-body p {
    min-height: auto;
  }
}
