:root {
  color-scheme: light;
  --amber: #d97706;
  --amber-dark: #92400e;
  --amber-soft: #fff7ed;
  --orange-soft: #ffedd5;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #ffffff;
  --shadow: 0 24px 70px rgba(146, 64, 14, 0.16);
  --radius: 22px;
  --max: 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", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #fff7ed 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.88);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.28);
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(135deg, #b45309, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.dropdown-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: #374151;
  background: transparent;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-button:hover {
  color: var(--amber);
  background: #fff7ed;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 700;
}

.dropdown-link:hover {
  color: var(--amber);
  background: #fff7ed;
}

.top-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.top-search input,
.mobile-search input,
.search-panel input,
.search-panel select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.top-search input {
  width: 180px;
  padding: 8px 8px 8px 14px;
}

.top-search button,
.mobile-search button,
.search-panel button,
.primary-button,
.small-button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.24);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.top-search button,
.mobile-search button,
.search-panel button {
  padding: 9px 15px;
}

.primary-button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-button {
  min-height: 48px;
  padding: 0 24px;
}

.small-button {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.top-search button:hover,
.mobile-search button:hover,
.search-panel button:hover,
.primary-button:hover,
.small-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(234, 88, 12, 0.3);
}

.ghost-button {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.ghost-button.light {
  border-color: rgba(217, 119, 6, 0.28);
  color: var(--amber-dark);
  background: rgba(255, 255, 255, 0.72);
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--amber-dark);
  background: #fff7ed;
  font-size: 24px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.mobile-link {
  display: block;
  padding: 12px 4px;
  color: #374151;
  font-weight: 800;
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mobile-search input {
  padding: 10px;
}

main {
  min-height: 70vh;
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(245, 158, 11, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.72) 44%, rgba(17, 24, 39, 0.34) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 96px 20px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #f3f4f6;
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-row span {
  color: #92400e;
  background: #ffedd5;
}

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

.hero-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
  transition: transform .3s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

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

.hero-controls > button,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 30px;
}

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

.hero-dot {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  transition: width .2s ease, background .2s ease;
}

.hero-dot.active {
  width: 48px;
  background: #f59e0b;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px;
}

.section-overlap {
  position: relative;
  z-index: 10;
  margin-top: -54px;
  padding-top: 0;
}

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

.section-head h2,
.page-hero h1,
.detail-main h1,
.detail-main h2,
.detail-side h2,
.overview-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

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

.section-head a {
  color: var(--amber);
  font-weight: 900;
}

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

.category-card,
.overview-card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(217, 119, 6, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.96));
  box-shadow: 0 16px 45px rgba(146, 64, 14, 0.08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.category-card:hover,
.overview-card:hover,
.movie-card:hover,
.ranking-row:hover,
.spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card span,
.overview-card h2 {
  font-size: 21px;
  font-weight: 900;
}

.category-card p,
.overview-card p {
  margin: 10px 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.category-card b {
  margin-top: 20px;
  color: var(--amber);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(146, 64, 14, 0.08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, #fef3c7, #fed7aa);
}

.movie-card-compact .poster-link {
  aspect-ratio: 16 / 10;
}

.poster-link img,
.ranking-cover img,
.detail-cover,
.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.72), transparent);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

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

.movie-card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card-body h3 a:hover,
.ranking-info h3 a:hover,
.detail-meta a:hover {
  color: var(--amber);
}

.movie-card-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.ranking-section {
  max-width: 100%;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, #111827, #431407);
  color: #ffffff;
}

.ranking-section .section-head a,
.ranking-section .section-kicker {
  color: #fbbf24;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 62px 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.full-ranking .ranking-row {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.ranking-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  font-weight: 1000;
}

.ranking-cover {
  display: block;
  overflow: hidden;
  width: 92px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: #fed7aa;
}

.ranking-info h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.ranking-info p {
  margin: 0 0 8px;
  color: inherit;
  opacity: .76;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 32px;
}

.slim-hero {
  display: block;
  padding-bottom: 8px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.category-hero {
  margin-top: 30px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fffbeb, #fed7aa);
  box-shadow: var(--shadow);
}

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

.spotlight-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #fed7aa;
  box-shadow: 0 16px 40px rgba(146, 64, 14, 0.14);
  transition: transform .22s ease, box-shadow .22s ease;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.8), transparent);
}

.spotlight-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-weight: 900;
}

.detail-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 20px;
  color: var(--muted);
  font-weight: 700;
}

.breadcrumb a {
  color: var(--amber);
}

.player-card {
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: var(--shadow);
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2), rgba(0, 0, 0, 0.42));
  cursor: pointer;
  transition: opacity .22s ease, visibility .22s ease;
}

.play-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 20px 50px rgba(234, 88, 12, 0.35);
  font-size: 30px;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-top: 28px;
}

.detail-main,
.detail-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(146, 64, 14, 0.08);
}

.detail-main {
  padding: 30px;
}

.detail-side {
  padding: 22px;
  align-self: start;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.detail-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(146, 64, 14, 0.16);
}

.detail-main h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.lead-text {
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta span,
.detail-meta a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #4b5563;
  background: #f9fafb;
  font-weight: 800;
}

.detail-main h2,
.detail-side h2 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 24px;
}

.detail-main p {
  color: #374151;
  line-height: 2;
}

.side-list {
  display: grid;
  gap: 16px;
}

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

.side-list .poster-link {
  height: 100%;
  aspect-ratio: 3 / 4;
}

.side-list .movie-card-body {
  padding: 14px;
}

.side-list .movie-card-body h3 {
  font-size: 16px;
}

.side-list .movie-card-body p,
.side-list .tag-row {
  display: none;
}

.search-section {
  padding-top: 24px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 160px auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(146, 64, 14, 0.08);
}

.search-panel input,
.search-panel select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fafb;
}

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

.footer {
  margin-top: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}

.footer-logo .brand-text {
  color: #ffffff;
  background: none;
}

.footer-brand p {
  max-width: 560px;
  color: #d1d5db;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 12px 20px;
}

.footer-links a {
  color: #e5e7eb;
  font-weight: 800;
}

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

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

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

  .hero-content,
  .page-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 340px;
  }

  .detail-side {
    align-self: stretch;
  }
}

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

  .menu-button {
    display: grid;
    place-items: center;
  }

  .topbar-inner {
    gap: 14px;
  }

  .brand-text {
    font-size: 17px;
  }

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

  .hero-content {
    padding-top: 76px;
    padding-bottom: 110px;
  }

  .hero-poster {
    display: none;
  }

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

  .ranking-row {
    grid-template-columns: 44px 74px minmax(0, 1fr);
  }

  .ranking-row .small-button {
    grid-column: 2 / 4;
    justify-self: start;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    padding: 12px 14px;
  }

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

  .brand-text {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-copy p,
  .page-hero p,
  .lead-text {
    font-size: 16px;
  }

  .section,
  .detail-page {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .category-hero {
    padding: 26px;
  }

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

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

  .detail-cover {
    max-width: 210px;
  }

  .detail-main {
    padding: 22px;
  }

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