:root {
  color-scheme: light;
  --bg: #fffaf0;
  --bg-soft: #fff7ed;
  --card: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fde68a;
  --amber: #d97706;
  --orange: #ea580c;
  --gold: #f59e0b;
  --shadow: 0 20px 60px rgba(146, 64, 14, 0.14);
  --shadow-soft: 0 14px 35px rgba(146, 64, 14, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 45%, #fff7ed 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

img {
  max-width: 100%;
  display: block;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.28);
}

.brand-name {
  font-size: 22px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #92400e;
  background: #ffedd5;
  transform: translateY(-1px);
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(300px, 100%);
  overflow: hidden;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.08);
}

.nav-search input {
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border: 0;
  outline: 0;
  color: #374151;
}

.nav-search button {
  border: 0;
  padding: 11px 17px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #92400e;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(251, 191, 36, 0.28), transparent 34%), linear-gradient(135deg, #fffbeb 0%, #fff7ed 48%, #fef3c7 100%);
  padding: 70px 0 56px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  right: 6%;
  top: 8%;
  background: rgba(251, 146, 60, 0.18);
}

.hero-glow-two {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: -40px;
  background: rgba(245, 158, 11, 0.24);
}

.hero-slider {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 66px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.64), rgba(17, 24, 39, 0.86)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: saturate(1.08);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-head span,
.page-hero span,
.section-copy span,
.content-card span,
.category-overview-copy span {
  display: inline-flex;
  width: fit-content;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-copy p {
  width: min(680px, 100%);
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 700;
}

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

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.primary-button.small {
  min-height: 42px;
  padding: 0 18px;
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

.hero-poster {
  justify-self: end;
  width: min(360px, 100%);
  aspect-ratio: 2 / 3;
  border: 8px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(217, 119, 6, 0.92);
  font-weight: 850;
}

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

.hero-controls button {
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 28px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: #fbbf24;
}

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

.soft-section {
  padding-bottom: 34px;
}

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

.section-head.centered {
  max-width: 780px;
  margin-inline: auto;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}

.section-head span,
.page-hero span,
.section-copy span,
.content-card span,
.category-overview-copy span {
  color: var(--amber);
}

.section-head h1,
.section-head h2,
.page-hero h1,
.section-copy h2,
.content-card h2,
.category-overview-copy h2 {
  margin: 8px 0 0;
  color: #1f2937;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.section-copy p,
.category-overview-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.section-head > a {
  color: #b45309;
  font-weight: 850;
}

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

.category-grid.compact {
  margin-top: 34px;
}

.category-card {
  min-height: 138px;
  padding: 22px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #fff7ed);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
  display: block;
  margin-bottom: 12px;
  color: #ea580c;
  font-size: 22px;
  font-weight: 950;
}

.category-card strong {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.30);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fdba74);
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.72));
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(234, 88, 12, 0.92);
  font-size: 13px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.26);
}

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

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #b45309;
  font-size: 13px;
  font-weight: 800;
}

.movie-card h2 {
  margin: 10px 0 8px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.movie-card p {
  margin: 0 0 14px;
  min-height: 66px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

.movie-tags span {
  min-height: 26px;
  padding: 5px 9px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  padding: 54px;
  border-radius: 34px;
  background: linear-gradient(135deg, #111827, #431407 60%, #78350f);
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-copy p {
  color: #ffffff;
}

.section-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.rank-panel {
  display: grid;
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 42px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.rank-row span {
  color: #fbbf24;
  font-weight: 950;
}

.rank-row img {
  width: 54px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-row strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-row em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: 13px;
}

.filter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  margin-bottom: 28px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-box strong {
  display: block;
  color: #1f2937;
  font-size: 19px;
  font-weight: 950;
}

.filter-box span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.filter-controls input,
.filter-controls select,
.filter-controls button {
  min-height: 44px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fffaf0;
  color: #374151;
  outline: none;
}

.filter-controls input {
  width: min(260px, 100%);
  padding: 0 16px;
}

.filter-controls select {
  padding: 0 38px 0 14px;
}

.filter-controls button {
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  cursor: pointer;
}

.empty-state {
  padding: 34px;
  border: 1px dashed #f59e0b;
  border-radius: var(--radius-lg);
  color: #92400e;
  background: #fffbeb;
  text-align: center;
  font-weight: 850;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 16px 76px;
  text-align: center;
  background: radial-gradient(circle at 30% 10%, rgba(251, 191, 36, 0.28), transparent 30%), linear-gradient(135deg, #fff7ed, #fffbeb);
}

.page-hero h1 {
  margin-inline: auto;
  max-width: 900px;
}

.page-hero p {
  margin-inline: auto;
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #92400e;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: #d97706;
}

.category-overview {
  display: grid;
  gap: 26px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: 26px;
  padding: 26px;
  border: 1px solid #fed7aa;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.text-link {
  margin-top: 18px;
  min-height: 40px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

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

.strip-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  background: #fed7aa;
  box-shadow: 0 10px 22px rgba(146, 64, 14, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-card span {
  position: absolute;
  inset: auto 8px 8px;
  padding: 8px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.68);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.page-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.page-switch a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-weight: 850;
}

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

.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.spotlight-card span,
.spotlight-card strong {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  color: #ffffff;
}

.spotlight-card span {
  bottom: 72px;
  color: #fed7aa;
  font-weight: 850;
}

.spotlight-card strong {
  bottom: 24px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 950;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.70), rgba(17, 24, 39, 0.92)), var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.detail-layout {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 56px 0;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

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

.detail-copy h1 {
  margin: 18px 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.10);
  font-weight: 800;
}

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

.player-section {
  padding-top: 54px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 34px;
  background: #050505;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.16), rgba(0, 0, 0, 0.42));
  cursor: pointer;
}

.player-overlay span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.35);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.player-frame.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.content-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #fed7aa;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.content-card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.95;
}

.accent-card {
  background: linear-gradient(145deg, #fff7ed, #ffffff);
}

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

.site-footer {
  margin-top: 30px;
  background: #fff7ed;
  border-top: 1px solid #fed7aa;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand p,
.footer-column p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 950;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: #6b7280;
  font-size: 14px;
}

.footer-column a:hover {
  color: #d97706;
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid #fed7aa;
  color: #6b7280;
  text-align: center;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

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

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid #fed7aa;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    text-align: center;
  }

  .nav-search {
    width: 100%;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-slider {
    min-height: 720px;
    border-radius: 28px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
    padding: 34px 22px 86px;
  }

  .hero-poster {
    justify-self: start;
    width: min(240px, 70vw);
    transform: rotate(0deg);
  }

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

  .split-section,
  .category-overview-card,
  .detail-layout,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding: 28px;
  }

  .filter-box,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-controls {
    justify-content: stretch;
  }

  .filter-controls input,
  .filter-controls select,
  .filter-controls button {
    width: 100%;
  }

  .detail-layout {
    min-height: auto;
    padding-top: 40px;
  }

  .detail-poster {
    width: min(300px, 86vw);
  }

  .rank-row {
    grid-template-columns: 34px 48px minmax(0, 1fr);
  }

  .rank-row em {
    grid-column: 3;
  }
}

@media (max-width: 560px) {
  .site-nav,
  .section,
  .hero-slider,
  .detail-layout,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

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

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

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

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

  .strip-card {
    aspect-ratio: 16 / 9;
  }

  .movie-card p {
    min-height: auto;
  }
}
