:root {
  color-scheme: dark;
  --night-950: #0a1929;
  --night-925: #0d2136;
  --night-900: #102a43;
  --night-850: #1b3654;
  --night-800: #243b53;
  --night-700: #334e68;
  --night-500: #627d98;
  --night-400: #829ab1;
  --night-300: #9fb3c8;
  --night-200: #bcccdc;
  --night-100: #d9e2ec;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --white: #ffffff;
  --shadow-night: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 36px rgba(251, 191, 36, 0.28);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--night-950);
  color: var(--night-100);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 158, 11, 0.12), transparent 34%),
    radial-gradient(circle at 85% 0%, rgba(59, 130, 246, 0.08), transparent 32%),
    linear-gradient(180deg, #0a1929 0%, #102a43 48%, #0a1929 100%);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section-spacing {
  padding: 72px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(10, 25, 41, 0.25), rgba(16, 42, 67, 0.85));
}

.section-panel {
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.92), rgba(10, 25, 41, 0.92));
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header:hover {
  background: rgba(10, 25, 41, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  color: var(--night-950);
  box-shadow: var(--shadow-glow);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

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

.brand-name {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(90deg, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--night-400);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--night-200);
  font-size: 15px;
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-400);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(130, 154, 177, 0.28);
  border-radius: 12px;
  background: rgba(36, 59, 83, 0.6);
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--night-100);
}

.mobile-nav {
  display: none;
  padding: 12px 20px 18px;
  background: rgba(10, 25, 41, 0.98);
  border-top: 1px solid rgba(130, 154, 177, 0.16);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--night-200);
  background: rgba(36, 59, 83, 0.45);
}

.mobile-link.is-active {
  color: var(--amber-400);
}

.hero-carousel {
  position: relative;
  height: min(82vh, 820px);
  min-height: 620px;
  overflow: hidden;
  background: var(--night-950);
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

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

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--night-950) 0%, rgba(10, 25, 41, 0.7) 48%, rgba(10, 25, 41, 0.18) 100%),
    linear-gradient(90deg, rgba(10, 25, 41, 0.92), rgba(10, 25, 41, 0.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 92px;
}

.hero-copy {
  width: min(760px, 100%);
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--night-200);
  font-size: clamp(16px, 1.7vw, 21px);
}

.hero-movie-title {
  color: var(--amber-400) !important;
  font-weight: 700;
}

.hero-meta,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--night-300);
  font-size: 14px;
}

.hero-meta {
  margin-top: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--amber-500);
  color: var(--night-950);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--amber-400);
}

.btn-ghost {
  color: var(--night-100);
  border: 1px solid rgba(217, 226, 236, 0.24);
  background: rgba(36, 59, 83, 0.55);
  backdrop-filter: blur(14px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 42px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--amber-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.section-heading-row.compact {
  margin-bottom: 20px;
}

.section-heading-row h2,
.article-card h2,
.side-card h2 {
  margin: 0;
  color: var(--night-100);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.article-card h2,
.side-card h2 {
  font-size: 24px;
}

.text-link {
  color: var(--amber-400);
  font-weight: 700;
}

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

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

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

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

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

.movie-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(16, 42, 67, 0.62);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card a:hover {
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: var(--shadow-night);
  transform: translateY(-6px);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--night-900);
}

.movie-card--large .movie-poster {
  aspect-ratio: 16 / 9;
}

.movie-card--compact .movie-card-body p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-card a:hover .movie-poster img {
  filter: brightness(0.82);
  transform: scale(1.08);
}

.score-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.score-badge {
  right: 12px;
  background: rgba(245, 158, 11, 0.94);
  color: var(--night-950);
}

.rank-badge {
  left: 12px;
  background: rgba(10, 25, 41, 0.82);
  color: var(--amber-400);
  border: 1px solid rgba(251, 191, 36, 0.32);
}

.play-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  color: var(--night-950);
  font-size: 22px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-card-body h3 {
  margin: 0;
  color: var(--night-100);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body p {
  margin: 0;
  color: var(--night-400);
  font-size: 14px;
}

.genre-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.genre-row span,
.tag-cloud span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 10px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber-400);
  font-size: 12px;
  font-weight: 700;
}

.hero-tags {
  margin-bottom: 16px;
}

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

.category-tile {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: var(--radius-lg);
  background: var(--night-900);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.category-tile-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 25, 41, 0.92), rgba(10, 25, 41, 0.22));
}

.category-tile-body {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 6px;
}

.category-tile-body strong {
  color: var(--white);
  font-size: 22px;
}

.category-tile-body small {
  color: var(--night-300);
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 54px 128px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: var(--radius-md);
  background: rgba(16, 42, 67, 0.58);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rank-item a:hover {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(36, 59, 83, 0.68);
  transform: translateX(4px);
}

.rank-number {
  color: var(--amber-400);
  text-align: center;
}

.rank-number strong {
  font-size: 24px;
}

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

.rank-content h3 {
  margin: 0;
  color: var(--night-100);
  font-size: 18px;
}

.rank-content p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 8px;
  color: var(--night-400);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  padding: 94px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(245, 158, 11, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(10, 25, 41, 0.95), rgba(16, 42, 67, 0.95));
}

.small-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--night-300);
  font-size: 18px;
}

.search-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(16, 42, 67, 0.58);
}

.search-panel.slim {
  margin-bottom: 22px;
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--night-300);
  font-size: 14px;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(130, 154, 177, 0.22);
  border-radius: 14px;
  outline: none;
  background: rgba(10, 25, 41, 0.78);
  color: var(--night-100);
}

.search-box input:focus {
  border-color: rgba(245, 158, 11, 0.62);
  box-shadow: var(--shadow-glow);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border-color: rgba(130, 154, 177, 0.22);
  background: rgba(36, 59, 83, 0.66);
  color: var(--night-200);
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.16);
  color: var(--amber-400);
}

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

.detail-main {
  padding-top: 0;
}

.detail-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding-top: 96px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.02);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 36px;
  color: var(--night-300);
  font-size: 14px;
}

.breadcrumb a:hover,
.side-card a:hover {
  color: var(--amber-400);
}

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

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-night);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info {
  max-width: 820px;
  padding-bottom: 10px;
}

.detail-info h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.detail-one-line {
  margin: 22px 0;
  color: var(--night-200);
  font-size: 20px;
}

.detail-meta,
.detail-genres {
  margin: 18px 0;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: var(--shadow-night);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}

.player-trigger:hover {
  background: rgba(0, 0, 0, 0.32);
}

.player-trigger.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.player-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--night-950);
  font-size: 32px;
  box-shadow: var(--shadow-glow);
}

.player-message {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(10, 25, 41, 0.88);
  color: var(--night-100);
  text-align: center;
}

.article-card,
.side-card {
  padding: 24px;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(16, 42, 67, 0.64);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.article-card + .article-card,
.side-card + .side-card {
  margin-top: 18px;
}

.article-card p {
  margin: 14px 0 0;
  color: var(--night-300);
  font-size: 17px;
}

.side-card dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(130, 154, 177, 0.13);
  padding-bottom: 12px;
}

.side-card dt {
  color: var(--night-400);
}

.side-card dd {
  margin: 0;
  color: var(--night-100);
}

.site-footer {
  padding: 58px 0 24px;
  border-top: 1px solid rgba(130, 154, 177, 0.14);
  background: rgba(10, 25, 41, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 480px;
  color: var(--night-400);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--night-200);
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(130, 154, 177, 0.12);
  color: var(--night-500);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--night-950);
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
}

.back-to-top.is-visible {
  display: block;
}

[hidden],
.is-hidden,
[data-search-item].is-hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .movie-grid,
  .search-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .two-column-layout,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .hero-arrow {
    display: none;
  }

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

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

  .detail-cover {
    width: min(260px, 74vw);
  }

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

@media (max-width: 640px) {
  .container-custom {
    width: min(100% - 24px, 1280px);
  }

  .section-spacing {
    padding: 48px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

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

  .hero-content {
    padding-bottom: 82px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.035em;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .movie-grid,
  .movie-grid-featured,
  .search-grid,
  .compact-grid,
  .spotlight-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-item a {
    grid-template-columns: 42px 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rank-item img {
    width: 92px;
    height: 72px;
  }

  .rank-content p,
  .rank-content .genre-row {
    display: none;
  }

  .detail-hero {
    min-height: 760px;
  }

  .detail-content-grid {
    gap: 18px;
  }

  .article-card,
  .side-card {
    padding: 18px;
  }
}
