:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-2: #111827;
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --line: rgba(148, 163, 184, 0.18);
  --blue: #38bdf8;
  --cyan: #22d3ee;
  --deep: #1d4ed8;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.55);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(14, 165, 233, 0.18), transparent 36rem),
    radial-gradient(circle at 82% 10%, rgba(37, 99, 235, 0.16), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep), var(--cyan));
  color: white;
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.28);
}

.brand-text,
.footer-brand {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.nav-link {
  color: var(--soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.big-search {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.big-search input {
  width: 220px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 11px 14px 11px 18px;
}

.header-search button,
.mobile-search button,
.big-search button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--deep), var(--cyan));
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.96);
}

.mobile-nav.open {
  display: grid;
  gap: 12px;
}

.mobile-link {
  display: block;
  padding: 10px 0;
  color: var(--soft);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

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

.hero-backdrop,
.detail-bg,
.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.hero-backdrop {
  opacity: 0.42;
  transform: scale(1.08);
  filter: blur(1px) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.74) 42%, rgba(2, 6, 23, 0.22) 100%),
    linear-gradient(0deg, #020617 0%, transparent 38%);
}

.hero-content {
  position: relative;
  max-width: 1440px;
  min-height: 720px;
  margin: 0 auto;
  padding: 110px 28px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
}

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

.hero-kicker,
.detail-kicker,
.section-label,
.page-hero span,
.search-panel-copy span {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: #dbeafe;
  font-size: 1.12rem;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span,
.tag-list span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #bae6fd;
  font-size: 0.88rem;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--deep), var(--cyan));
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.28);
}

.ghost-btn {
  color: #dbeafe;
  border: 1px solid rgba(191, 219, 254, 0.32);
  background: rgba(15, 23, 42, 0.42);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2deg);
  min-height: 500px;
}

.hero-poster img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 18px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 900;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.hero-controls button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(16px);
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 30px;
  background: var(--blue);
}

.content-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 62px 28px;
}

.wide-search-panel {
  margin-top: -40px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  gap: 26px;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-panel-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.big-search input {
  width: 100%;
  min-height: 56px;
}

.big-search button {
  min-height: 56px;
  padding-inline: 28px;
  font-weight: 800;
}

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

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

.section-heading a {
  color: var(--blue);
  font-weight: 800;
}

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

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

.category-card {
  position: relative;
  min-height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.24);
}

.category-bg {
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.18));
}

.category-content {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 6px;
}

.category-content strong {
  font-size: 1.35rem;
}

.category-content em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.category-card:hover .category-bg {
  opacity: 0.72;
  transform: scale(1.12);
}

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

.catalog-grid {
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.9));
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 22px 70px rgba(14, 165, 233, 0.18);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(2, 6, 23, 0.95));
}

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

.movie-card:hover .poster-frame img {
  transform: scale(1.06);
  filter: brightness(0.72);
}

.card-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  backdrop-filter: blur(12px);
}

.card-duration {
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  font-size: 0.78rem;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) scale(0.86);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.1em;
  font-weight: 800;
  color: white;
}

.card-title:hover {
  color: var(--blue);
}

.card-meta,
.card-desc,
.card-foot {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3em;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding-top: 12px;
}

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

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}

.movie-card-horizontal .poster-frame {
  aspect-ratio: auto;
  min-height: 140px;
  height: 100%;
}

.movie-card-horizontal .card-title {
  min-height: auto;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.compact-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 84px 28px 28px;
}

.compact-hero > div {
  border-radius: 30px;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.28), rgba(14, 165, 233, 0.09)),
    rgba(15, 23, 42, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--soft);
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 220px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.84);
}

.catalog-tools label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
}

.catalog-tools input,
.catalog-tools select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.72);
  color: white;
  outline: 0;
  padding: 12px 13px;
}

.no-results {
  display: none;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 18px;
}

.no-results.show {
  display: block;
}

.detail-hero {
  min-height: 620px;
  background: #020617;
}

.detail-bg {
  opacity: 0.34;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.08);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.28)),
    linear-gradient(0deg, #020617 0%, transparent 42%);
}

.detail-wrap {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 28px 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  margin: 22px 0 34px;
}

.breadcrumb a {
  color: #bae6fd;
}

.breadcrumb em {
  color: white;
  font-style: normal;
}

.detail-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: var(--panel);
}

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

.detail-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 820px;
  color: #dbeafe;
  font-size: 1.13rem;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.meta-list li {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.meta-list span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.meta-list strong {
  display: block;
  margin-top: 4px;
  color: white;
}

.detail-main {
  padding-top: 34px;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

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

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

.player-shell.is-playing .player-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 45px rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(14px);
  font-size: 1.8rem;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  color: #fecaca;
  text-align: center;
  pointer-events: none;
}

.text-panel {
  margin-top: 22px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid var(--line);
}

.text-panel h2,
.related-column h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.text-panel p {
  margin: 0;
  color: var(--soft);
}

.related-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.related-column .movie-card-horizontal {
  grid-template-columns: 148px minmax(0, 1fr);
}

.related-column .card-desc {
  display: none;
}

.page-switch {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
}

.page-switch a {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid var(--line);
  color: #bae6fd;
}

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

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 46px 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 36px;
}

.footer-grid p {
  color: var(--muted);
  max-width: 520px;
}

.footer-grid h3 {
  margin: 0 0 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

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

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

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

  .hero-poster {
    display: none;
  }

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

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

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

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

  .related-column h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 64px;
    padding-inline: 18px;
  }

  .header-search {
    display: none;
  }

  .brand-text {
    font-size: 1.05rem;
  }

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

  .hero-content {
    padding: 92px 20px 90px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4.5rem);
  }

  .wide-search-panel {
    grid-template-columns: 1fr;
    margin-inline: 18px;
    padding: 24px;
  }

  .content-section,
  .compact-hero,
  .detail-wrap {
    padding-inline: 18px;
  }

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

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .rank-grid,
  .related-column {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal,
  .related-column .movie-card-horizontal {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .movie-card-horizontal .poster-frame {
    min-height: 128px;
  }

  .card-body {
    padding: 14px;
  }

  .card-desc {
    display: none;
  }

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

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

  .meta-list {
    grid-template-columns: 1fr 1fr;
  }

  .compact-hero > div {
    padding: 34px 24px;
  }

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

@media (max-width: 520px) {
  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

  .movie-card-horizontal .poster-frame {
    aspect-ratio: 16 / 9;
  }

  .meta-list {
    grid-template-columns: 1fr;
  }
}
