:root {
  --primary-50: #eaf4ff;
  --primary-100: #d6eaff;
  --primary-500: #0073e6;
  --primary-600: #005bb3;
  --accent-50: #fff3e6;
  --accent-500: #e67300;
  --accent-600: #c76300;
  --neutral-50: #f8f9fa;
  --neutral-100: #f1f3f5;
  --neutral-200: #dee2e6;
  --neutral-500: #6c757d;
  --neutral-700: #343a40;
  --neutral-900: #0d0f12;
  --white: #ffffff;
  --shadow-sm: 0 4px 10px rgba(13, 15, 18, 0.08);
  --shadow-md: 0 12px 28px rgba(13, 15, 18, 0.12);
  --shadow-lg: 0 24px 70px rgba(13, 15, 18, 0.20);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--neutral-50);
  color: var(--neutral-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container-custom {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 226, 230, 0.65);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 115, 230, 0.25);
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  color: var(--neutral-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-500);
}

.mobile-nav-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--neutral-100);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-button span {
  width: 20px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding: 0.75rem 1rem 1rem;
  background: var(--white);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav .nav-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
}

.mobile-nav .nav-link.active,
.mobile-nav .nav-link:hover {
  background: var(--primary-50);
}

.page-main {
  min-height: 70vh;
  padding-top: 72px;
}

.hero-slider {
  position: relative;
  height: min(72vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background: var(--neutral-900);
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 18, 0.92), rgba(13, 15, 18, 0.50), rgba(13, 15, 18, 0.18)),
    linear-gradient(0deg, rgba(13, 15, 18, 0.88), rgba(13, 15, 18, 0.12));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding-bottom: 4.5rem;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(230, 115, 0, 0.95);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.simple-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.simple-hero p {
  max-width: 720px;
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.text-link,
.full-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  padding: 0.75rem 1.35rem;
  background: var(--primary-500);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(0, 115, 230, 0.28);
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0, 115, 230, 0.32);
}

.btn-secondary {
  padding: 0.75rem 1.35rem;
  background: var(--white);
  color: var(--neutral-900);
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  padding: 0.75rem 1.1rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
  left: 1rem;
}

.hero-next {
  right: 1rem;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.active {
  width: 32px;
  background: var(--white);
}

.section-block,
.search-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.white-section {
  background: var(--white);
}

.gradient-section {
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  color: var(--neutral-900);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.section-head p {
  max-width: 780px;
  margin: 0.5rem 0 0;
  color: var(--neutral-500);
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.text-link {
  color: var(--primary-500);
  font-weight: 900;
}

.text-link:hover {
  color: var(--primary-600);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-panel label {
  display: grid;
  gap: 0.35rem;
  color: var(--neutral-700);
  font-weight: 800;
}

.filter-panel span {
  font-size: 0.86rem;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: var(--neutral-50);
  color: var(--neutral-900);
  padding: 0.65rem 0.8rem;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.12);
}

.movie-grid,
.large-grid,
.category-grid,
.compact-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

.movie-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.card-cover {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

.poster-cover {
  aspect-ratio: 3 / 4;
}

.wide-cover {
  aspect-ratio: 16 / 9;
}

.card-cover img,
.list-cover img,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover .card-cover img,
.movie-card:hover .list-cover img,
.category-card:hover img {
  transform: scale(1.08);
}

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 15, 18, 0.78), rgba(13, 15, 18, 0.08));
}

.cover-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--white);
}

.cover-caption h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.year-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
}

.card-body h3 {
  margin: 0;
  display: -webkit-box;
  color: var(--neutral-900);
  font-size: 1.03rem;
  line-height: 1.34;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  margin: 0;
  display: -webkit-box;
  color: var(--neutral-500);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--neutral-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.movie-meta span:first-child {
  color: var(--primary-600);
}

.light-meta {
  color: rgba(255, 255, 255, 0.9);
}

.tag-row {
  margin-top: auto;
}

.tag-row span {
  background: var(--primary-50);
  color: var(--primary-600);
}

.movie-card-list a {
  flex-direction: row;
}

.list-cover {
  width: 176px;
  min-height: 128px;
  flex: 0 0 176px;
  overflow: hidden;
}

.list-stack {
  display: grid;
  gap: 1rem;
}

.pill-row,
.year-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pill-link,
.year-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--neutral-700);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pill-link:hover,
.year-row a:hover {
  transform: translateY(-2px);
  background: var(--primary-500);
  color: var(--white);
}

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.horizontal-row::-webkit-scrollbar {
  display: none;
}

.page-hero {
  background: radial-gradient(circle at 15% 10%, rgba(0, 115, 230, 0.55), transparent 35%), linear-gradient(135deg, var(--neutral-900), #172033 60%, #251409);
  color: var(--white);
}

.simple-hero .container-custom {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.simple-hero h1 {
  max-width: 980px;
}

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

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

.category-card {
  position: relative;
  min-height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 15, 18, 0.84), rgba(13, 15, 18, 0.08));
}

.category-card span,
.category-card strong {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
}

.category-card span {
  bottom: 2.5rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.category-card strong {
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.rank-list {
  display: grid;
  gap: 1rem;
}

.rank-item a {
  display: grid;
  grid-template-columns: 68px 112px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rank-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.rank-item img {
  width: 112px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-item h2 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.rank-item p {
  margin: 0 0 0.5rem;
  color: var(--neutral-500);
}

.detail-top {
  background: var(--neutral-900);
  color: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--neutral-900);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}

.movie-video {
  width: 100%;
  height: 100%;
  background: var(--neutral-900);
}

.player-poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.play-badge {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 115, 230, 0.92);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 20px 45px rgba(0, 115, 230, 0.35);
}

.detail-content {
  margin-top: 1.5rem;
}

.detail-content h1 {
  margin: 0 0 0.8rem;
  color: var(--neutral-900);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.detail-meta span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--neutral-700);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.detail-tags {
  margin-bottom: 1.25rem;
}

.detail-tags a {
  background: var(--accent-50);
  color: var(--accent-600);
}

.content-card,
.side-card {
  margin-bottom: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-card h2,
.side-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.content-card p {
  margin: 0;
  color: var(--neutral-700);
}

.detail-side {
  position: relative;
}

.side-card {
  position: sticky;
  top: 92px;
}

.side-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
}

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--neutral-100);
  padding-bottom: 0.65rem;
}

.side-card dt {
  color: var(--neutral-500);
}

.side-card dd {
  margin: 0;
  color: var(--neutral-900);
  font-weight: 800;
  text-align: right;
}

.full-button {
  width: 100%;
}

.empty-state {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--neutral-500);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.site-footer {
  margin-top: 4rem;
  background: var(--neutral-900);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

[data-movie-card].is-hidden {
  display: none;
}

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

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

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

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

  .mobile-nav-button {
    display: inline-flex;
  }

  .hero-slider {
    height: 680px;
    min-height: 600px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(13, 15, 18, 0.94), rgba(13, 15, 18, 0.26));
  }

  .hero-content {
    padding-bottom: 4rem;
  }

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

  .side-card {
    position: static;
  }

  .split-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
  }

  .page-main {
    padding-top: 64px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

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

  .hero-control {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .filter-panel {
    gap: 0.75rem;
  }

  .filter-panel label:first-child {
    grid-column: 1 / -1;
  }

  .movie-card-list a {
    flex-direction: column;
  }

  .list-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: auto;
  }

  .rank-item a {
    grid-template-columns: 48px 86px 1fr;
    gap: 0.75rem;
  }

  .rank-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .rank-item img {
    width: 86px;
    height: 70px;
  }

  .rank-item p {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .full-grid,
  .compact-grid,
  .movie-grid,
  .category-grid,
  .genre-grid {
    grid-template-columns: 1fr;
  }

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