:root {
  --stone-950: #0c0a09;
  --stone-900: #1c1917;
  --stone-850: #231f1c;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --amber-900: #78350f;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 22px 60px rgba(28, 25, 23, 0.18);
  --shadow-card: 0 12px 30px rgba(28, 25, 23, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--stone-800);
  background: linear-gradient(135deg, var(--stone-100), #fffbeb 48%, var(--stone-200));
  line-height: 1.7;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(41, 37, 36, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--stone-900);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
  font-size: 13px;
}

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

.nav-link {
  color: var(--stone-200);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-400);
}

.nav-search,
.mobile-search,
.search-page-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-search input,
.mobile-search input,
.search-page-form input {
  width: 210px;
  border: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  padding: 10px 14px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.search-page-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.nav-search button,
.mobile-search button {
  border: 0;
  color: var(--stone-900);
  background: var(--amber-400);
  padding: 10px 16px;
  font-weight: 750;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--stone-950);
}

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

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.mobile-link {
  padding: 10px 0;
  color: var(--stone-200);
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--amber-400);
}

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

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

.hero-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--stone-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(245, 158, 11, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.96), rgba(12, 10, 9, 0.68) 42%, rgba(12, 10, 9, 0.18)),
    linear-gradient(0deg, rgba(12, 10, 9, 0.92), rgba(12, 10, 9, 0.08) 45%);
}

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

.hero-copy {
  width: min(680px, 100%);
  padding-top: 40px;
}

.eyebrow,
.section-kicker {
  color: var(--amber-500);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--stone-200);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-meta span,
.detail-meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--stone-200);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 11px 22px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  color: var(--stone-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  color: var(--amber-800);
  border: 1px solid rgba(217, 119, 6, 0.28);
  background: rgba(255, 251, 235, 0.86);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.76);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 34px;
  background: var(--amber-500);
}

.intro-section {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(68, 64, 60, 0.08);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 44px 0;
}

.intro-grid h2,
.section-heading h2,
.page-hero h1,
.detail-side-content h1,
.detail-text-block h2,
.related-aside h2,
.ranking-panel h2 {
  margin: 0;
  color: var(--stone-900);
  line-height: 1.18;
}

.intro-grid h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.intro-grid p {
  margin: 0;
  max-width: 850px;
  color: var(--stone-600);
}

.section-block {
  padding: 70px 0;
}

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

.section-heading h2 {
  margin-top: 6px;
  font-size: clamp(28px, 4vw, 40px);
}

.section-heading > a,
.category-title-link,
.full-link {
  color: var(--amber-700);
  font-weight: 850;
}

.compact-heading {
  margin-bottom: 20px;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(68, 64, 60, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
}

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

.movie-card:hover .movie-poster img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--stone-950);
  background: var(--amber-400);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--stone-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  font-size: 15px;
}

.movie-info {
  padding: 16px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--stone-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-info h3 {
  margin: 8px 0 8px;
  color: var(--stone-900);
  font-size: 18px;
  line-height: 1.3;
}

.movie-info h3 a:hover {
  color: var(--amber-700);
}

.movie-info p {
  min-height: 54px;
  margin: 0 0 14px;
  color: var(--stone-600);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 800;
}

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

.category-band {
  padding: 70px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.2), transparent 30%),
    linear-gradient(135deg, var(--stone-950), var(--stone-800));
}

.light-heading h2,
.light-heading > a {
  color: var(--white);
}

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

.category-card,
.category-overview-card {
  display: grid;
  gap: 12px;
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.category-card strong,
.category-overview-card h2 {
  font-size: 24px;
  color: var(--amber-400);
}

.category-card span,
.category-overview-card p {
  color: var(--stone-300);
}

.category-overview-card {
  color: var(--stone-800);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(68, 64, 60, 0.08);
}

.category-overview-card p {
  color: var(--stone-600);
}

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

.category-samples a {
  color: var(--stone-700);
  font-weight: 700;
}

.category-samples a:hover {
  color: var(--amber-700);
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}

.ranking-panel {
  border-radius: var(--radius-xl);
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: var(--stone-100);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: var(--amber-100);
}

.rank-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--stone-950);
  background: var(--amber-400);
  font-weight: 900;
}

.rank-title {
  overflow: hidden;
  color: var(--stone-900);
  font-weight: 850;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-tag {
  color: var(--stone-500);
  font-size: 13px;
  font-weight: 750;
}

.full-link {
  margin-top: 18px;
}

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

.page-hero {
  padding: 86px 0 68px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(135deg, var(--stone-950), var(--stone-800));
}

.compact-page-hero {
  padding: 72px 0 58px;
}

.page-hero h1 {
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--stone-200);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--stone-300);
  font-weight: 700;
}

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

.filter-panel {
  margin-bottom: 26px;
  padding: 22px;
  border: 1px solid rgba(68, 64, 60, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--stone-600);
  font-weight: 800;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(68, 64, 60, 0.16);
  border-radius: 12px;
  outline: none;
  padding: 0 14px;
  color: var(--stone-900);
  background: var(--white);
}

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

.search-page-form {
  width: min(720px, 100%);
  margin-top: 24px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.search-page-form input {
  flex: 1;
  width: auto;
  min-height: 48px;
  font-size: 17px;
}

.search-results {
  margin-bottom: 30px;
}

.search-results h2 {
  margin: 0 0 20px;
  color: var(--stone-900);
  font-size: 30px;
}

.detail-hero {
  padding: 28px 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.22), transparent 26%),
    linear-gradient(135deg, var(--stone-950), var(--stone-800));
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
}

.player-card,
.detail-side-card,
.detail-article,
.related-aside {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--black);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22));
  font-size: 20px;
  font-weight: 900;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-button-core {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--stone-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.35);
}

.detail-side-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  color: var(--stone-100);
}

.detail-side-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.detail-side-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}

.detail-side-content h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
}

.detail-side-content p {
  margin: 0;
  color: var(--stone-200);
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  padding: 56px 0 30px;
}

.detail-article,
.related-aside {
  color: var(--stone-800);
  border-color: rgba(68, 64, 60, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.detail-text-block {
  padding: 28px;
  border-bottom: 1px solid rgba(68, 64, 60, 0.08);
}

.detail-text-block:last-child {
  border-bottom: 0;
}

.detail-text-block h2,
.related-aside h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.detail-text-block p {
  margin: 0;
  color: var(--stone-700);
  font-size: 17px;
}

.related-aside {
  padding: 24px;
}

.related-grid {
  display: grid;
  gap: 16px;
}

.related-grid .movie-card {
  display: grid;
  grid-template-columns: 118px 1fr;
}

.related-grid .movie-poster {
  aspect-ratio: 3 / 4;
}

.related-grid .movie-info h3 {
  font-size: 16px;
}

.related-grid .movie-info p,
.related-grid .tag-row {
  display: none;
}

.site-footer {
  margin-top: 76px;
  color: var(--stone-300);
  background: var(--stone-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--stone-400);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--stone-400);
}

.footer-links a:hover {
  color: var(--amber-400);
}

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

.is-hidden {
  display: none !important;
}

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

  .two-column-section,
  .detail-content-grid,
  .ranking-page-layout {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .detail-side-card {
    grid-template-columns: 160px 1fr;
  }

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

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

@media (max-width: 680px) {
  .container-custom {
    width: min(100% - 24px, 1280px);
  }

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

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

  .hero-copy {
    padding: 72px 0 42px;
  }

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

  .hero-arrow {
    top: auto;
    bottom: 86px;
    transform: none;
  }

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

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .movie-grid,
  .featured-grid,
  .small-grid,
  .library-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .section-block,
  .category-band {
    padding: 48px 0;
  }

  .page-hero {
    padding: 56px 0 46px;
  }

  .detail-side-card,
  .related-grid .movie-card {
    grid-template-columns: 1fr;
  }

  .detail-side-card img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .detail-content-grid {
    padding-top: 36px;
  }

  .search-page-form {
    align-items: stretch;
    flex-direction: column;
    border-radius: 20px;
  }

  .search-page-form input {
    width: 100%;
  }
}
