:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.10), 0 2px 4px -2px rgb(0 0 0 / 0.10);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.10), 0 8px 10px -6px rgb(0 0 0 / 0.10);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-800), var(--orange-700), var(--amber-800));
  box-shadow: var(--shadow-md);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand-mark,
.footer-logo span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: var(--amber-100);
  font-size: 12px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-100);
  background: rgb(255 255 255 / 0.12);
}

.mobile-menu-btn {
  display: none;
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-900), var(--orange-800) 48%, var(--amber-900));
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgb(245 158 11 / 0.22), transparent 32%),
    radial-gradient(circle at 82% 40%, rgb(255 255 255 / 0.16), transparent 28%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 620px;
  padding: 76px 0 74px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: 42px;
}

.hero-slide.active {
  display: grid;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber-100);
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(4px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
  font-weight: 800;
}

.hero-copy h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.15;
}

.hero-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--amber-100);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

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

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--amber-900);
  background: var(--amber-100);
  font-size: 13px;
  font-weight: 700;
}

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 12px 28px rgb(217 119 6 / 0.30);
}

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

.btn-ghost {
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.32);
  background: rgb(255 255 255 / 0.10);
}

.btn-ghost.dark {
  color: var(--amber-800);
  border-color: var(--amber-200);
  background: var(--amber-50);
}

.hero-poster {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--amber-800), var(--gray-900));
  box-shadow: var(--shadow-2xl);
}

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

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

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgb(0 0 0 / 0.58), transparent 55%);
}

.hero-poster span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  box-shadow: var(--shadow-xl);
}

.hero-control {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: var(--white);
  background: rgb(255 255 255 / 0.13);
}

.hero-prev,
.hero-next {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
}

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

.page-section {
  padding: 56px 0;
}

.quick-search-section {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.quick-search-card,
.soft-section,
.warm-section {
  border-radius: 24px;
  background: linear-gradient(90deg, #fff7ed, var(--amber-50));
  box-shadow: var(--shadow-md);
}

.quick-search-card {
  padding: 24px;
}

.quick-search-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.quick-search-card p {
  margin: 0 0 20px;
  color: var(--gray-600);
}

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

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

.section-head h2 span {
  color: var(--amber-600);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  color: var(--amber-700);
  font-weight: 800;
}

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

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

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  color: var(--gray-900);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.poster-wrap {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--gray-200));
}

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

.movie-card-compact .poster-wrap {
  height: 230px;
}

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

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

.poster-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 18px;
  color: var(--white);
  opacity: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.74), rgb(0 0 0 / 0.20), transparent);
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-mask {
  opacity: 1;
}

.poster-mask span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
}

.type-badge,
.duration-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  left: 12px;
  background: var(--amber-600);
}

.duration-badge {
  right: 12px;
  background: rgb(0 0 0 / 0.62);
  backdrop-filter: blur(4px);
}

.hover-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  color: var(--white);
  font-size: 42px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .hover-play {
  opacity: 1;
  transform: scale(1.08);
}

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

.movie-info strong {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-info strong {
  color: var(--amber-700);
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-600);
  font-size: 13px;
}

.horizontal-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 0 12px;
}

.horizontal-strip .movie-card {
  min-width: 270px;
}

.soft-section,
.warm-section {
  padding: 34px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: auto 128px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.rank-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  font-weight: 900;
}

.rank-thumb {
  height: 76px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--amber-100);
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.rank-body strong,
.rank-body span,
.rank-body em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-body strong {
  font-size: 18px;
}

.rank-body span {
  color: var(--gray-600);
  font-size: 14px;
}

.rank-body em {
  color: var(--gray-500);
  font-size: 13px;
  font-style: normal;
}

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

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

.category-tile,
.category-panel {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 22px;
  background: var(--gray-900);
  box-shadow: var(--shadow-md);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.5s ease;
}

.category-tile:hover img,
.category-panel:hover img {
  transform: scale(1.08);
}

.category-tile::after,
.category-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgb(0 0 0 / 0.78), transparent 70%);
}

.category-tile span,
.category-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: var(--white);
}

.category-tile strong,
.category-copy strong {
  font-size: 22px;
}

.category-tile em,
.category-copy em {
  color: var(--amber-100);
  font-size: 14px;
  font-style: normal;
}

.category-panel {
  min-height: 250px;
}

.category-covers {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s ease;
}

.page-hero,
.detail-head {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-900), var(--orange-800), var(--amber-900));
}

.page-hero .container {
  padding: 64px 0;
}

.page-hero h1,
.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
}

.page-hero p,
.detail-one-line {
  max-width: 820px;
  margin: 0;
  color: var(--amber-100);
  font-size: 20px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--amber-100);
  font-size: 14px;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 170px 150px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  border-radius: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--gray-700);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  color: var(--gray-900);
  background: var(--gray-50);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 3px rgb(217 119 6 / 0.14);
}

.filter-reset {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  color: var(--white);
  background: var(--amber-600);
  font-weight: 800;
}

.filter-empty {
  display: none;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: var(--gray-600);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.filter-empty.show {
  display: block;
}

.movie-card.filtered-out,
.rank-row.filtered-out {
  display: none;
}

.detail-head-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--amber-100), var(--gray-800));
  box-shadow: var(--shadow-2xl);
}

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

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--amber-100);
  background: rgb(255 255 255 / 0.12);
}

.player-card,
.content-card {
  border-radius: 24px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.player-head {
  margin-bottom: 18px;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-box video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgb(0 0 0 / 0.64), rgb(0 0 0 / 0.20));
}

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

.play-circle {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber-600);
  box-shadow: var(--shadow-xl);
  font-size: 28px;
}

.article-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.85;
}

.info-card {
  grid-column: 1 / -1;
}

.info-card dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.info-card div {
  border-radius: 14px;
  padding: 14px;
  background: var(--gray-50);
}

.info-card dt {
  color: var(--gray-500);
  font-size: 13px;
}

.info-card dd {
  margin: 6px 0 0;
  color: var(--gray-900);
  font-weight: 800;
}

.ranking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 36px;
  padding: 64px 0;
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--gray-900);
  box-shadow: var(--shadow-2xl);
}

.ranking-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  opacity: 0.84;
}

.ranking-cover span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.site-footer {
  color: var(--gray-300);
  background: linear-gradient(90deg, var(--gray-900), var(--gray-800), var(--gray-900));
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
}

.footer-brand p {
  max-width: 560px;
  margin: 0;
  color: var(--gray-400);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: var(--gray-300);
}

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

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.10);
  padding: 18px 16px;
  text-align: center;
  color: var(--gray-400);
}

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

  .mobile-menu-btn {
    display: inline-flex;
  }

  .hero-slide,
  .detail-head-grid,
  .ranking-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

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

  .featured-grid,
  .latest-grid,
  .editor-grid,
  .article-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .brand-text strong {
    font-size: 20px;
  }

  .hero-inner {
    padding: 48px 0 76px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 320px;
  }

  .movie-grid,
  .catalog-grid,
  .related-grid,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .poster-wrap {
    height: 238px;
  }

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

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

  .rank-row {
    grid-template-columns: auto 92px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .rank-thumb {
    height: 68px;
  }

  .rank-body span {
    display: none;
  }

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

  .soft-section,
  .warm-section,
  .quick-search-card,
  .player-card,
  .content-card {
    padding: 18px;
  }

  .detail-head-grid {
    padding: 38px 0;
  }

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

  .info-card dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .movie-grid,
  .catalog-grid,
  .related-grid,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: 1fr;
  }

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