:root {
  color-scheme: light;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-50: #fdf2f8;
  --pink-400: #f472b6;
  --amber-400: #fbbf24;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-soft: 0 18px 45px rgba(244, 63, 94, 0.14);
  --shadow-card: 0 12px 32px rgba(17, 24, 39, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--gray-800);
  background: linear-gradient(135deg, var(--rose-50), #ffffff 42%, var(--pink-50));
  min-height: 100vh;
}

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

img {
  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 var(--rose-100);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-400), var(--pink-400));
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.28);
  font-size: 13px;
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-400));
  -webkit-background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.nav-link {
  padding: 10px 12px;
  color: var(--gray-700);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--rose-600);
  background: var(--rose-50);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.site-search-input,
.movie-filter-input,
.movie-year-select,
.movie-genre-select {
  border: 1px solid var(--rose-200);
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search-input:focus,
.movie-filter-input:focus,
.movie-year-select:focus,
.movie-genre-select:focus {
  border-color: var(--rose-400);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.18);
}

.header-search .site-search-input {
  width: 230px;
  padding: 10px 15px;
}

.search-button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-button,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.24);
}

.ghost-button {
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--rose-200);
}

.search-button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(244, 63, 94, 0.26);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--rose-50);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gray-700);
  border-radius: 2px;
}

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

.mobile-search {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search .site-search-input {
  width: 100%;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  margin-top: 4px;
  color: var(--gray-700);
  border-radius: 14px;
  font-weight: 700;
}

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

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

.hero {
  position: relative;
  padding: 34px 0 22px;
}

.hero-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--gray-900);
  box-shadow: var(--shadow-soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) saturate(1.18);
  transform: scale(1.12);
  opacity: 0.46;
}

.hero-backdrop::after,
.soft-backdrop::after,
.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 24, 39, 0.82), rgba(244, 63, 94, 0.46), rgba(255, 255, 255, 0.18));
}

.hero-content,
.hero-poster,
.page-hero-content,
.detail-hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-600);
  background: rgba(255, 228, 230, 0.72);
  border: 1px solid rgba(254, 205, 211, 0.8);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero h1 {
  margin: 20px 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-summary {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.9;
}

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

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

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

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

.tag-row span,
.tag-cloud a {
  color: var(--rose-600);
  background: var(--rose-50);
}

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

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 64px;
  bottom: 38px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

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

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

.search-band {
  padding: 22px 0 8px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.search-panel h2,
.section-heading h2,
.spotlight-panel h2,
.content-card h2,
.overview-body h2,
.page-hero h1 {
  margin: 12px 0 0;
  color: var(--gray-900);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.big-search {
  display: flex;
  gap: 10px;
}

.big-search .site-search-input {
  width: 100%;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 48px 0 22px;
}

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

.section-heading a,
.text-link {
  color: var(--rose-600);
  font-weight: 900;
}

.stacked {
  display: block;
}

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

.category-tile {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--rose-100);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.88));
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover,
.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(244, 63, 94, 0.16);
}

.category-tile span {
  color: var(--rose-600);
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--rose-100);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), var(--pink-50));
}

.card-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.card-badge,
.card-score {
  position: absolute;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.card-badge {
  left: 12px;
  background: var(--rose-500);
}

.card-score {
  right: 12px;
  background: rgba(17, 24, 39, 0.78);
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-title:hover {
  color: var(--rose-600);
}

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

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

.card-meta span,
.rank-meta span,
.detail-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gray-50);
}

.split-section,
.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 70px;
}

.ranking-panel,
.spotlight-panel,
.player-card,
.content-card,
.overview-card {
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.ranking-panel,
.spotlight-panel {
  padding: 22px;
}

.rank-list {
  display: grid;
  gap: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 16px;
  padding: 12px;
  border-radius: 18px;
}

.rank-cover {
  overflow: hidden;
  border-radius: 14px;
}

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

.rank-title {
  display: block;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.rank-info p {
  margin: 0 0 12px;
  color: var(--gray-600);
  line-height: 1.7;
}

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

.compact-card .card-body {
  padding: 12px;
}

.compact-card .card-title {
  min-height: 42px;
  font-size: 15px;
}

.compact-card .card-desc,
.compact-card .tag-row {
  display: none;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  margin-bottom: 34px;
  color: var(--gray-900);
}

.soft-hero {
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(251, 113, 133, 0.22), transparent 34%), linear-gradient(135deg, #ffffff, var(--rose-50));
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 7vw, 70px);
}

.page-hero p {
  max-width: 760px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.8;
}

.category-hero,
.ranking-hero {
  display: flex;
  align-items: center;
  min-height: 410px;
  color: #ffffff;
}

.category-hero .page-hero-content h1,
.ranking-hero .page-hero-content h1,
.category-hero .page-hero-content p,
.ranking-hero .page-hero-content p {
  color: #ffffff;
}

.soft-backdrop {
  position: absolute;
  inset: 0;
}

.soft-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) saturate(1.12);
  transform: scale(1.08);
}

.filter-section {
  padding-bottom: 70px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--rose-100);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.filter-bar .movie-filter-input {
  min-width: min(100%, 360px);
  flex: 1;
}

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

.overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--rose-50);
}

.overview-cover img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}

.overview-body {
  padding: 24px;
}

.overview-body p {
  color: var(--gray-600);
  line-height: 1.8;
}

.wide-panel {
  padding: 22px;
}

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

.detail-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) saturate(1.08);
  transform: scale(1.08);
}

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

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.detail-poster {
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

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

.detail-intro h1 {
  margin: 18px 0;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
}

.lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.9;
}

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

.player-section {
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.player-card {
  position: relative;
  overflow: hidden;
  background: #000000;
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.74));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 50%;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  font-size: 34px;
}

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

.content-card {
  padding: 26px;
}

.content-card p {
  color: var(--gray-700);
  line-height: 2;
}

.detail-tags dl {
  margin: 18px 0;
}

.detail-tags dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rose-100);
}

.detail-tags dt {
  color: var(--gray-500);
  font-weight: 800;
}

.detail-tags dd {
  margin: 0;
  color: var(--gray-800);
  font-weight: 800;
  text-align: right;
}

.related-section {
  padding-bottom: 76px;
}

.detail-neighbors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.detail-neighbors a {
  padding: 16px 18px;
  border: 1px solid var(--rose-100);
  border-radius: 18px;
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--rose-100);
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.94), rgba(255, 255, 255, 0.96));
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.4fr) minmax(280px, 0.8fr);
  gap: 30px;
}

.footer-brand p {
  max-width: 520px;
  color: var(--gray-600);
  line-height: 1.8;
}

.footer-links,
.footer-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: start;
}

.footer-links a,
.footer-cats a {
  color: var(--gray-600);
  font-weight: 800;
}

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

.movie-card.is-hidden,
.rank-item.is-hidden {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

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

  .hero-slide,
  .detail-layout,
  .search-panel,
  .split-section,
  .ranking-layout,
  .detail-content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-slide {
    align-items: end;
    padding: 42px;
  }

  .hero-poster {
    width: min(320px, 70vw);
    justify-self: start;
    order: -1;
  }

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

  .sidebar-panel {
    position: static;
  }
}

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

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

  .hero-shell {
    min-height: 720px;
    border-radius: 24px;
  }

  .hero-slide {
    padding: 32px 24px 70px;
  }

  .hero-dots {
    left: 24px;
    bottom: 28px;
  }

  .hero-control {
    display: none;
  }

  .rank-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

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

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .hero-shell,
  .footer-inner,
  .mobile-nav {
    width: min(100% - 22px, 1180px);
  }

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

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

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

  .hero-summary,
  .lead,
  .page-hero p {
    font-size: 16px;
  }

  .big-search,
  .mobile-search,
  .filter-bar {
    flex-direction: column;
  }

  .search-button,
  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .detail-hero {
    min-height: auto;
  }

  .player-section {
    margin-top: -34px;
  }
}
