:root {
  color-scheme: light;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --green-600: #16a34a;
  --amber-500: #f59e0b;
  --blue-600: #2563eb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 22px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.14);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--emerald-50) 0%, var(--white) 45%, var(--white) 100%);
}

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, var(--emerald-700), var(--green-600));
  box-shadow: var(--shadow-md);
}

.site-nav {
  width: min(var(--container), calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

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

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

.nav-link,
.mobile-nav-link {
  color: var(--white);
  border-radius: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

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

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

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

.mobile-nav-link {
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--emerald-900);
}

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

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(1.05);
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(16, 185, 129, 0.32), transparent 30%),
    linear-gradient(90deg, rgba(6, 78, 59, 0.92), rgba(6, 95, 70, 0.72) 46%, rgba(0, 0, 0, 0.32));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 64px;
  color: var(--white);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--emerald-200);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  max-width: 760px;
}

.hero-text h1 span {
  color: var(--emerald-300);
}

.hero-summary {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.3vw, 24px);
  color: var(--emerald-100);
  line-height: 1.7;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
  color: var(--emerald-700);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.ghost-button.light {
  color: var(--emerald-700);
  background: rgba(255, 255, 255, 0.78);
}

.hero-cover {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

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

.hero-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: var(--emerald-700);
  background: rgba(255, 255, 255, 0.92);
  font-size: 26px;
  box-shadow: var(--shadow-lg);
}

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

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  width: 30px;
  background: var(--white);
}

.feature-strip,
.content-section,
.footer-inner,
.detail-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 42px 0 14px;
}

.feature-card,
.movie-card,
.filter-panel,
.rank-panel,
.detail-card,
.side-card,
.player-card,
.category-overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: 28px;
  text-align: center;
}

.feature-card span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-weight: 900;
}

.feature-card h2,
.rank-panel-heading h2,
.section-heading h2,
.page-hero h1,
.detail-card h1 {
  margin: 0;
  font-weight: 900;
  color: var(--gray-900);
}

.feature-card h2 {
  font-size: 22px;
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.content-section {
  padding: 58px 0;
}

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

.section-heading h2,
.rank-panel-heading h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.section-more {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-weight: 800;
}

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

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

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

.movie-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.movie-poster {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.poster-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.year-badge {
  top: 10px;
  right: 10px;
  background: var(--emerald-600);
}

.region-badge {
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
  left: 10px;
  bottom: 10px;
  min-width: 34px;
  background: var(--amber-500);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.84);
  border-radius: 50%;
  color: var(--emerald-700);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: var(--shadow-lg);
}

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

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

.movie-card-body h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.movie-card:hover h2 {
  color: var(--emerald-600);
}

.movie-card-body p {
  height: 48px;
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
}

.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-tags span,
.detail-tags span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-50);
  font-size: 12px;
  font-weight: 700;
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 13px;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.rank-panel {
  padding: 28px;
  align-self: start;
}

.rank-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.rank-row {
  display: grid;
  grid-template-columns: 34px 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: var(--gray-50);
  transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
  transform: translateX(3px);
  background: var(--emerald-50);
}

.rank-number {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--emerald-600);
  font-weight: 900;
}

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

.rank-title {
  min-width: 0;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-score {
  color: var(--amber-500);
  font-weight: 900;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.category-tile-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 78, 59, 0.9));
}

.category-tile-title,
.category-tile-desc {
  position: absolute;
  left: 18px;
  right: 18px;
  color: var(--white);
}

.category-tile-title {
  bottom: 50px;
  font-size: 24px;
  font-weight: 900;
}

.category-tile-desc {
  bottom: 18px;
  color: var(--emerald-100);
  font-size: 14px;
  line-height: 1.5;
}

.cta-band,
.page-hero {
  text-align: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--emerald-600), var(--green-600));
}

.cta-band {
  padding: 64px 18px;
}

.cta-band h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
}

.cta-band p,
.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--emerald-100);
  font-size: 18px;
  line-height: 1.8;
}

.page-hero {
  padding: 74px 18px;
}

.page-hero .eyebrow {
  color: var(--emerald-200);
}

.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.category-chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.category-chip:hover,
.category-chip.is-active {
  color: var(--white);
  background: var(--emerald-600);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.category-overview-cover {
  overflow: hidden;
  border-radius: 16px;
}

.category-overview-cover img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

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

.category-overview-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.inline-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-50);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.8fr) repeat(3, minmax(140px, 1fr)) auto;
  align-items: end;
  gap: 16px;
  padding: 20px;
  margin-bottom: 28px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.filter-count {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--emerald-700);
  background: var(--emerald-50);
  font-weight: 900;
  white-space: nowrap;
}

.empty-state {
  display: none;
  padding: 52px 20px;
  text-align: center;
  color: var(--gray-600);
  font-size: 20px;
}

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

.detail-shell {
  padding: 34px 0 10px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--gray-600);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--emerald-700);
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-card {
  overflow: hidden;
}

.player-wrap {
  position: relative;
  width: 100%;
  background: #000;
}

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

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 50%;
  color: var(--emerald-700);
  background: rgba(255, 255, 255, 0.94);
  font-size: 32px;
  box-shadow: var(--shadow-lg);
}

.player-layer-title {
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.detail-card {
  padding: 30px;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-badges a,
.detail-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-100);
  font-size: 13px;
  font-weight: 900;
}

.detail-card h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.16;
}

.detail-one-line {
  margin: 18px 0;
  color: var(--gray-700);
  font-size: 20px;
  line-height: 1.7;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 20px;
  color: var(--gray-600);
  font-weight: 800;
}

.detail-text {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.detail-text h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 24px;
}

.detail-text p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.9;
  font-size: 17px;
}

.highlight-box,
.review-box {
  padding: 24px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--emerald-50), #f0fdf4);
}

.review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--emerald-600);
  font-weight: 900;
}

.reviewer {
  font-weight: 900;
}

.star {
  color: var(--gray-300);
}

.star.is-filled {
  color: var(--amber-500);
}

.detail-side {
  display: grid;
  gap: 22px;
  align-self: start;
}

.side-card {
  overflow: hidden;
  padding: 24px;
}

.poster-side {
  padding: 0;
}

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

.info-side dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 14px;
  margin: 0;
}

.info-side dt {
  color: var(--gray-500);
  font-weight: 800;
}

.info-side dd {
  margin: 0;
  color: var(--gray-800);
  line-height: 1.6;
}

.related-section {
  padding-top: 28px;
}

.site-footer {
  margin-top: 40px;
  color: var(--white);
  background: linear-gradient(180deg, var(--emerald-900), #022c22);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding: 48px 0;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-inner h2 {
  margin: 0 0 16px;
  color: var(--emerald-300);
  font-size: 18px;
}

.footer-inner p,
.footer-inner a {
  color: var(--emerald-100);
  line-height: 1.8;
}

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

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

.footer-bottom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--emerald-200);
  text-align: center;
}

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

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

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

  .detail-side {
    grid-template-columns: 260px 1fr;
  }
}

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

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

  .hero-carousel {
    height: auto;
    min-height: 680px;
  }

  .hero-slide {
    position: absolute;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 70px 0 90px;
  }

  .hero-cover {
    width: min(260px, 72vw);
    transform: none;
  }

  .feature-strip,
  .movie-grid,
  .compact-grid,
  .large-grid,
  .category-grid,
  .category-overview-grid,
  .filter-panel,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

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

@media (max-width: 560px) {
  .site-nav {
    width: calc(100% - 24px);
  }

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

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-summary,
  .detail-one-line {
    font-size: 17px;
  }

  .content-section,
  .feature-strip,
  .detail-shell {
    width: calc(100% - 24px);
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-overview-cover img {
    height: 260px;
  }

  .detail-card {
    padding: 22px;
  }

  .player-button {
    width: 68px;
    height: 68px;
  }
}
