:root {
  --color-red-900: #7f1d1d;
  --color-red-800: #991b1b;
  --color-red-700: #b91c1c;
  --color-red-600: #dc2626;
  --color-red-500: #ef4444;
  --color-orange-500: #f97316;
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-700: #334155;
  --color-slate-500: #64748b;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-white: #ffffff;
  --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 14px 40px rgba(15, 23, 42, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff7f7;
  color: var(--color-slate-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248, 113, 113, 0.22);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red-600), var(--color-orange-500));
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.32);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 18px;
}

.brand__text small {
  margin-top: 4px;
  color: var(--color-slate-500);
  font-size: 12px;
  font-weight: 600;
}

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

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--color-slate-700);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-red-700);
  background: #fee2e2;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fee2e2;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-red-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.9), transparent 34%), linear-gradient(135deg, #7f1d1d, #dc2626 48%, #f97316);
}

.hero__decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.18;
  background: #ffffff;
  pointer-events: none;
}

.hero__decor--one {
  left: 8%;
  top: 14%;
}

.hero__decor--two {
  right: 10%;
  bottom: 12%;
}

.hero-slider,
.hero-slide,
.hero-slide__bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

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

.hero-slide__bg {
  background-size: cover;
  background-position: center;
}

.hero-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.32));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding-top: 72px;
}

.hero-slide__text {
  color: var(--color-white);
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #fee2e2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide h1,
.hero-slide h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero-slide p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-tags,
.movie-card__tags,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

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

.hero-tags span,
.movie-card__tags span,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

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

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

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-red-700);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.25);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.42);
  transform: rotate(2deg);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.92);
  color: #fff;
  font-weight: 900;
}

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

.hero-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 56px;
  background: #ffffff;
}

.stats-strip {
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

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

.stat-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(248, 113, 113, 0.18);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--color-red-700);
  font-size: 22px;
  font-weight: 900;
}

.stat-card span {
  margin-top: 4px;
  color: var(--color-slate-500);
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section--soft {
  background: #fff1f2;
}

.section--lifted {
  padding-top: 58px;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--color-slate-950);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--color-slate-500);
  font-weight: 700;
}

.section-heading > a {
  flex: 0 0 auto;
  color: var(--color-red-700);
  font-weight: 900;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid rgba(248, 113, 113, 0.2);
  box-shadow: var(--shadow-card);
}

.filter-panel__search {
  display: flex;
  gap: 12px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  background: #fffafa;
  color: var(--color-slate-900);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--color-red-500);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.filter-panel button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red-600), var(--color-orange-500));
  font-weight: 900;
}

.filter-panel__selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.filter-panel__clear {
  background: var(--color-slate-900) !important;
}

.movie-grid,
.mini-grid,
.category-grid,
.category-overview-grid,
.rank-card-list {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(248, 113, 113, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.movie-card__poster,
.rank-card__poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fee2e2, #fff7ed);
}

.movie-card__poster {
  aspect-ratio: 3 / 4;
}

.movie-card__poster img,
.rank-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.movie-card__play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.94);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .movie-card__play {
  opacity: 1;
  transform: translateY(0);
}

.movie-card__body {
  padding: 16px;
}

.movie-card__title {
  display: block;
  color: var(--color-slate-950);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.movie-card__title:hover {
  color: var(--color-red-700);
}

.movie-card__meta {
  margin: 7px 0 0;
  color: var(--color-slate-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-card__desc {
  min-height: 48px;
  margin: 10px 0 0;
  color: var(--color-slate-700);
  font-size: 14px;
}

.movie-card__tags {
  margin-top: 12px;
}

.movie-card__tags span {
  background: #fee2e2;
  color: var(--color-red-700);
  border-color: #fecaca;
}

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

.category-card,
.category-overview-card {
  display: block;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #fff1f2);
  border: 1px solid rgba(248, 113, 113, 0.2);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-red-500);
}

.category-card__name {
  display: block;
  color: var(--color-slate-950);
  font-size: 20px;
  font-weight: 900;
}

.category-card__intro {
  display: block;
  min-height: 66px;
  margin-top: 8px;
  color: var(--color-slate-500);
  font-size: 14px;
  font-weight: 700;
}

.category-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.category-card__thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.rank-item__num {
  color: var(--color-red-700);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 64px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-item__content strong,
.rank-item__content small {
  display: block;
}

.rank-item__content strong {
  font-weight: 900;
}

.rank-item__content small {
  margin-top: 5px;
  color: var(--color-slate-500);
  font-weight: 700;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red-900), var(--color-red-600), var(--color-orange-500));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 28%), radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.16), transparent 22%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.pill-row {
  margin-top: 24px;
}

.pill-link {
  background: rgba(255, 255, 255, 0.15);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
}

.category-overview-card__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-overview-card__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
}

.category-overview-card p {
  color: var(--color-slate-500);
  font-weight: 700;
}

.category-overview-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-overview-card__links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fee2e2;
  color: var(--color-red-700);
  font-size: 13px;
  font-weight: 800;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(248, 113, 113, 0.16);
}

.rank-card--top {
  background: linear-gradient(135deg, #ffffff, #fff1f2);
  border-color: rgba(239, 68, 68, 0.36);
}

.rank-card__poster {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.rank-card__poster span {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-red-700), var(--color-orange-500));
  font-weight: 900;
}

.rank-card__body h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.rank-card__body p {
  color: var(--color-slate-700);
}

.detail-hero {
  min-height: 560px;
  padding: 0;
  background: var(--color-slate-950);
}

.detail-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.detail-hero__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fff;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info h1 {
  color: #fff;
}

.detail-one-line {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 700;
}

.section--player {
  padding: 56px 0 36px;
  background: #0f172a;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 34px 90px rgba(2, 6, 23, 0.42);
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.52));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-red-600), var(--color-orange-500));
  box-shadow: 0 16px 45px rgba(220, 38, 38, 0.5);
  font-size: 32px;
  padding-left: 5px;
}

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

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

.prose-card,
.side-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(248, 113, 113, 0.16);
}

.prose-card h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 900;
}

.prose-card p {
  margin: 0 0 24px;
  color: var(--color-slate-700);
  font-size: 17px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--color-slate-500);
  font-weight: 900;
}

.side-card dd {
  margin: 0;
  color: var(--color-slate-900);
  font-weight: 800;
}

.empty-state {
  display: none;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--color-white);
  color: var(--color-slate-500);
  font-weight: 900;
}

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

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-slate-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-slide__content,
  .split-layout,
  .detail-content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide__content {
    padding-bottom: 80px;
  }

  .hero-poster {
    display: none;
  }

  .stats-grid,
  .movie-grid,
  .category-grid,
  .rank-card-list,
  .movie-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 64px;
  }

  .brand__text small {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-slide__content {
    display: flex;
    align-items: center;
    padding-top: 58px;
  }

  .hero-slide p,
  .page-hero p:not(.eyebrow),
  .detail-one-line {
    font-size: 16px;
  }

  .hero-actions,
  .filter-panel__search,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-panel__selects,
  .stats-grid,
  .movie-grid,
  .mini-grid,
  .category-grid,
  .category-overview-grid,
  .rank-card-list,
  .movie-grid--related {
    grid-template-columns: 1fr;
  }

  .category-overview-card,
  .rank-card,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .category-overview-card__visual {
    grid-template-columns: repeat(4, 1fr);
  }

  .detail-poster {
    width: min(270px, 78vw);
  }

  .section {
    padding: 54px 0;
  }

  .player-shell {
    border-radius: 18px;
  }
}
