:root {
  --amber: #f59e0b;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --gray: #475569;
  --light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --radius: 22px;
}

* {
  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: #111827;
  background: linear-gradient(180deg, #fff 0%, #fff7ed 34%, #f8fafc 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: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand-icon,
.footer-brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 20px;
  color: var(--orange-dark);
  letter-spacing: -0.02em;
}

.brand-copy em {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.28);
}

.top-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.wide-search input,
.filter-bar input,
.filter-bar select {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  outline: none;
}

.top-search input {
  width: 154px;
  padding: 0 12px;
}

.top-search button,
.mobile-search button,
.wide-search button {
  height: 42px;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.22);
  cursor: pointer;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #9a3412;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.mobile-search {
  margin-top: 10px;
}

.mobile-search input {
  flex: 1;
  padding: 0 12px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.36), transparent 28%), linear-gradient(135deg, #0f172a 0%, #111827 50%, #1e293b 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-shell {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 82px;
}

.hero-slider {
  position: relative;
  min-height: 540px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-grid;
  place-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.32);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.hero-copy h1,
.hero-copy h2:first-of-type {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #fde68a, #fb923c, #fef3c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h2:last-of-type {
  margin: 16px 0 0;
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.12;
  color: #fff7ed;
}

.hero-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

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

.hero-tags {
  margin-top: 22px;
}

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

.hero-tags span {
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 900;
  transition: 0.22s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.32);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(249, 115, 22, 0.42);
}

.ghost-btn {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.ghost-btn.dark {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 390px;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44);
  transform: rotate(1deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.02) 60%);
}

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

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

.hero-play {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  color: #fff;
  font-size: 28px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.38);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

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

.hero-dot.is-active {
  width: 38px;
  background: #fbbf24;
}

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

.intro-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 34px;
  align-items: center;
  margin-top: -42px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.intro-band h2,
.section-heading h2,
.panel-title h2,
.page-hero h1,
.detail-copy h1,
.story-panel h2,
.player-caption h2 {
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.intro-band h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.intro-band p:not(.eyebrow),
.page-hero p,
.story-panel p,
.player-caption p {
  color: #64748b;
}

.wide-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.wide-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 12px;
}

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

.section-heading h2,
.panel-title h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.section-heading a {
  color: var(--orange-dark);
  font-weight: 900;
}

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

.category-tile,
.category-overview-card {
  display: block;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: 0.22s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(249, 115, 22, 0.18);
}

.category-tile strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 10px;
  color: #9a3412;
  font-size: 22px;
}

.category-tile span,
.category-overview-card p {
  color: #64748b;
  font-size: 14px;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: 0.26s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.16);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111827;
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 64%);
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.movie-info {
  padding: 18px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
  color: #f97316;
  font-size: 12px;
  font-weight: 900;
}

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

.movie-info h2 {
  margin: 0 0 9px;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.movie-info h2 a:hover {
  color: var(--orange-dark);
}

.movie-info p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row span {
  color: #9a3412;
  background: #ffedd5;
}

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

.compact-card .movie-info h2 {
  font-size: 17px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.ranking-panel {
  position: sticky;
  top: 102px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  box-shadow: var(--shadow);
}

.amber-panel {
  background: linear-gradient(145deg, #7c2d12, #c2410c);
}

.ranking-panel h2,
.ranking-panel .eyebrow {
  color: #fff;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.mini-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-card em {
  overflow: hidden;
  margin-top: 2px;
  color: #cbd5e1;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-rank {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 12px;
}

.inner-page {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 58px;
  overflow: hidden;
  border-radius: 34px;
  background: radial-gradient(circle at 12% 8%, rgba(245, 158, 11, 0.26), transparent 30%), linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.centered-actions {
  margin-top: 28px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  padding: 0 14px;
}

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

.empty-state {
  display: none;
  margin: 26px 0 0;
  padding: 26px;
  border-radius: 20px;
  color: #92400e;
  text-align: center;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.category-overview-card {
  min-height: 260px;
}

.category-main-link span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-samples a {
  overflow: hidden;
  color: #334155;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.category-samples a:hover {
  color: var(--orange-dark);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.1);
}

.detail-shell {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 68px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 32px;
  color: #cbd5e1;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fbbf24;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.38);
}

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

.detail-copy .eyebrow {
  color: #fbbf24;
}

.detail-copy h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
}

.detail-one-line {
  max-width: 820px;
  margin: 20px 0 0;
  color: #e2e8f0;
  font-size: 20px;
}

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

.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

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

.player-section {
  padding-bottom: 28px;
}

.player-card {
  overflow: hidden;
  border-radius: 30px;
  background: #0f172a;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

.video-frame {
  position: relative;
  background: #020617;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.5));
  cursor: pointer;
  transition: 0.2s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  font-size: 38px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 22px 46px rgba(249, 115, 22, 0.4);
}

.player-overlay:hover span {
  transform: scale(1.06);
}

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

.player-caption {
  padding: 24px;
  color: #fff;
}

.player-caption h2 {
  color: #fff;
  font-size: 26px;
}

.player-caption p {
  margin: 8px 0 0;
  color: #cbd5e1;
}

.detail-content {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.story-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.story-panel h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.story-panel p {
  margin: 0;
  font-size: 17px;
}

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

.site-footer {
  margin-top: 46px;
  color: #cbd5e1;
  background: linear-gradient(135deg, #111827, #0f172a);
}

.footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer li {
  color: #94a3b8;
  font-size: 14px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .nav-links,
  .top-search {
    display: none;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

  .hero-slide,
  .intro-band,
  .split-layout,
  .reverse-layout,
  .detail-layout,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 840px;
  }

  .ranking-panel {
    position: static;
  }

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

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

@media (max-width: 820px) {
  .hero-shell {
    padding-top: 50px;
  }

  .hero-slider {
    min-height: 780px;
  }

  .hero-poster {
    min-height: 300px;
  }

  .hero-poster img {
    min-height: 300px;
  }

  .intro-band,
  .page-hero {
    padding: 28px;
  }

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

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

@media (max-width: 560px) {
  .nav-shell,
  .section-shell,
  .hero-shell,
  .page-hero,
  .detail-shell,
  .footer-grid,
  .footer-bottom,
  .mobile-panel {
    width: min(100% - 22px, 1240px);
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy em {
    display: none;
  }

  .hero-slider {
    min-height: 730px;
  }

  .hero-copy p,
  .page-hero p:not(.eyebrow),
  .detail-one-line {
    font-size: 16px;
  }

  .wide-search,
  .section-heading,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .detail-poster {
    max-width: 100%;
  }

  .story-panel,
  .player-caption {
    padding: 22px;
  }

  .player-overlay span {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
