:root {
  --pink: #db2777;
  --rose: #f43f5e;
  --orange: #fb923c;
  --amber: #fde68a;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f2;
  --panel: #ffffff;
  --line: rgba(244, 63, 94, 0.16);
  --shadow: 0 18px 50px rgba(190, 24, 93, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 42%, #ffe4e6 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #ec4899, #fb7185 50%, #fb923c);
  box-shadow: 0 14px 35px rgba(190, 24, 93, 0.22);
}

.nav-shell {
  max-width: 1200px;
  height: 66px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fef3c7;
  transform: translateY(-1px);
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input {
  width: 230px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 10px 88px 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.nav-search button {
  position: absolute;
  right: 4px;
  border: 0;
  border-radius: 999px;
  padding: 7px 15px;
  color: #fff;
  background: var(--pink);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.hero-carousel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(110deg, #be185d, #f43f5e 52%, #fb923c);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 24%), radial-gradient(circle at 80% 10%, rgba(254, 243, 199, 0.35), transparent 28%), linear-gradient(135deg, rgba(255,255,255,0.12) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.12) 75%, transparent 75%, transparent);
  background-size: 100% 100%, 100% 100%, 58px 58px;
}

.hero-track {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: 70px 18px 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(127, 29, 29, 0.64), rgba(190, 24, 93, 0.22)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(115%);
  opacity: 0.22;
  transform: scale(1.08);
}

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

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-heading span,
.section-title-row span,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fef3c7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.8;
}

.hero-actions,
.detail-tags,
.card-tags,
.hero-controls,
.rank-tabs,
.tag-filter-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.clear-btn,
.hero-search button,
.category-overview-head a,
.section-title-row a,
.section-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: var(--pink);
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
}

.primary-btn.light {
  color: var(--pink);
  background: #fff;
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.primary-btn:hover,
.ghost-btn:hover,
.clear-btn:hover,
.hero-search button:hover,
.category-overview-head a:hover,
.section-title-row a:hover,
.section-banner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(190, 24, 93, 0.22);
}

.hero-poster {
  display: block;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 28px 70px rgba(88, 28, 135, 0.32);
  transform: rotate(2deg);
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-controls button,
.hero-dot {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  background: #fef3c7;
}

.featured-overlap {
  max-width: 1200px;
  margin: -70px auto 0;
  padding: 0 18px;
  position: relative;
  z-index: 3;
}

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 18px;
}

.section-heading,
.section-title-row {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.section-heading span,
.section-title-row span,
.detail-kicker,
.page-hero span {
  color: var(--pink);
}

.section-heading h2,
.section-title-row h2,
.ranking-card h2,
.content-card h2,
.side-rank-card h2,
.search-meta h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.section-title-row a,
.category-overview-head a,
.section-banner a {
  color: var(--pink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(190, 24, 93, 0.12);
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(190, 24, 93, 0.1);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fecdd3, #fed7aa);
}

.movie-card:not(.movie-card-list) .poster-wrap {
  aspect-ratio: 4 / 3;
}

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

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

.card-category,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.rank-badge {
  left: 12px;
  right: auto;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.card-body {
  padding: 18px;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.card-title-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.score,
.detail-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  font-weight: 900;
}

.card-desc {
  min-height: 48px;
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9ca3af;
  font-size: 13px;
}

.card-tags span,
.tag-pill,
.tag-filter-row button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--pink);
  background: #ffe4e6;
  font-size: 12px;
  font-weight: 700;
}

.card-tags {
  margin-top: 12px;
}

.movie-card-list .movie-card-link {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.movie-card-list .poster-wrap {
  height: 100%;
  min-height: 180px;
}

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

.stats-grid div {
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(190, 24, 93, 0.1);
}

.stats-grid strong {
  display: block;
  color: var(--pink);
  font-size: 32px;
}

.stats-grid span {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ranking-card,
.side-rank-card,
.detail-info-card,
.content-card,
.filter-panel,
.category-overview-block,
.player-card,
.side-cover-card,
.search-meta {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.ranking-card,
.side-rank-card,
.filter-panel,
.search-meta {
  padding: 24px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-num {
  color: var(--pink);
  font-size: 20px;
  font-weight: 900;
}

.rank-row img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

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

.rank-copy strong {
  overflow: hidden;
  color: var(--ink);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.soft-band {
  background: linear-gradient(90deg, rgba(255, 237, 213, 0.9), rgba(255, 228, 230, 0.96));
}

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

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

.category-tile {
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(190, 24, 93, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.category-preview img {
  height: 76px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-tile h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.category-tile p,
.category-overview-head p,
.page-hero p,
.content-card p,
.detail-one-line,
.search-meta p {
  color: var(--muted);
  line-height: 1.8;
}

.category-tile span {
  color: var(--pink);
  font-weight: 800;
}

.section-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  border-radius: 28px;
  padding: 26px 30px;
  color: #fff;
  box-shadow: var(--shadow);
}

.section-banner.pink {
  background: linear-gradient(90deg, #ec4899, #f43f5e);
}

.section-banner.orange {
  background: linear-gradient(90deg, #f97316, #f59e0b);
}

.section-banner.rose {
  background: linear-gradient(90deg, #fb7185, #ec4899);
}

.section-banner.red {
  background: linear-gradient(90deg, #ef4444, #f43f5e);
}

.section-banner span {
  color: #fef3c7;
  font-weight: 800;
}

.section-banner h2 {
  margin: 6px 0 0;
  font-size: 30px;
}

.cta-band,
.page-hero {
  padding: 70px 18px;
  color: #fff;
  text-align: center;
  background: linear-gradient(100deg, #be185d, #f43f5e 52%, #fb923c);
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 15% 20%, #fff 0, transparent 24%), radial-gradient(circle at 85% 40%, #fef3c7 0, transparent 26%);
}

.cta-band > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.page-hero h1 {
  margin: 8px auto 14px;
  max-width: 880px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
}

.cta-band p,
.page-hero p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.category-overview-list {
  display: grid;
  gap: 30px;
}

.category-overview-block {
  padding: 24px;
}

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

.category-overview-head span {
  color: var(--pink);
  font-weight: 800;
}

.category-overview-head h2 {
  margin: 4px 0;
  font-size: 30px;
}

.filter-panel {
  margin-bottom: 24px;
}

.filter-row input,
.filter-row select,
.hero-search input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  outline: 0;
  background: #fff;
}

.filter-row input {
  flex: 1 1 280px;
}

.filter-row select {
  flex: 0 1 160px;
}

.clear-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.tag-filter-row {
  margin-top: 16px;
}

.tag-filter-row button {
  border: 0;
  cursor: pointer;
}

.tag-filter-row button.active {
  color: #fff;
  background: var(--pink);
}

.filter-count {
  margin: 16px 0 0;
  color: var(--muted);
}

.rank-tabs {
  margin-bottom: 22px;
}

.rank-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--pink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.rank-tabs button.active {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.rank-panel {
  display: none;
}

.rank-panel.active {
  display: block;
}

.hero-search {
  max-width: 760px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.hero-search input {
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
}

.hero-search button {
  color: #fff;
  background: var(--pink);
}

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

.history-chips a,
.history-chips button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--pink);
  background: #ffe4e6;
  cursor: pointer;
}

.detail-page {
  background: linear-gradient(135deg, #fff1f2, #fff7ed 45%, #ffe4e6);
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--pink);
  font-weight: 700;
}

.detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 18px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 24px;
}

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

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
}

.site-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  cursor: pointer;
}

.player-start span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  box-shadow: 0 18px 50px rgba(244, 63, 94, 0.4);
  font-size: 32px;
}

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

.player-status {
  margin: 14px 0 0;
  color: var(--muted);
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.detail-title-row h1 {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
}

.detail-score {
  min-width: 62px;
  height: 54px;
  font-size: 22px;
}

.detail-one-line {
  font-size: 18px;
}

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

.detail-meta-grid div {
  border-radius: 18px;
  padding: 14px;
  background: #fff1f2;
}

.detail-meta-grid span,
.detail-meta-grid strong {
  display: block;
}

.detail-meta-grid span {
  color: var(--muted);
  font-size: 13px;
}

.detail-meta-grid strong {
  margin-top: 4px;
  color: var(--ink);
}

.tag-pill:hover {
  color: #fff;
  background: var(--pink);
}

.content-card p {
  white-space: pre-line;
  font-size: 17px;
}

.review-card {
  border-left: 6px solid var(--pink);
  background: linear-gradient(90deg, #fff, #fff1f2);
}

.side-cover-card {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.side-cover-card img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-related {
  padding-top: 20px;
}

.site-footer {
  color: #fff;
  background: linear-gradient(90deg, #1f2937, #111827 55%, #000);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 18px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}

.footer-grid p,
.footer-grid a,
.copyright {
  color: #d1d5db;
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: #f9a8d4;
}

.copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

[hidden] {
  display: none !important;
}

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0 0 14px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-carousel,
  .hero-track {
    min-height: 720px;
  }

  .hero-slide {
    padding: 42px 18px 100px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .hero-copy p {
    font-size: 17px;
  }

  .hero-poster {
    max-width: 260px;
    margin: 0 auto;
    transform: none;
  }

  .movie-grid.two,
  .movie-grid.three,
  .movie-grid.four,
  .category-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-list .movie-card-link {
    grid-template-columns: 1fr;
  }

  .section-title-row,
  .section-banner,
  .category-overview-head,
  .detail-title-row {
    align-items: start;
    flex-direction: column;
  }

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

  .hero-search {
    grid-template-columns: 1fr;
  }

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