:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-100: #ffedd5;
  --amber-50: #fffbeb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-orange: 0 18px 40px rgba(249, 115, 22, 0.28);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 34rem),
    linear-gradient(135deg, #f8fafc 0%, #fff7ed 42%, #f8fafc 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.28);
}

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

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: var(--shadow-orange);
  transition: transform 0.28s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

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

.brand-text strong {
  color: var(--white);
  font-size: 21px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 650;
  transition: 0.25s ease;
}

.nav-link {
  padding: 10px 14px;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: var(--white);
  background: rgba(249, 115, 22, 0.95);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.26);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.72);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  background: var(--slate-900);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.mobile-link {
  display: block;
  padding: 13px 16px;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--slate-950), #7c2d12, var(--slate-900));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background:
    radial-gradient(circle at 18% 20%, rgba(251, 146, 60, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 40%, rgba(255, 255, 255, 0.13), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055) 25%, transparent 25%) 0 0 / 42px 42px;
}

.hero-track {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 610px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.74fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0 86px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0 -80px;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.74), rgba(124, 45, 18, 0.68)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(0px) saturate(1.1);
  opacity: 0.52;
}

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

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.hero-kicker {
  margin: 18px 0 0;
  color: var(--orange-400);
  font-size: clamp(21px, 3vw, 34px);
  font-weight: 800;
}

.hero-summary {
  max-width: 760px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.82;
}

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

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

.hero-tags span,
.detail-tags span,
.genre-row span,
.card-tags span {
  border-radius: 999px;
  color: #7c2d12;
  background: var(--orange-100);
  font-size: 12px;
  font-weight: 750;
}

.hero-tags span,
.detail-tags span,
.genre-row span {
  padding: 8px 12px;
}

.card-tags span {
  padding: 5px 8px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.28s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: var(--shadow-orange);
}

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

.btn-line {
  color: #fed7aa;
  border: 1px solid rgba(251, 146, 60, 0.48);
}

.btn:hover,
.section-more:hover,
.category-tile:hover,
.movie-card:hover,
.category-card-wide:hover {
  transform: translateY(-3px);
}

.hero-poster {
  display: block;
  justify-self: end;
  width: min(360px, 100%);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
}

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

.hero-poster span {
  display: block;
  padding: 18px 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  background: rgba(15, 23, 42, 0.88);
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-categories a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-dot.is-active {
  width: 28px;
  background: var(--orange-500);
}

.intro-strip,
.content-section,
.story-layout,
.detail-hero,
.player-section,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.intro-strip {
  margin-top: -36px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intro-strip div {
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow-soft);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-size: 18px;
}

.intro-strip span {
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 14px;
}

.content-section,
.player-section {
  padding: 70px 0 0;
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1,
.story-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.section-more {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 14px;
  color: var(--white);
  background: var(--slate-900);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: none;
  color: var(--slate-900);
  background: var(--white);
}

.search-box input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-buttons button {
  border: 0;
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--slate-600);
  background: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-buttons button.is-active {
  color: var(--white);
  background: var(--orange-500);
}

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

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

.movie-card {
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition: 0.28s ease;
}

.movie-card.is-hidden,
.ranking-row.is-hidden {
  display: none;
}

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

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--slate-900);
}

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

.movie-card:hover .card-cover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-width: 38px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 16px;
}

.card-meta {
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 850;
}

.card-title {
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.35;
}

.card-desc {
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.7;
}

.movie-card.is-compact .card-body {
  padding: 13px;
}

.movie-card.is-compact .card-title {
  font-size: 15px;
}

.movie-card.is-compact .card-desc {
  display: none;
}

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

.category-tile {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.5), transparent 40%),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow-soft);
  transition: 0.28s ease;
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile strong {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

.ranking-list {
  display: grid;
  gap: 12px;
}

.ranking-list.large {
  gap: 14px;
}

.ranking-row {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ranking-link {
  display: grid;
  grid-template-columns: 58px 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 13px 18px;
}

.ranking-number {
  color: var(--orange-600);
  font-size: 22px;
  font-weight: 950;
}

.ranking-row img {
  width: 72px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-main {
  display: grid;
  gap: 4px;
}

.ranking-main strong {
  font-size: 18px;
}

.ranking-main small,
.ranking-main em {
  color: var(--slate-600);
  font-size: 13px;
  font-style: normal;
}

.ranking-action {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--white);
  background: var(--slate-900);
  font-size: 13px;
  font-weight: 850;
}

.page-hero {
  margin-top: 42px;
  padding: 54px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.42), transparent 36%),
    linear-gradient(135deg, var(--slate-900), #7c2d12);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 58px);
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.8;
}

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

.category-card-wide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: 0.28s ease;
}

.category-card-wide a {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

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

.category-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.category-card-wide h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-card-wide p {
  color: var(--slate-600);
  line-height: 1.72;
}

.category-card-wide span:last-child {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange-500);
  font-weight: 850;
}

.detail-hero {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 237, 213, 0.84));
  box-shadow: var(--shadow-soft);
}

.detail-poster {
  border-radius: 26px;
  overflow: hidden;
  background: var(--slate-900);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.26);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 700;
}

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

.detail-info h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 22px 0;
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.9;
}

.detail-tags,
.genre-row {
  margin-top: 13px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--slate-950);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 24px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.82));
  cursor: pointer;
}

.player-overlay.is-hidden {
  display: none;
}

.play-symbol {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: var(--shadow-orange);
  font-size: 28px;
}

.player-overlay strong {
  font-size: clamp(20px, 3vw, 34px);
  text-align: center;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding-top: 34px;
}

.story-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.story-card h2 {
  font-size: 28px;
}

.story-card p {
  margin: 18px 0 0;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.95;
}

.accent-card {
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), #7c2d12);
}

.accent-card h2,
.accent-card p {
  color: var(--white);
}

.site-footer {
  margin-top: 80px;
  padding: 46px 0 22px;
  color: #cbd5e1;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

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

.footer-brand strong,
.site-footer h2 {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  color: #94a3b8;
  line-height: 1.8;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  color: var(--white);
  background: var(--orange-500);
}

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero-slide,
  .detail-hero,
  .story-layout,
  .category-card-wide a,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    justify-self: start;
    width: min(280px, 100%);
  }

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

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

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

  .filter-buttons {
    justify-content: flex-start;
  }
}

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .hero,
  .hero-track {
    min-height: 760px;
  }

  .hero-slide {
    gap: 26px;
    padding: 44px 0 150px;
  }

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

  .hero-summary {
    font-size: 17px;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

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

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

  .card-body {
    padding: 13px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-desc,
  .card-tags,
  .ranking-main em,
  .ranking-action {
    display: none;
  }

  .ranking-link {
    grid-template-columns: 46px 58px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .ranking-row img {
    width: 58px;
  }

  .page-hero,
  .detail-hero {
    padding: 26px;
    border-radius: 24px;
  }

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

  .story-card {
    padding: 22px;
  }
}

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

  .hero-actions .btn {
    width: 100%;
  }
}
