
:root {
  --bg: #06070a;
  --bg-2: #0d1117;
  --panel: rgba(17, 24, 39, 0.86);
  --panel-2: rgba(24, 31, 44, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f4f6;
  --muted: #a7b0bf;
  --accent: #f59e0b;
  --accent-2: #fb7185;
  --accent-3: #38bdf8;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1280px;
  --speed: 220ms;
  --bg-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.11), transparent 32%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 24%),
    linear-gradient(180deg, #020203 0%, #0a0b10 18%, #050608 100%);
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--bg-pattern);
  opacity: 0.25;
  mix-blend-mode: screen;
  z-index: -1;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 10, 15, 0.78);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(245,158,11,0.96), rgba(251,113,133,0.86)),
    linear-gradient(180deg, #fff, #fff);
  color: #111827;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.26);
  font-weight: 900;
}

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

.brand-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #d6d9e0;
  font-weight: 600;
  transition: color var(--speed), transform var(--speed);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 280px;
}

.search-mini input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.search-mini input::placeholder {
  color: #8f98a8;
}

.icon-btn,
.btn {
  border: 0;
  cursor: pointer;
  transition: transform var(--speed), background var(--speed), border-color var(--speed), box-shadow var(--speed), color var(--speed);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid var(--line);
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fff;
}

.menu-btn {
  display: none;
}

.hero-section {
  padding: 28px 0 4px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
  box-shadow: var(--shadow);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 26%),
    radial-gradient(circle at top right, rgba(251,113,133,0.18), transparent 30%);
  pointer-events: none;
}

.hero-carousel {
  position: relative;
  min-height: 610px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  padding: 54px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-kicker span,
.hero-pills span,
.chip,
.search-pill,
.meta-pill,
.badge,
.filter-pill,
.poster-year,
.poster-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #e7edf8;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-kicker span {
  padding: 7px 12px;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy p {
  color: #d6dae4;
  margin: 18px 0 0;
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-pills span {
  padding: 8px 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: #111827;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(245, 158, 11, 0.34);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #f4f7fb;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 158, 11, 0.35);
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 48px rgba(0,0,0,0.48);
}

.hero-poster-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.hero-poster-stats div,
.panel-stat,
.info-box,
.stat-box {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.hero-poster-stats div {
  padding: 14px;
  text-align: center;
}

.hero-poster-stats strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
}

.hero-poster-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

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

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

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

.section {
  padding: 30px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.section-head h2,
.section-head h1 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-link {
  color: var(--accent);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: grid;
  gap: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 14px 36px rgba(0,0,0,0.26);
  transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
}

.movie-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.34);
  box-shadow: 0 18px 44px rgba(0,0,0,0.38);
}

.poster-shell {
  position: relative;
  min-height: 255px;
  padding: 18px;
  background: linear-gradient(135deg, var(--tone1), var(--tone2));
  overflow: hidden;
}

.poster-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.18), transparent 18%),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.48));
  pointer-events: none;
}

.poster-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}

.poster-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
}

.poster-year,
.poster-category {
  padding: 6px 10px;
  background: rgba(0,0,0,0.18);
}

.poster-title {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  font-size: 1.46rem;
  font-weight: 800;
  line-height: 1.16;
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.poster-sub {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}

.poster-tags {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: rgba(255,255,255,0.86);
  font-size: 0.84rem;
  line-height: 1.55;
}

.rank-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 800;
  color: #fff;
}

.movie-card-body {
  padding: 16px 16px 18px;
}

.movie-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.movie-card-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  min-height: 3.2em;
}

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #cfd5e1;
  font-size: 0.84rem;
}

.panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-pad {
  padding: 22px;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.05);
}

.field input,
.field select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.field input::placeholder {
  color: #8f98a8;
}

.filter-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  margin-bottom: 18px;
}

.filter-pill {
  padding: 10px 14px;
}

.badge {
  padding: 8px 12px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(135deg, rgba(24, 31, 44, 0.92), rgba(11, 15, 23, 0.96));
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.2), transparent 28%),
    radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.14), transparent 26%);
  pointer-events: none;
}

.category-card h3 {
  position: relative;
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.category-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.category-count {
  position: relative;
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: #ffd38d;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 20px;
  align-items: start;
}

.detail-hero {
  padding: 22px;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 580px;
  background:
    linear-gradient(135deg, var(--tone1), var(--tone2));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.detail-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 20%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.16), transparent 20%),
    radial-gradient(circle at 50% 110%, rgba(0,0,0,0.22), transparent 45%);
}

.detail-poster-inner {
  position: relative;
  z-index: 2;
  padding: 26px;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail-poster-title {
  margin-top: 210px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.detail-poster-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.detail-poster-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-panel {
  padding: 24px;
}

.detail-panel h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.detail-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-description {
  margin-top: 18px;
  color: #d8deea;
  font-size: 1rem;
  line-height: 1.8;
}

.detail-summary,
.detail-review {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.detail-summary h3,
.detail-review h3,
.detail-related h3,
.detail-player h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.detail-player {
  margin-top: 22px;
  padding: 22px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.play-source {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.play-source a {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #e8edf7;
  font-size: 0.88rem;
}

.detail-related {
  margin-top: 22px;
  padding: 22px;
}

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

.related-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: transform var(--speed), border-color var(--speed);
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.26);
}

.related-card .poster-shell {
  min-height: 170px;
  padding: 12px;
}

.related-card .poster-title {
  margin-top: 34px;
  font-size: 1rem;
}

.related-card .movie-card-body {
  padding: 12px;
}

.footer {
  margin-top: 40px;
  padding: 34px 0 56px;
  color: var(--muted);
}

.footer-inner {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}

.footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.footer a {
  color: #d8deea;
}

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

.footer-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: #111827;
  border: 0;
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.25);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--speed), transform var(--speed);
  z-index: 80;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.empty-state {
  padding: 42px 18px;
  text-align: center;
  color: var(--muted);
}

.mobile-panel {
  display: none;
}

@media (max-width: 1200px) {
  .grid.cards-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .detail-layout,
  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 840px;
  }

  .hero-slide {
    padding: 34px;
    gap: 18px;
  }

  .hero-poster {
    justify-self: start;
    width: min(100%, 380px);
  }

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

@media (max-width: 900px) {
  .nav-links,
  .search-mini,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease;
    border-top: 1px solid transparent;
  }

  .mobile-panel.open {
    max-height: 420px;
    border-top-color: var(--line);
  }

  .mobile-panel-inner {
    padding: 16px 0 18px;
    display: grid;
    gap: 12px;
  }

  .mobile-panel a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #e1e6f0;
    font-weight: 600;
  }

  .mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
  }

  .mobile-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
  }

  .grid.cards-6,
  .grid.cards-4,
  .grid.cards-3,
  .grid.cards-2,
  .category-grid,
  .related-grid,
  .footer-grid,
  .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-carousel {
    min-height: 980px;
  }

  .hero-slide {
    padding: 24px;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-poster {
    width: min(100%, 100%);
  }

  .detail-poster-inner {
    min-height: 430px;
  }

  .detail-poster-title {
    margin-top: 120px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .site-nav {
    min-height: 68px;
  }

  .brand-text span {
    display: none;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-shell {
    border-radius: 24px;
  }

  .hero-carousel {
    min-height: 840px;
  }

  .hero-slide {
    padding: 18px;
  }

  .hero-copy h2 {
    font-size: 2rem;
  }

  .hero-poster-stats,
  .grid.cards-6,
  .grid.cards-4,
  .grid.cards-3,
  .grid.cards-2,
  .category-grid,
  .related-grid,
  .footer-grid,
  .filter-row {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    min-height: 500px;
  }

  .detail-poster-inner {
    min-height: 500px;
    padding: 18px;
  }

  .detail-poster-title {
    margin-top: 140px;
    font-size: 1.95rem;
  }

  .poster-shell {
    min-height: 220px;
  }

  .movie-card-body p {
    min-height: auto;
  }

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

  .filter-row {
    gap: 10px;
  }
}
