:root {
  --earth-950: #35231c;
  --earth-900: #573729;
  --earth-800: #6a4130;
  --earth-700: #814e34;
  --earth-600: #9b5f3c;
  --bronze-700: #7e5d41;
  --bronze-600: #98724c;
  --bronze-500: #a68558;
  --bronze-300: #d0bd9f;
  --stone-50: #fbfaf7;
  --stone-100: #efede6;
  --stone-200: #ddd9cc;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-800: #292524;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(87, 55, 41, 0.14);
  --shadow-card: 0 10px 26px rgba(87, 55, 41, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone-50);
  color: var(--stone-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

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

main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--earth-900), var(--earth-800));
  color: var(--stone-50);
  box-shadow: 0 12px 30px rgba(53, 35, 28, 0.24);
}

.site-nav,
.mobile-nav,
.footer-inner,
.hero-content,
.section-inner,
.page-hero-inner,
.detail-layout,
.player-page,
.search-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bronze-500);
  color: var(--white);
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 650;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: transparent;
  transition: background 0.2s ease;
}

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

.nav-link.active::after {
  background: var(--bronze-300);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 0 18px;
}

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

.mobile-nav-link {
  padding: 12px 4px;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--earth-900);
}

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

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

.hero-slide img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.03);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 22%, rgba(208, 189, 159, 0.30), transparent 32%),
    linear-gradient(90deg, rgba(53, 35, 28, 0.94), rgba(87, 55, 41, 0.78) 46%, rgba(53, 35, 28, 0.42));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 40px;
  padding: 86px 0 70px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--bronze-300);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  font-size: 14px;
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.3vw, 42px);
}

.hero p {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.page-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

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

.btn {
  background: var(--bronze-500);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(166, 133, 88, 0.28);
}

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

.btn:hover {
  background: var(--bronze-600);
  box-shadow: 0 20px 34px rgba(166, 133, 88, 0.36);
}

.btn-secondary {
  background: var(--white);
  color: var(--earth-900);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel {
  align-self: stretch;
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-tags span,
.tag-list span,
.detail-meta span,
.movie-card-body em,
.category-samples span,
.result-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 11px;
  font-style: normal;
  font-size: 12px;
  font-weight: 750;
}

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

.hero-search {
  display: flex;
  width: min(620px, 100%);
  min-height: 56px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20);
}

.hero-search input,
.search-input,
.category-filter input,
.category-filter select {
  width: 100%;
  border: 0;
  outline: 0;
  background: var(--white);
  color: var(--earth-900);
  font: inherit;
}

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

.hero-search button {
  border: 0;
  padding: 0 24px;
  color: var(--white);
  background: var(--bronze-600);
  font-weight: 800;
  cursor: pointer;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: var(--bronze-300);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--stone-100);
}

.section.gradient {
  background: linear-gradient(135deg, #f0ebe6, #f1ede3);
}

.section.dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--earth-950), var(--earth-800));
}

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

.section-heading h2,
.page-hero h1,
.detail-content h1,
.player-title h1 {
  margin: 0;
  color: var(--earth-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section.dark .section-heading h2 {
  color: var(--white);
}

.section-heading p,
.page-hero p,
.detail-content p,
.player-title p {
  margin: 8px 0 0;
  color: var(--stone-600);
  line-height: 1.75;
}

.section.dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(87, 55, 41, 0.20);
}

.poster-wrap {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
  background: var(--earth-800);
}

.movie-card-small .poster-wrap {
  height: 205px;
}

.movie-card-large .poster-wrap {
  height: 360px;
}

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

.movie-card:hover img,
.horizontal-card:hover img,
.category-card:hover,
.detail-rel-card:hover img {
  transform: scale(1.08);
}

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.74));
}

.poster-meta {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.rank-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--bronze-500);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 17px;
}

.movie-card-body strong {
  color: var(--earth-900);
  font-size: 18px;
  line-height: 1.25;
}

.movie-card-body span {
  color: var(--stone-600);
  font-size: 14px;
  line-height: 1.6;
}

.movie-card-body em,
.result-tag {
  margin-top: auto;
  color: var(--earth-800);
  background: #ede3d9;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.horizontal-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.horizontal-card span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px 22px 0;
}

.horizontal-card strong {
  color: var(--earth-900);
  font-size: 23px;
}

.horizontal-card small {
  margin: 8px 0 14px;
  color: var(--bronze-600);
  font-weight: 800;
}

.horizontal-card em {
  color: var(--stone-600);
  font-style: normal;
  line-height: 1.7;
}

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

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 24px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  box-shadow: 0 20px 42px rgba(87, 55, 41, 0.18);
}

.category-card strong {
  color: var(--earth-900);
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.7;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.category-samples span {
  color: var(--bronze-700);
  background: var(--stone-100);
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 58px 74px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(87, 55, 41, 0.09);
}

.ranking-row strong {
  font-size: 22px;
  color: var(--bronze-600);
  text-align: center;
}

.ranking-row img {
  width: 74px;
  height: 94px;
  object-fit: cover;
  border-radius: 14px;
}

.ranking-row h3 {
  margin: 0 0 6px;
  color: var(--earth-900);
}

.ranking-row p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.55;
}

.ranking-row span {
  color: var(--bronze-700);
  font-weight: 800;
  white-space: nowrap;
}

.page-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(166, 133, 88, 0.30), transparent 34%),
    linear-gradient(135deg, var(--earth-900), var(--earth-700));
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.78);
}

.category-filter,
.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  margin: 30px 0 0;
}

.search-box {
  grid-template-columns: minmax(0, 1fr) 140px;
}

.category-filter input,
.category-filter select,
.search-input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.category-filter select {
  appearance: none;
  cursor: pointer;
}

.search-box button {
  border: 0;
  border-radius: 16px;
  color: var(--white);
  background: var(--bronze-600);
  font-weight: 900;
  cursor: pointer;
}

.empty-result {
  display: none;
  padding: 28px;
  margin-top: 24px;
  border-radius: 20px;
  color: var(--earth-800);
  background: var(--stone-100);
  font-weight: 800;
}

.detail-hero {
  background: linear-gradient(135deg, var(--earth-950), var(--earth-800));
  color: var(--white);
  padding: 42px 0 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--bronze-300);
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

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

.detail-content h1 {
  color: var(--white);
}

.detail-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

.detail-meta span,
.tag-list span {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

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

.article-card,
.side-card,
.player-card {
  border-radius: 28px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.article-card h2,
.side-card h2,
.player-card h2 {
  margin: 0 0 16px;
  color: var(--earth-900);
  font-size: 26px;
}

.article-card p,
.side-card p {
  color: var(--stone-600);
  line-height: 1.9;
}

.article-card + .article-card,
.side-card + .side-card {
  margin-top: 24px;
}

.player-section {
  padding: 60px 0 78px;
  background: var(--stone-100);
}

.player-page {
  display: grid;
  gap: 28px;
}

.player-card {
  padding: 20px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  padding: 0;
  background: #000000;
  color: var(--white);
  cursor: pointer;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.play-icon {
  position: relative;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 7px;
  background: var(--bronze-500);
  color: var(--white);
  font-size: 34px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.player-title {
  display: grid;
  gap: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.detail-rel-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.detail-rel-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-rel-card span {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.detail-rel-card strong {
  color: var(--earth-900);
}

.detail-rel-card small {
  color: var(--stone-600);
}

.search-page {
  padding: 54px 0 78px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.result-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border-radius: 22px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.result-card img {
  width: 96px;
  height: 128px;
  border-radius: 16px;
  object-fit: cover;
}

.result-card strong {
  display: block;
  color: var(--earth-900);
  line-height: 1.3;
}

.result-card small {
  display: block;
  margin: 7px 0;
  color: var(--stone-600);
}

.result-card p {
  margin: 0 0 10px;
  color: var(--stone-600);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  color: var(--stone-200);
  background: var(--earth-900);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 34px;
}

.footer-logo {
  color: var(--bronze-300);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--bronze-300);
  font-size: 19px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  padding: 18px 0 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
  .grid-cards,
  .grid-cards.compact,
  .search-results,
  .detail-rel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-panel {
    display: none;
  }

  .grid-cards,
  .grid-cards.featured,
  .grid-cards.compact,
  .search-results,
  .detail-rel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .horizontal-card span {
    padding: 0 18px 20px;
  }

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

  .ranking-row {
    grid-template-columns: 46px 70px minmax(0, 1fr);
  }

  .ranking-row span {
    display: none;
  }
}

@media (max-width: 540px) {
  .site-nav,
  .mobile-nav,
  .footer-inner,
  .hero-content,
  .section-inner,
  .page-hero-inner,
  .detail-layout,
  .player-page,
  .search-page {
    width: min(100% - 22px, 1180px);
  }

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

  .hero p {
    font-size: 16px;
  }

  .hero-search {
    display: grid;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .hero-search input,
  .hero-search button {
    min-height: 52px;
    border-radius: 16px;
  }

  .grid-cards,
  .grid-cards.featured,
  .grid-cards.compact,
  .search-results,
  .detail-rel-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap,
  .movie-card-small .poster-wrap,
  .movie-card-large .poster-wrap {
    height: 330px;
  }

  .section-heading {
    display: grid;
  }
}
