:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-900: #881337;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-900: #78350f;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--container));
  height: 66px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-800);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
  border-radius: 999px;
  box-shadow: 0 10px 20px rgb(225 29 72 / 0.25);
}

.brand-name {
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

.nav-link {
  position: relative;
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--rose-600), var(--amber-500));
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--gray-700);
  font-weight: 700;
}

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

.hero-carousel {
  position: relative;
  min-height: 500px;
  height: 70vh;
  overflow: hidden;
  background: linear-gradient(90deg, var(--rose-900), var(--amber-900));
}

.hero-track,
.hero-slide {
  height: 100%;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.78), rgb(0 0 0 / 0.52), rgb(0 0 0 / 0.05));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(16px, calc((100vw - var(--container)) / 2));
  width: min(680px, calc(100% - 32px));
  color: var(--white);
  transform: translateY(-50%);
}

.hero-kicker,
.section-kicker,
.page-hero span,
.center-heading span,
.detail-title-group span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 14px;
  color: var(--white);
  background: var(--rose-600);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--gray-200);
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-links a {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--white);
  background: rgb(255 255 255 / 0.18);
  border-color: rgb(255 255 255 / 0.28);
  backdrop-filter: blur(6px);
}

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

.primary-button,
.ghost-button,
.outline-button,
.search-line button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button,
.search-line button {
  color: var(--white);
  background: var(--rose-600);
  box-shadow: var(--shadow-lg);
}

.primary-button:hover,
.search-line button:hover {
  background: var(--rose-700);
  box-shadow: var(--shadow-xl);
  transform: translateY(-1px);
}

.ghost-button {
  color: var(--white);
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.32);
  backdrop-filter: blur(6px);
}

.ghost-button:hover {
  background: rgb(255 255 255 / 0.28);
  transform: translateY(-1px);
}

.outline-button {
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-300);
}

.outline-button:hover {
  color: var(--rose-600);
  border-color: var(--rose-600);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: rgb(255 255 255 / 0.18);
  border: 0;
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgb(255 255 255 / 0.3);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgb(255 255 255 / 0.55);
  border: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search-panel {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.quick-search-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 30px;
  align-items: center;
  padding: 26px 0;
}

.quick-search-inner h2 {
  margin: 0 0 4px;
  color: var(--gray-900);
  font-size: 26px;
}

.quick-search-inner p {
  margin: 0;
  color: var(--gray-600);
}

.search-line {
  display: flex;
  padding: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
}

.search-line input,
.filter-bar input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  outline: none;
}

.search-line input {
  background: transparent;
  border-color: transparent;
}

.search-line input:focus,
.filter-bar input:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgb(244 63 94 / 0.12);
}

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

.content-band {
  padding: 70px 0;
  background: linear-gradient(90deg, var(--amber-50), var(--rose-50));
}

.discover-band {
  padding: 74px 0;
  background: linear-gradient(135deg, var(--rose-100), var(--amber-50), #fce7f3);
}

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

.section-kicker {
  color: var(--rose-700);
  background: var(--rose-50);
}

.section-heading h2,
.center-heading h2 {
  margin: 10px 0 6px;
  color: var(--gray-800);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading p,
.center-heading p {
  margin: 0;
  color: var(--gray-600);
}

.section-more {
  color: var(--rose-600);
  font-weight: 800;
}

.center-heading {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-heading span {
  margin: 0 auto;
  color: var(--rose-700);
  background: var(--rose-50);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--gray-200);
}

.movie-card-compact .movie-cover-wrap {
  height: 200px;
}

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

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

.movie-cover-wrap::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  content: "";
  background: linear-gradient(0deg, rgb(0 0 0 / 0.65), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover-wrap::after {
  opacity: 1;
}

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

.movie-category {
  top: 12px;
  right: 12px;
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 30px;
  background: var(--amber-600);
}

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

.movie-card-body h2 {
  display: -webkit-box;
  min-height: 56px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-800);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 800;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-body h2 a:hover {
  color: var(--rose-600);
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span {
  padding: 3px 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
}

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

.category-tile {
  min-height: 170px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--amber-500));
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.category-tile:hover {
  filter: saturate(1.08);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.category-tile span {
  display: block;
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 900;
}

.category-tile strong {
  display: -webkit-box;
  overflow: hidden;
  color: rgb(255 255 255 / 0.86);
  font-size: 15px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  padding: 74px 0;
  color: var(--white);
  background: linear-gradient(115deg, var(--rose-600), var(--amber-600));
}

.page-hero .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero span {
  margin: 0 auto;
  color: var(--rose-700);
  background: var(--white);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  color: var(--rose-50);
  font-size: 18px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.category-overview-cover {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

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

.category-overview-cover span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  color: var(--white);
  background: var(--rose-600);
  border-radius: 999px;
  font-weight: 800;
}

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

.category-overview-body h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--gray-600);
}

.sample-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-links a,
.category-pills a {
  padding: 6px 10px;
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.filter-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.filter-bar label {
  flex: 1;
}

.filter-bar label span {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-700);
  font-weight: 800;
}

.filter-bar-wide {
  align-items: center;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 460px;
}

.movie-detail-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.82), rgb(0 0 0 / 0.55), rgb(0 0 0 / 0.24));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 40px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 0.8);
  font-size: 14px;
}

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

.detail-title-group {
  max-width: 780px;
}

.detail-title-group h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.08;
  font-weight: 900;
}

.detail-title-group p {
  margin: 0;
  color: var(--gray-200);
  font-size: 19px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2xl);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(0deg, rgb(0 0 0 / 0.54), rgb(0 0 0 / 0.18));
  border: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding-left: 6px;
  background: linear-gradient(135deg, var(--rose-600), var(--amber-500));
  border-radius: 999px;
  box-shadow: var(--shadow-2xl);
  font-size: 40px;
}

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

.detail-copy,
.related-section,
.detail-sidebar > div {
  margin-top: 28px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.detail-copy h2,
.info-panel h2,
.tag-panel h2 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: 24px;
}

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

.detail-copy p:last-child {
  margin-bottom: 0;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
}

.poster-panel {
  margin-top: 0 !important;
}

.poster-panel img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.full-button {
  width: 100%;
  margin-top: 16px;
}

.info-panel div {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.info-panel div:last-child {
  border-bottom: 0;
}

.info-panel span {
  display: block;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 800;
}

.info-panel strong {
  display: block;
  margin-top: 3px;
  color: var(--gray-800);
  font-size: 17px;
}

.small-heading {
  margin-bottom: 22px;
}

.site-footer {
  padding: 54px 0 26px;
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.footer-brand {
  max-width: 620px;
  margin-bottom: 32px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--gray-600);
}

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

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

.footer-links a:hover {
  color: var(--rose-600);
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-300);
  text-align: center;
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

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

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

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

  .detail-sidebar {
    position: static;
  }
}

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

  .mobile-toggle {
    display: block;
  }

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

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

  .hero-content {
    top: auto;
    bottom: 82px;
    transform: none;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgb(0 0 0 / 0.82), rgb(0 0 0 / 0.42), rgb(0 0 0 / 0.12));
  }

  .hero-arrow {
    display: none;
  }

  .quick-search-inner,
  .footer-grid,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .filter-bar,
  .filter-bar-wide {
    display: block;
  }

  .section-more,
  .outline-button {
    margin-top: 16px;
  }

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

  .category-pills {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, var(--container));
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .movie-grid,
  .movie-grid-large,
  .ranking-grid,
  .related-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-cover-wrap,
  .movie-card-compact .movie-cover-wrap {
    height: 260px;
  }

  .content-section,
  .content-band,
  .discover-band {
    padding: 46px 0;
  }

  .page-hero {
    padding: 54px 0;
  }

  .detail-copy,
  .related-section,
  .detail-sidebar > div {
    padding: 20px;
  }
}
