:root {
  --color-amber: #f59e0b;
  --color-amber-dark: #d97706;
  --color-orange: #ea580c;
  --color-ink: #1f2937;
  --color-muted: #6b7280;
  --color-soft: #fff7ed;
  --color-card: #ffffff;
  --shadow-soft: 0 18px 45px rgba(146, 64, 14, 0.14);
  --shadow-strong: 0 28px 70px rgba(17, 24, 39, 0.28);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-amber-dark), var(--color-orange));
  box-shadow: 0 12px 28px rgba(154, 52, 18, 0.22);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.site-logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo {
  font-size: 1.35rem;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

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

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input {
  width: 240px;
  border: 0;
  border-radius: 999px;
  padding: 11px 44px 11px 16px;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: box-shadow 0.2s ease, width 0.2s ease;
}

.nav-search input:focus {
  width: 290px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
}

.nav-search button {
  position: absolute;
  right: 4px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #92400e;
  background: transparent;
  cursor: pointer;
}

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

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 2px;
}

.hero {
  position: relative;
  background: #111827;
}

.hero-stage {
  position: relative;
  height: 610px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  background: radial-gradient(circle at 22% 35%, rgba(245, 158, 11, 0.32), transparent 35%), #111827;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-missing {
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.34), transparent 28%),
    radial-gradient(circle at 30% 50%, rgba(234, 88, 12, 0.38), transparent 36%),
    linear-gradient(135deg, #111827, #78350f);
}

.hero-overlay,
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(720px, 92%);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fcd34d;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 5.4rem);
}

.hero-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.4rem, 2.7vw, 2.4rem);
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-actions,
.card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.section-more,
.advanced-search button,
.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.advanced-search button,
.card-actions a {
  color: #ffffff;
  background: var(--color-amber);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.primary-button,
.ghost-button {
  min-height: 50px;
  padding: 0 26px;
}

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

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.advanced-search button:hover,
.card-actions a:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 36px;
  background: #ffffff;
}

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

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

.centered-heading {
  justify-content: center;
  text-align: center;
}

.section-heading h2,
.category-panel h2,
.detail-panel h2 {
  margin: 0 0 6px;
  color: #1f2937;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.2;
}

.section-heading p,
.page-hero p,
.category-panel p {
  margin: 0;
  color: var(--color-muted);
}

.section-more {
  min-width: 118px;
  min-height: 42px;
  color: #92400e;
  background: #ffedd5;
}

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

.home-category-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 14px;
  border: 2px solid rgba(251, 191, 36, 0.46);
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-soft);
}

.home-category-card span {
  font-size: 2.6rem;
}

.home-category-card strong {
  font-size: 1.1rem;
}

.home-category-card em {
  color: var(--color-muted);
  font-style: normal;
  font-size: 0.9rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(90deg, #92400e, #ea580c);
  box-shadow: var(--shadow-soft);
}

.stats-band div,
.stat-strip span {
  display: grid;
  gap: 4px;
}

.stats-band strong {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.84);
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-card);
  box-shadow: 0 14px 34px rgba(146, 64, 14, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(251, 191, 36, 0.42), transparent 30%),
    linear-gradient(135deg, #451a03, #f59e0b);
}

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

.movie-card .poster-frame {
  aspect-ratio: 2 / 3;
}

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

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

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

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 7px 11px;
  color: #78350f;
  background: #fcd34d;
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-meta-line span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff7ed;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0 0 10px;
  overflow: hidden;
  color: #111827;
  font-size: 1.12rem;
  line-height: 1.38;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card p {
  display: -webkit-box;
  min-height: 4.6em;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 0.92rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

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

.card-actions {
  justify-content: space-between;
  margin-top: 18px;
}

.card-actions strong {
  color: var(--color-amber-dark);
}

.card-actions a {
  min-height: 36px;
  padding: 0 15px;
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  padding: 78px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(252, 211, 77, 0.32), transparent 24%),
    linear-gradient(135deg, #451a03 0%, #92400e 45%, #ea580c 100%);
}

.compact-hero h1 {
  max-width: 880px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.compact-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.stat-strip span {
  min-width: 130px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.stat-strip strong {
  font-size: 1.6rem;
}

.category-layout {
  display: grid;
  gap: 28px;
  padding: 54px 0;
}

.category-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

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

.category-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #fff7ed;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-chip:hover {
  background: #ffedd5;
  transform: translateY(-3px);
}

.category-chip span {
  font-weight: 800;
}

.category-chip strong {
  color: #92400e;
}

.local-filter,
.search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 22px rgba(146, 64, 14, 0.08);
}

.local-filter input {
  width: min(540px, 100%);
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 12px 18px;
  outline: none;
}

.local-filter input:focus,
.advanced-search input:focus,
.advanced-search select:focus {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination a,
.pagination strong,
.pagination span {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(146, 64, 14, 0.08);
}

.pagination strong {
  color: #ffffff;
  background: var(--color-amber);
}

.ranking-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
}

.ranking-table th,
.ranking-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #ffedd5;
  text-align: left;
  white-space: nowrap;
}

.ranking-table th {
  color: #92400e;
  background: #ffedd5;
}

.ranking-table tbody tr:hover {
  background: #fff7ed;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  filter: blur(4px);
  transform: scale(1.03);
  opacity: 0.72;
}

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

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 42px 0 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs a:hover {
  color: #fcd34d;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.detail-info h1 {
  max-width: 840px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.detail-one-line {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 28px 0;
}

.detail-meta-grid span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.detail-meta-grid strong {
  display: block;
  color: #fcd34d;
  font-size: 1.7rem;
  line-height: 1;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.player-section {
  padding: 54px 0 24px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 158, 11, 0.42), transparent 24%),
    linear-gradient(135deg, #111827, #451a03);
  box-shadow: var(--shadow-strong);
}

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

.player-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.56));
  cursor: pointer;
}

.player-play span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-amber);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.38);
  font-size: 2rem;
  transition: transform 0.2s ease;
}

.player-play:hover span {
  transform: scale(1.08);
}

.player-play strong {
  font-size: 1.2rem;
}

.movie-player.is-playing .player-play {
  display: none;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  padding: 34px 0;
}

.detail-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.detail-panel p {
  margin: 0;
  color: #4b5563;
  font-size: 1.05rem;
}

.highlight-panel {
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

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

.search-panel {
  padding: 54px 0;
}

.advanced-search {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(120px, 0.6fr)) auto;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.advanced-search input,
.advanced-search select {
  min-height: 46px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 0 14px;
  background: #ffffff;
  outline: none;
}

.advanced-search button {
  min-height: 46px;
  padding: 0 22px;
}

.search-summary {
  margin-top: 18px;
  color: var(--color-muted);
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: #111827;
}

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

.footer-grid h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
}

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

.footer-brand {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.25rem;
}

.footer-note {
  color: #fbbf24;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9ca3af;
}

.hidden-by-filter {
  display: none !important;
}

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

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

  .detail-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

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

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

@media (max-width: 820px) {
  .mobile-menu-button {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(146, 64, 14, 0.96);
    box-shadow: var(--shadow-strong);
  }

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

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

  .nav-link {
    display: block;
  }

  .nav-search input,
  .nav-search input:focus {
    width: 100%;
  }

  .hero-stage {
    height: 660px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 86px;
  }

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

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

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

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

  .detail-poster {
    width: min(280px, 78vw);
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(100% - 22px, 1180px);
  }

  .hero-stage {
    height: 620px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .movie-grid,
  .related-grid,
  .home-category-grid,
  .stats-band,
  .category-chip-grid,
  .footer-grid,
  .advanced-search {
    grid-template-columns: 1fr;
  }

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

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

  .movie-card-body,
  .detail-panel,
  .category-panel {
    padding: 18px;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 12px;
  }
}
