@import url("https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@500;600;700;900&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");

:root {
  --amber-950: #451a03;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-300: #fcd34d;
  --amber-200: #fde68a;
  --amber-100: #fef3c7;
  --amber-50: #fffbeb;
  --ink: #1f1308;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(69, 26, 3, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, var(--amber-50) 0%, #fffaf0 42%, #ffffff 100%);
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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: rgba(69, 26, 3, 0.94);
  border-bottom: 1px solid rgba(252, 211, 77, 0.18);
  box-shadow: 0 14px 36px rgba(69, 26, 3, 0.22);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 0 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-100);
  font-weight: 900;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-500), #ef4444);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.3);
}

.logo-text {
  font-family: "Ma Shan Zheng", "Noto Serif SC", serif;
  font-size: 27px;
  letter-spacing: 0.03em;
}

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

.nav-link {
  color: var(--amber-100);
  padding: 10px 15px;
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(146, 64, 14, 0.72);
  transform: translateY(-1px);
}

.top-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  min-width: 260px;
  border: 1px solid rgba(252, 211, 77, 0.25);
  background: rgba(146, 64, 14, 0.48);
  border-radius: 14px;
  overflow: hidden;
}

.top-search input,
.mobile-search input,
.filter-search,
.filter-select {
  width: 100%;
  border: 0;
  outline: 0;
}

.top-search input {
  color: var(--amber-100);
  background: transparent;
  padding: 11px 13px;
}

.top-search input::placeholder {
  color: rgba(253, 230, 138, 0.8);
}

.top-search button {
  width: 46px;
  border: 0;
  color: var(--amber-200);
  background: transparent;
  cursor: pointer;
  font-size: 25px;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--amber-100);
  background: rgba(146, 64, 14, 0.48);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(252, 211, 77, 0.15);
  padding: 14px 20px 20px;
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
  max-width: 1240px;
  margin: 0 auto 14px;
}

.mobile-nav-link {
  color: var(--amber-100);
  border-radius: 12px;
  padding: 12px;
  background: rgba(146, 64, 14, 0.34);
}

.mobile-search {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.mobile-search input {
  color: var(--amber-100);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(146, 64, 14, 0.5);
}

.mobile-search button,
.primary-button,
.secondary-button {
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-search button,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-600), #ea580c);
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.mobile-search button {
  padding: 0 18px;
}

.secondary-button {
  color: var(--amber-100);
  background: rgba(69, 26, 3, 0.42);
  border: 1px solid rgba(253, 230, 138, 0.24);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 690px;
  color: #ffffff;
  background: var(--amber-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  filter: brightness(0.42) saturate(1.08);
}

.hero-slide.is-active .hero-bg {
  animation: slowZoom 8s ease-out both;
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(245, 158, 11, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(69, 26, 3, 0.96), rgba(69, 26, 3, 0.58) 44%, rgba(69, 26, 3, 0.15) 100%),
    linear-gradient(0deg, var(--amber-950), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 690px;
  margin: 0 auto;
  padding: 88px 20px 72px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 48px;
}

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

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.92);
  box-shadow: 0 10px 28px rgba(217, 119, 6, 0.2);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero h1,
.page-hero h1,
.detail-title h1 {
  margin: 18px 0 18px;
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(38px, 6vw, 72px);
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.hero-movie-title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--amber-100);
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
}

.hero-desc {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--amber-100);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.85;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-list span,
.detail-tags span {
  color: var(--amber-100);
  background: rgba(146, 64, 14, 0.72);
  border: 1px solid rgba(253, 230, 138, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 14px;
  backdrop-filter: blur(8px);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero-side {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(253, 230, 138, 0.18);
  background: rgba(69, 26, 3, 0.4);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-side h2 {
  margin: 0 0 16px;
  color: var(--amber-100);
  font-size: 20px;
}

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

.hero-mini-list a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 8px;
  background: rgba(146, 64, 14, 0.32);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini-list a:hover {
  background: rgba(146, 64, 14, 0.62);
  transform: translateX(3px);
}

.hero-mini-list img {
  width: 52px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-mini-list strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}

.hero-mini-list em {
  display: block;
  margin-top: 5px;
  color: var(--amber-200);
  font-size: 12px;
  font-style: normal;
}

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

.hero-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(253, 230, 138, 0.38);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--amber-300);
}

.section,
.page-hero,
.detail-section,
.player-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 20px;
}

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

.section-head h2,
.page-hero h1,
.detail-section h2,
.player-info h2 {
  margin: 0;
  color: var(--amber-900);
  font-family: "Noto Serif SC", serif;
  font-weight: 900;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section-head p,
.page-hero p,
.category-intro,
.detail-section p,
.player-info p {
  color: var(--amber-800);
  line-height: 1.8;
}

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

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

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

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

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(146, 64, 14, 0.12);
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(120, 53, 15, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 26px 54px rgba(120, 53, 15, 0.18);
}

.poster-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-200), var(--amber-600));
}

.movie-grid.compact .poster-wrap {
  height: 220px;
}

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

.card-link:hover img {
  transform: scale(1.09);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(69, 26, 3, 0.76), transparent 54%);
  opacity: 0.86;
}

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.95);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.9);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

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

.card-body {
  padding: 18px;
}

.card-body h2 {
  margin: 0 0 8px;
  color: var(--amber-950);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.card-meta {
  margin: 0 0 10px;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 700;
}

.card-summary {
  margin: 0;
  color: #74512d;
  font-size: 14px;
  line-height: 1.65;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #ffffff;
  border-radius: 24px;
  background: var(--amber-900);
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48);
  transition: transform 0.45s ease;
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(69, 26, 3, 0.95), rgba(69, 26, 3, 0.1));
}

.category-card div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.category-card span {
  color: var(--amber-200);
  font-size: 13px;
  font-weight: 800;
}

.category-card h2 {
  margin: 8px 0 8px;
  font-size: 25px;
  font-family: "Noto Serif SC", serif;
}

.category-card p {
  margin: 0;
  color: var(--amber-100);
  font-size: 14px;
  line-height: 1.6;
}

.rank-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.rank-row {
  display: grid;
  grid-template-columns: 54px 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px;
  background: #ffffff;
  border: 1px solid rgba(146, 64, 14, 0.11);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 36px rgba(120, 53, 15, 0.14);
}

.rank-number {
  color: var(--amber-600);
  font-size: 24px;
  font-weight: 900;
  font-family: "Noto Serif SC", serif;
}

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

.rank-main strong {
  display: block;
  color: var(--amber-950);
  font-size: 16px;
}

.rank-main em {
  display: block;
  margin-top: 6px;
  color: var(--amber-700);
  font-size: 13px;
  font-style: normal;
}

.rank-score {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-600), #ef4444);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.page-hero {
  padding-top: 52px;
  padding-bottom: 42px;
}

.page-hero-inner {
  overflow: hidden;
  border-radius: 30px;
  padding: 42px;
  color: var(--amber-100);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.35), transparent 28%),
    linear-gradient(135deg, var(--amber-950), var(--amber-800));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #ffffff;
  font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
  max-width: 820px;
  color: var(--amber-100);
  font-size: 17px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(146, 64, 14, 0.13);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.filter-search,
.filter-select {
  min-height: 46px;
  color: var(--amber-950);
  border: 1px solid rgba(146, 64, 14, 0.16);
  background: var(--amber-50);
  border-radius: 14px;
  padding: 0 14px;
}

.empty-state {
  display: none;
  padding: 34px;
  text-align: center;
  color: var(--amber-800);
  background: #ffffff;
  border-radius: 20px;
}

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

.player-hero {
  background:
    radial-gradient(circle at 20% 12%, rgba(245, 158, 11, 0.38), transparent 28%),
    linear-gradient(135deg, var(--amber-950), #140a04);
}

.player-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 30px;
  color: #ffffff;
}

.player-box {
  overflow: hidden;
  border: 1px solid rgba(253, 230, 138, 0.18);
  background: #000000;
  border-radius: 26px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.36);
}

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

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: cover;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
  cursor: pointer;
}

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

.player-overlay span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.94);
  font-size: 38px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.player-overlay:hover span {
  transform: scale(1.08);
}

.player-info {
  align-self: center;
}

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

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

.detail-title h1 {
  color: #ffffff;
  font-size: clamp(34px, 5vw, 56px);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.detail-meta span {
  color: var(--amber-100);
  background: rgba(146, 64, 14, 0.44);
  border-radius: 999px;
  padding: 8px 12px;
}

.detail-lead {
  color: var(--amber-100);
  line-height: 1.85;
  font-size: 17px;
}

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

.content-card {
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(146, 64, 14, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(120, 53, 15, 0.08);
}

.content-card + .content-card {
  margin-top: 22px;
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--amber-900);
  font-size: 28px;
  font-family: "Noto Serif SC", serif;
}

.content-card p {
  margin: 0;
  color: #5f3f21;
  line-height: 1.9;
  font-size: 16px;
}

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

.mini-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(120, 53, 15, 0.08);
}

.mini-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.mini-card span {
  display: block;
  padding: 12px;
  color: var(--amber-950);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.site-footer {
  margin-top: 30px;
  color: var(--amber-200);
  background: linear-gradient(135deg, var(--amber-950), #2b1003);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: "Ma Shan Zheng", "Noto Serif SC", serif;
  font-size: 30px;
}

.site-footer p {
  max-width: 430px;
  margin: 0;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: var(--amber-200);
  font-size: 14px;
}

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

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 20px 28px;
  border-top: 1px solid rgba(253, 230, 138, 0.15);
  color: rgba(253, 230, 138, 0.76);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-side {
    align-self: auto;
  }

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

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

  .player-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .desktop-nav,
  .top-search {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-shell {
    min-height: 64px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 62px;
    padding-bottom: 92px;
  }

  .hero-side {
    padding: 18px;
  }

  .section-head {
    display: block;
  }

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

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

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

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

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

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

@media (max-width: 560px) {
  .logo-text {
    font-size: 23px;
  }

  .hero,
  .hero-content {
    min-height: 820px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-side {
    display: none;
  }

  .movie-grid,
  .movie-grid.compact,
  .category-strip,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .poster-wrap,
  .movie-grid.compact .poster-wrap {
    height: 280px;
  }

  .page-hero-inner,
  .content-card {
    padding: 24px;
    border-radius: 22px;
  }

  .rank-row {
    grid-template-columns: 38px 54px 1fr;
  }

  .rank-score {
    grid-column: 3;
    justify-self: start;
  }
}
