:root {
  --pink: #ec4899;
  --pink-dark: #be185d;
  --purple: #7c3aed;
  --purple-dark: #4c1d95;
  --orange: #f97316;
  --yellow: #facc15;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fdf2f8;
  --paper: #ffffff;
  --line: rgba(124, 58, 237, 0.14);
  --shadow: 0 18px 48px rgba(88, 28, 135, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.18), transparent 32rem),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 34rem),
    linear-gradient(135deg, #fff7fb 0%, #faf5ff 45%, #fff7ed 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(88, 28, 135, 0.96), rgba(219, 39, 119, 0.96), rgba(249, 115, 22, 0.96));
  box-shadow: 0 12px 36px rgba(88, 28, 135, 0.24);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--pink-dark);
  background: linear-gradient(135deg, #fff, #fef3c7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 10px 24px rgba(0, 0, 0, 0.18);
  font-size: 14px;
}

.logo-text {
  font-size: 21px;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-dark);
  background: #fff;
  transform: translateY(-1px);
}

.global-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.global-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 12px 10px 16px;
  color: #4b5563;
}

.global-search button {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.global-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.28);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav,
.mobile-category-links {
  display: grid;
  gap: 8px;
}

.mobile-panel .nav-link,
.mobile-category-links a {
  color: #fff;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
}

.page-main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

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

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(236, 72, 153, 0.25), transparent 24rem),
    linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.54) 48%, rgba(17, 24, 39, 0.12));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 670px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.95);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.32);
  font-weight: 800;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.04;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.75;
}

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

.btn-primary,
.btn-ghost,
.section-action,
.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  padding: 13px 24px;
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.35);
}

.btn-ghost {
  color: #fff;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.btn-primary:hover,
.btn-ghost:hover,
.section-action:hover,
.load-more-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 24px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #fff;
}

.quick-filter {
  margin: -38px auto 56px;
  position: relative;
  z-index: 10;
}

.quick-filter-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1.2fr repeat(4, auto);
  gap: 12px;
  align-items: center;
}

.quick-filter input,
.page-filter input,
.page-filter select {
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  background: #fff;
  outline: 0;
  padding: 13px 17px;
  min-width: 0;
}

.quick-filter a,
.quick-filter button,
.filter-chip {
  border: 0;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
}

.content-section {
  margin: 0 auto 64px;
}

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

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 24px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
}

.section-heading p {
  margin: 10px 0 0;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.8;
}

.section-action {
  color: var(--pink-dark);
  background: #fff;
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.12);
  padding: 11px 18px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(88, 28, 135, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 46px rgba(88, 28, 135, 0.2);
}

.poster-link {
  display: block;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.35), transparent 12rem),
    linear-gradient(135deg, #581c87, #111827);
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.movie-card:hover .poster-frame img {
  transform: scale(1.09);
  filter: saturate(1.08);
}

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(17, 24, 39, 0.42);
  transition: opacity 0.25s ease;
}

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

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 9px;
}

.poster-badge {
  left: 10px;
  top: 10px;
  background: rgba(236, 72, 153, 0.92);
}

.poster-year {
  right: 10px;
  bottom: 10px;
  background: rgba(17, 24, 39, 0.72);
}

.poster-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  opacity: 0;
  color: var(--pink);
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  padding: 16px;
}

.card-body h2,
.card-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h2 a:hover,
.card-body h3 a:hover {
  color: var(--pink);
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  max-width: 100%;
  padding: 6px 8px;
  border-radius: 999px;
  background: #f3e8ff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  color: #be185d;
  background: #fce7f3;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 12px;
}

.movie-card.featured {
  position: relative;
  min-height: 420px;
}

.movie-card.featured .poster-frame {
  aspect-ratio: auto;
  height: 420px;
}

.movie-card.featured .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: #fff;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0));
}

.movie-card.featured .card-body h2,
.movie-card.featured .card-body h3,
.movie-card.featured .card-body p {
  color: #fff;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.28), transparent 9rem),
    linear-gradient(135deg, #7c3aed, #ec4899 55%, #f97316);
  box-shadow: var(--shadow);
}

.category-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.category-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 9px 12px;
  font-weight: 800;
}

.page-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 38px auto 38px;
  padding: 42px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(250, 204, 21, 0.25), transparent 18rem),
    linear-gradient(135deg, #581c87 0%, #be185d 58%, #f97316 100%);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
}

.page-hero p {
  margin: 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800;
}

.page-filter {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(88, 28, 135, 0.11);
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(150px, 0.22fr));
  gap: 12px;
}

.filter-status {
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 800;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(88, 28, 135, 0.1);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-weight: 900;
}

.rank-main h2 {
  margin: 0 0 7px;
  font-size: 18px;
}

.rank-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rank-meta {
  color: #be185d;
  font-weight: 900;
  white-space: nowrap;
}

.detail-layout {
  width: min(1240px, calc(100% - 32px));
  margin: 38px auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 360px;
  gap: 28px;
}

.player-card,
.detail-side,
.story-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

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

.player-shell video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #050816;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(5, 8, 22, 0.82), rgba(88, 28, 135, 0.48)),
    var(--player-poster);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

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

.player-start {
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff;
  text-align: center;
}

.player-start strong {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--pink);
  background: #fff;
  font-size: 32px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.player-start span {
  font-size: 18px;
  font-weight: 900;
}

.player-message {
  display: none;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  color: #fff;
  background: rgba(190, 24, 93, 0.92);
  border-radius: 14px;
  padding: 12px 14px;
}

.player-message.is-visible {
  display: block;
}

.player-info {
  padding: 26px;
}

.player-info h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.player-info p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

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

.detail-meta-grid div {
  border-radius: 16px;
  background: #fdf2f8;
  padding: 13px;
}

.detail-meta-grid span {
  display: block;
  margin-bottom: 5px;
  color: #be185d;
  font-size: 12px;
  font-weight: 900;
}

.detail-meta-grid strong {
  display: block;
  color: #111827;
}

.detail-side {
  overflow: hidden;
  align-self: start;
}

.detail-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #581c87, #111827);
}

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

.detail-side-body {
  padding: 22px;
}

.detail-side-body h2 {
  margin: 0 0 14px;
}

.side-link {
  display: block;
  margin-top: 18px;
  color: #fff;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  padding: 12px 16px;
  font-weight: 900;
}

.story-card {
  padding: 28px;
  margin-top: 26px;
}

.story-card h2 {
  margin: 0 0 14px;
  color: #111827;
}

.story-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.95;
}

.story-card + .story-card {
  margin-top: 18px;
}

.search-results {
  min-height: 320px;
}

.empty-state {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(88, 28, 135, 0.09);
}

.site-footer {
  margin-top: 72px;
  color: #fff;
  background: linear-gradient(90deg, #3b0764, #831843, #3b0764);
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 36px;
}

.footer-brand p,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand p {
  max-width: 460px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.footer-links a:hover {
  color: #fbcfe8;
}

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

  .global-search {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .detail-side {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .logo-text {
    font-size: 18px;
  }

  .global-search {
    display: none;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-layer {
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.36));
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 74px;
  }

  .hero-control {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .quick-filter {
    margin: 18px auto 46px;
  }

  .quick-filter-inner,
  .page-filter {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    gap: 14px;
  }

  .movie-grid,
  .movie-grid.wide,
  .movie-grid.category-grid,
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 13px;
  }

  .card-body p {
    min-height: 0;
  }

  .rank-item {
    grid-template-columns: 48px 1fr;
  }

  .rank-meta {
    grid-column: 2;
  }

  .page-hero {
    padding: 28px;
  }

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

  .player-info,
  .story-card {
    padding: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .movie-grid.wide,
  .movie-grid.category-grid,
  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 34px;
  }

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

.category-overview-card {
  display: grid;
  gap: 12px;
}

.mini-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-posters a {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  aspect-ratio: 3 / 4;
}

.mini-posters img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
