:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --dark: #120c06;
  --surface: #ffffff;
  --line: rgba(146, 64, 14, 0.16);
  --shadow: 0 24px 65px rgba(120, 53, 15, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--amber-900);
  background: linear-gradient(180deg, var(--amber-50), #fff7d6 45%, var(--amber-100));
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 243, 199, 0.94), rgba(255, 251, 235, 0.96));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1220px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-800));
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.32);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--amber-700);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

.nav-link,
.mobile-link {
  border-radius: 999px;
  color: var(--amber-900);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 9px 13px;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fff;
  background: var(--amber-600);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(217, 119, 6, 0.12);
  color: var(--amber-900);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(146, 64, 14, 0.12);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-link {
  padding: 10px 12px;
  font-size: 14px;
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 12% 20%, rgba(252, 211, 77, 0.38), transparent 36%), linear-gradient(135deg, var(--amber-900), var(--amber-700), var(--amber-500));
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(18, 12, 6, 0.86), rgba(120, 53, 15, 0.72), rgba(245, 158, 11, 0.26)), var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.05);
}

.hero-backdrop::after,
.page-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: 54px;
  padding: 88px 0 98px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff5cc;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.hero-line,
.page-hero p,
.detail-line {
  max-width: 760px;
  color: #fff5d6;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

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

.hero-tags {
  margin: 28px 0;
}

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--amber-900);
  background: rgba(254, 243, 199, 0.9);
  font-size: 12px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  color: var(--amber-900);
  background: #fff;
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.22);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.btn.text {
  color: #fff5d6;
  padding-inline: 8px;
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(18, 12, 6, 0.55);
  transform: rotate(2deg);
}

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

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

.hero-poster span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

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

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

.hero-dot,
.hero-arrow {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(18, 12, 6, 0.2);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.active {
  width: 34px;
  background: #fff;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.content-section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.white-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(16px, calc((100% - 1220px) / 2));
  background: rgba(255, 255, 255, 0.68);
}

.highlight-section {
  margin-top: -38px;
  position: relative;
  z-index: 4;
}

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

.section-title h2 {
  margin: 0;
  color: var(--amber-900);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-title p {
  margin: 9px 0 0;
  color: var(--amber-700);
  font-size: 16px;
}

.section-more,
.inline-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-weight: 900;
}

.section-more {
  padding: 10px 16px;
}

.inline-more {
  width: max-content;
  margin-top: 16px;
  padding: 9px 14px;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(146, 64, 14, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(120, 53, 15, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 119, 6, 0.38);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-300));
}

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

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

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-800));
  box-shadow: 0 8px 22px rgba(120, 53, 15, 0.28);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0;
  color: var(--amber-900);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.card-body h3 a:hover {
  color: var(--amber-600);
}

.card-line {
  min-height: 3.1em;
  margin: 9px 0 12px;
  color: #8a5a20;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--amber-800);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--amber-50);
}

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

.movie-card.compact .poster-link {
  aspect-ratio: auto;
  min-height: 142px;
}

.movie-card.compact .card-line {
  -webkit-line-clamp: 2;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.18);
  background: var(--amber-800);
}

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

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

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(18, 12, 6, 0.82));
}

.category-copy {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  color: #fff;
}

.category-copy strong,
.category-copy em {
  display: block;
}

.category-copy strong {
  font-size: 22px;
  font-weight: 950;
}

.category-copy em {
  margin-top: 6px;
  color: #fdebb8;
  font-size: 13px;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.cta-band {
  width: min(1220px, calc(100% - 32px));
  margin: 52px auto 76px;
  padding: 58px 34px;
  border-radius: 34px;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at top left, rgba(252, 211, 77, 0.42), transparent 35%), linear-gradient(135deg, var(--amber-900), var(--amber-700));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
}

.cta-band p {
  max-width: 720px;
  margin: 14px auto 26px;
  color: #fdebb8;
  font-size: 18px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(18, 12, 6, 0.9), rgba(120, 53, 15, 0.75), rgba(245, 158, 11, 0.28)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 88px max(16px, calc((100% - 1220px) / 2)) 64px;
}

.page-hero.slim {
  min-height: 300px;
  background-image: radial-gradient(circle at 10% 10%, rgba(252, 211, 77, 0.32), transparent 32%), linear-gradient(135deg, var(--amber-900), var(--amber-700));
}

.page-hero > div,
.detail-hero > * {
  position: relative;
  z-index: 1;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) repeat(4, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(120, 53, 15, 0.08);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--amber-800);
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(146, 64, 14, 0.18);
  border-radius: 16px;
  color: var(--amber-900);
  background: #fff;
  padding: 0 13px;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.empty-state {
  margin: 26px 0 0;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.72);
}

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

.overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.12);
}

.overview-media {
  min-height: 300px;
  overflow: hidden;
}

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

.overview-body {
  padding: 24px;
}

.overview-body h2 {
  margin: 0 0 9px;
  font-size: 28px;
  font-weight: 950;
}

.overview-body p {
  color: var(--amber-700);
}

.mini-stack {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mini-stack a {
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--amber-900);
  background: var(--amber-50);
  font-weight: 800;
}

.breadcrumb {
  width: min(1220px, calc(100% - 32px));
  margin: 26px auto 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--amber-700);
  font-size: 14px;
  font-weight: 800;
}

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

.detail-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: end;
  gap: 42px;
  padding: 46px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(18, 12, 6, 0.55);
}

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

.detail-copy h1 {
  font-size: clamp(38px, 5vw, 66px);
}

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

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff5d6;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.detail-tags {
  margin-bottom: 26px;
}

.watch-section {
  width: min(1220px, calc(100% - 32px));
  margin: 56px auto 0;
}

.compact-title {
  margin-bottom: 18px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #000;
  box-shadow: 0 28px 70px rgba(18, 12, 6, 0.32);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(120, 53, 15, 0.18), rgba(0, 0, 0, 0.48));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  font-size: 38px;
  text-indent: 6px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.story-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(120, 53, 15, 0.1);
}

.story-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 950;
}

.story-card p {
  margin: 0;
  color: #71430c;
  font-size: 17px;
  line-height: 1.9;
}

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

.site-footer {
  margin-top: 72px;
  color: #fff7d8;
  background: linear-gradient(180deg, var(--amber-900), #3e1d06);
}

.footer-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 34px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: 30px;
}

.footer-logo {
  display: block;
  margin-bottom: 12px;
  color: var(--amber-300);
  font-size: 24px;
  font-weight: 950;
}

.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: #fdebb8;
}

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

.footer-links a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff7d8;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #fdebb8;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

  .menu-button {
    display: block;
  }

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

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

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

  .search-box {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 820px) {
  .header-inner {
    height: 66px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 720px;
    padding: 70px 0 108px;
  }

  .hero-poster {
    width: min(300px, 82vw);
    margin: 0 auto;
    transform: rotate(0);
  }

  .hero-actions .btn.text {
    width: 100%;
    justify-content: flex-start;
  }

  .section-title {
    display: grid;
  }

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

  .rank-list,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.compact {
    grid-template-columns: 92px minmax(0, 1fr);
  }

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

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

  .overview-media {
    min-height: 260px;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 26px;
  }

  .detail-poster {
    width: min(290px, 100%);
  }

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

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

@media (max-width: 560px) {
  .content-section {
    width: min(100% - 24px, 1220px);
    padding: 48px 0;
  }

  .white-section {
    width: 100%;
    padding-inline: 12px;
  }

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

  .hero-grid {
    width: min(100% - 24px, 1220px);
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 36px;
  }

  .hero-line,
  .page-hero p,
  .detail-line {
    font-size: 16px;
  }

  .hero-controls {
    gap: 10px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .feature-grid,
  .movie-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card:not(.compact) {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .movie-card:not(.compact) .poster-link {
    aspect-ratio: auto;
    min-height: 188px;
  }

  .card-body h3 {
    font-size: 17px;
  }

  .card-line {
    font-size: 13px;
  }

  .page-hero {
    min-height: 300px;
    padding: 70px 12px 46px;
  }

  .watch-section,
  .breadcrumb,
  .detail-hero {
    width: min(100% - 24px, 1220px);
  }

  .story-card {
    padding: 22px;
  }

  .play-icon {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
