:root {
  --bg: #0f172a;
  --bg-soft: #111c31;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-solid: #162033;
  --line: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --cyan-soft: rgba(34, 211, 238, 0.14);
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(34, 211, 238, 0.18), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(59, 130, 246, 0.14), transparent 32%),
    linear-gradient(180deg, #0f172a 0%, #111827 46%, #0f172a 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(2, 6, 23, 0.26);
}

.nav-wrap {
  width: min(var(--container), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.32);
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text strong,
.footer-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: var(--cyan-soft);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 290px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.66);
}

.nav-search input,
.hero-search input,
.page-search input,
.filter-bar input,
.search-tools select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.nav-search input::placeholder,
.hero-search input::placeholder,
.page-search input::placeholder,
.filter-bar input::placeholder {
  color: #64748b;
}

.nav-search button,
.hero-search button,
.page-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.68);
}

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

.hero-stage,
.hero-slide,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

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

.hero-media img,
.detail-bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-fallback,
.poster-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: rgba(226, 232, 240, 0.82);
  font-weight: 800;
  background:
    radial-gradient(circle at 20% 18%, rgba(34, 211, 238, 0.24), transparent 32%),
    linear-gradient(135deg, #1e293b, #0f172a);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.58) 48%, rgba(15, 23, 42, 0.18)),
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.08) 48%, rgba(15, 23, 42, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 128px 0 150px;
}

.hero-kicker,
.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  max-width: 820px;
  margin: 16px 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.detail-one-line {
  max-width: 760px;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

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

.hero-meta {
  margin-top: 24px;
}

.hero-meta span,
.detail-tags span,
.tag-row span,
.pill-link {
  border: 1px solid rgba(148, 163, 184, 0.20);
  border-radius: 999px;
  padding: 7px 11px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.56);
}

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

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 13px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 36px rgba(34, 211, 238, 0.22);
}

.primary-button.small {
  padding: 10px 16px;
  font-size: 14px;
}

.ghost-button,
.section-more {
  padding: 12px 18px;
  border: 1px solid var(--line);
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.56);
}

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

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 26px;
  width: min(760px, calc(100% - 32px));
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.hero-search input {
  padding: 0 14px;
}

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

.page-main {
  min-height: 70vh;
}

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

.section-heading h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.compact-heading h2 {
  font-size: 30px;
}

.movie-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

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

.movie-card {
  min-width: 0;
  scroll-snap-align: start;
}

.movie-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.18);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.movie-card a:hover {
  border-color: rgba(34, 211, 238, 0.46);
  background: rgba(30, 41, 59, 0.82);
  transform: translateY(-6px);
}

.movie-poster {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111827;
}

.movie-poster img,
.timeline-cover img,
.ranking-cover img,
.detail-poster img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

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

.poster-badge {
  position: absolute;
  z-index: 4;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #cffafe;
  font-size: 12px;
  font-weight: 800;
  background: rgba(8, 47, 73, 0.78);
  backdrop-filter: blur(10px);
}

.poster-play {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.32);
}

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-card-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.movie-card-body p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.movie-meta {
  color: #cbd5e1;
  font-size: 13px;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  padding: 4px 8px;
  color: #a5f3fc;
  font-size: 12px;
}

.section-split {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(30, 41, 59, 0.54));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.56);
}

.timeline-dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.timeline-cover,
.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background: #111827;
}

.timeline-item strong {
  color: #ffffff;
  font-size: 20px;
}

.timeline-item p {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-item small {
  color: #67e8f9;
}

.ranking-panel,
.detail-side-card,
.detail-article,
.category-overview-card,
.category-showcase-card,
.player-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.48);
}

.rank-num {
  color: var(--cyan);
  font-weight: 900;
}

.rank-title {
  color: #ffffff;
  font-weight: 760;
}

.rank-meta {
  color: var(--muted);
  font-size: 13px;
}

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

.category-showcase-card {
  padding: 24px;
}

.category-showcase-head,
.category-overview-copy {
  display: grid;
  gap: 10px;
}

.category-showcase-head {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.category-showcase-head h3,
.category-overview-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.category-showcase-head a {
  color: #67e8f9;
  font-weight: 800;
}

.category-showcase-card p,
.category-overview-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.mini-grid,
.overview-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.mini-grid .movie-card-body p,
.overview-mini-grid .movie-card-body p {
  display: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 20%, rgba(34, 211, 238, 0.18), transparent 30%),
    linear-gradient(135deg, #0f172a, #172033 50%, #0f172a);
}

.compact-page-hero .container {
  padding: 84px 0 70px;
}

.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(38px, 5vw, 64px);
}

.page-search,
.filter-bar,
.search-tools {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.64);
}

.page-search input,
.filter-bar input {
  padding: 9px 12px;
}

.large-search {
  width: min(780px, 100%);
}

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pill-link.is-active,
.pill-link:hover {
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.48);
  background: rgba(34, 211, 238, 0.16);
}

.filter-bar {
  margin-bottom: 24px;
}

.category-grid .movie-card.is-hidden {
  display: none;
}

.category-overview-list {
  display: grid;
  gap: 28px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  gap: 28px;
  padding: 26px;
}

.ranking-table {
  display: grid;
  gap: 12px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 54px 120px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.58);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ranking-row:hover {
  border-color: rgba(34, 211, 238, 0.44);
  transform: translateY(-2px);
}

.ranking-index {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}

.ranking-copy strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
}

.ranking-copy small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.ranking-action {
  border-radius: 999px;
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(34, 211, 238, 0.15);
}

.search-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 24px;
}

.search-tools select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 12px;
  background: #111827;
}

.detail-main {
  overflow: hidden;
}

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

.detail-bg-layer,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
}

.detail-bg-layer {
  filter: blur(2px);
  transform: scale(1.02);
}

.detail-hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.72) 46%, rgba(15, 23, 42, 0.36)),
    linear-gradient(0deg, #0f172a, rgba(15, 23, 42, 0.08) 50%, rgba(15, 23, 42, 0.82));
}

.detail-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  min-height: 72vh;
  padding: 96px 0 64px;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  background: #111827;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #bae6fd;
  font-size: 14px;
}

.detail-copy h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.detail-tags {
  margin-top: 22px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.movie-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 35%, rgba(34, 211, 238, 0.24), transparent 28%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(15, 23, 42, 0.54));
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.34);
  font-size: 30px;
}

.player-cover strong {
  font-size: 26px;
}

.player-cover small {
  color: var(--muted-strong);
}

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

.detail-article,
.detail-side-card {
  padding: 30px;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 8px 0 18px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.detail-article p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.9;
}

.detail-subtitle {
  display: block;
  margin-top: 30px;
}

.detail-side-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.detail-side-card div {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-side-card dt {
  color: var(--muted);
  font-size: 13px;
}

.detail-side-card dd {
  margin: 0;
  color: #ffffff;
  font-weight: 750;
}

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

.related-grid .movie-card-body p {
  display: none;
}

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

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 42px 0;
}

.footer-inner p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.58);
}

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

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

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

  .ranking-panel {
    position: static;
  }

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

@media (max-width: 820px) {
  .nav-wrap {
    min-height: 66px;
  }

  .mobile-menu-button {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
  }

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

  .nav-link {
    width: 100%;
  }

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

  .hero-search,
  .page-search {
    border-radius: 22px;
    flex-direction: column;
  }

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

  .movie-grid,
  .category-showcase-grid,
  .category-overview-card,
  .detail-hero-content,
  .search-tools {
    grid-template-columns: 1fr;
  }

  .detail-hero-content {
    align-items: start;
  }

  .detail-poster {
    width: min(280px, 100%);
  }

  .timeline-item,
  .ranking-row {
    grid-template-columns: 1fr;
  }

  .ranking-cover,
  .timeline-cover {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-wrap,
  .footer-inner {
    width: min(100% - 22px, var(--container));
  }

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

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

  .hero-content h1,
  .detail-copy h1 {
    font-size: 40px;
  }

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

  .movie-strip {
    grid-auto-columns: 82%;
  }

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