:root {
  --bg: #080b12;
  --bg-soft: #101521;
  --bg-card: rgba(16, 21, 33, 0.86);
  --text: #f8fafc;
  --muted: #a8b3c7;
  --muted-strong: #d5deee;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f59e0b;
  --accent-deep: #d97706;
  --accent-soft: rgba(245, 158, 11, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34rem),
    linear-gradient(180deg, #090d15 0%, #0c111c 42%, #080b12 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 18, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

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

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(245, 158, 11, 0.42);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link {
  min-width: 76px;
  padding: 10px 16px;
}

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

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

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

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(14, 18, 29, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  padding: 13px 16px;
  justify-content: flex-start;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #05070d;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 680ms ease;
}

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

.hero-backdrop,
.page-hero,
.detail-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 7, 13, 0.94), rgba(5, 7, 13, 0.64), rgba(5, 7, 13, 0.86)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

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

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 22% 28%, rgba(245, 158, 11, 0.26), transparent 24rem),
    linear-gradient(180deg, transparent, #080b12 96%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 120px 0 110px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: #fed7aa;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(46px, 8vw, 92px);
}

.hero-line {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted-strong);
  font-size: clamp(18px, 2.4vw, 24px);
}

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

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

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

.primary-button,
.ghost-button,
.section-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button {
  color: #ffffff;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 38px rgba(217, 119, 6, 0.34);
}

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

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

.hero-poster-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-poster-card strong {
  font-size: 20px;
}

.hero-poster-card small {
  color: var(--muted);
}

.poster,
.compact-poster,
.detail-poster,
.category-preview-strip span {
  display: block;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    var(--poster-image);
  background-position: center;
  background-size: cover;
}

.poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: #151c2b;
  transition: transform 220ms ease, filter 220ms ease;
}

.poster.large {
  border-radius: 26px;
}

.poster-link:hover .poster,
.hero-poster-card:hover .poster {
  transform: scale(1.025);
  filter: saturate(1.12) contrast(1.05);
}

.poster-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.poster-year {
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
}

.rank-badge {
  top: 10px;
  left: 10px;
  color: #111827;
  background: #fbbf24;
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.58;
  transition: width 180ms ease, opacity 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 34px;
  opacity: 1;
  background: var(--accent);
}

.quick-search-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: -58px auto 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(12, 17, 28, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.quick-search label,
.filter-panel label {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 800;
}

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

input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #ffffff;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

input[type="search"]:focus {
  border-color: rgba(245, 158, 11, 0.76);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.quick-search button {
  min-width: 112px;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  font-weight: 800;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quick-links a {
  padding: 9px 13px;
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

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

.alt-section {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
}

.section-heading p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-link,
.text-link {
  color: #fef3c7;
  background: var(--accent-soft);
}

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

.ranking-grid {
  counter-reset: movie-rank;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.32);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.poster-link {
  display: block;
  padding: 12px 12px 0;
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 700;
}

.movie-card h2 {
  margin: 8px 0 8px;
  font-size: 20px;
  line-height: 1.28;
}

.movie-card p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row span {
  min-height: 26px;
  padding: 3px 9px;
  font-size: 11px;
}

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

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

.category-tile {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(180deg, rgba(8, 11, 18, 0.1), rgba(8, 11, 18, 0.92)),
    var(--poster-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 200ms ease, border-color 200ms ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.38);
}

.category-tile span {
  color: #fbbf24;
  font-weight: 900;
}

.category-tile strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after,
.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 24rem),
    linear-gradient(180deg, rgba(8, 11, 18, 0), #080b12 96%);
}

.page-hero-inner,
.detail-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero-inner {
  padding: 148px 0 76px;
}

.compact-hero .page-hero-inner {
  max-width: 850px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.category-preview-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-preview-strip span {
  min-height: 112px;
  border-radius: 15px;
  background-color: #151c2b;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.filter-panel {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.detail-hero-inner {
  padding: 116px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #fed7aa;
}

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

.detail-poster {
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background-color: #151c2b;
}

.detail-copy h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 78px);
}

.detail-one-line {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
}

.detail-meta,
.detail-tags {
  margin-top: 20px;
}

.detail-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.player-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.movie-video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background-image:
    linear-gradient(180deg, rgba(8, 11, 18, 0.2), rgba(8, 11, 18, 0.82)),
    var(--poster-image);
  background-position: center;
  background-size: cover;
  transition: opacity 180ms ease, visibility 180ms ease;
}

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

.play-pulse {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  padding-left: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 14px rgba(245, 158, 11, 0.12), 0 20px 52px rgba(0, 0, 0, 0.4);
  font-size: 36px;
}

.player-cover strong {
  font-size: clamp(22px, 3vw, 34px);
}

.player-start {
  width: fit-content;
  border: 0;
}

.detail-article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
}

.detail-article h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 26px;
}

.detail-article h2 + p {
  margin-top: 0;
}

.detail-article p {
  color: var(--muted-strong);
  font-size: 17px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.35);
}

.compact-poster {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  background-color: #151c2b;
}

.compact-card strong,
.compact-card small {
  display: block;
}

.compact-card small {
  margin-top: 4px;
  color: var(--muted);
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), #05070d);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 36px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.empty-result {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
}

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

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

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

  .mobile-menu-button {
    display: block;
  }

  .hero-content,
  .detail-layout,
  .quick-search-panel,
  .footer-inner,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 28px;
    padding-top: 110px;
  }

  .hero-poster-card {
    max-width: 280px;
  }

  .quick-search-panel {
    margin-top: -34px;
  }

  .quick-links {
    justify-content: flex-start;
  }

  .section-heading {
    display: grid;
  }

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

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

@media (max-width: 620px) {
  .site-header-inner {
    height: 68px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

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

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.045em;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 88vh;
    padding-bottom: 100px;
  }

  .hero-actions,
  .quick-search div {
    display: grid;
  }

  .quick-search button {
    min-height: 48px;
  }

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

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

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

  .category-preview-strip span {
    min-height: 100px;
  }

  .compact-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}
