:root {
  --color-slate-950: #020617;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-blue-700: #1d4ed8;
  --color-blue-600: #2563eb;
  --color-blue-500: #3b82f6;
  --color-blue-100: #dbeafe;
  --color-gray-950: #030712;
  --color-gray-900: #111827;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-500: #6b7280;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.10);
  --shadow-card-hover: 0 22px 55px rgba(15, 23, 42, 0.18);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-gray-900);
  background: var(--color-gray-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--color-slate-900), var(--color-slate-800), var(--color-slate-900));
  box-shadow: 0 10px 35px rgba(2, 6, 23, 0.28);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--color-blue-600);
  transition: transform 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-mark {
  background: var(--color-blue-700);
  transform: translateY(-1px);
}

.brand-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.brand-icon-play {
  fill: currentColor;
  stroke: none;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

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

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

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

.nav-link,
.mobile-nav-link {
  color: #cbd5e1;
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #fff;
}

.header-search {
  width: 250px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  min-width: 0;
  color: #fff;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  background: transparent;
}

.header-search input::placeholder {
  color: #94a3b8;
}

.header-search button {
  border: 0;
  color: #fff;
  padding: 10px 14px;
  background: var(--color-blue-600);
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-slate-800);
}

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

.hero-section,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--color-slate-900), #1e3a8a 52%, var(--color-slate-900));
}

.hero-section {
  min-height: 650px;
}

.hero-pattern,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 62px 62px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  align-items: center;
}

.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 56px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 16px 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.hero-summary {
  max-width: 720px;
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.75;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

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

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

.primary-button {
  color: #fff;
  background: var(--color-blue-600);
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.35);
}

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

.primary-button:hover {
  background: var(--color-blue-700);
}

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

.ghost-button.dark {
  color: var(--color-slate-900);
  border-color: var(--color-gray-200);
  background: #fff;
}

.hero-poster {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.9));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.32));
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span,
.image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-poster.image-missing span,
.poster-frame.image-missing .image-fallback {
  display: grid;
}

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

.hero-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}

.hero-dots button.is-active {
  background: var(--color-blue-500);
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #fff;
}

.section-muted {
  background: var(--color-gray-50);
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--color-gray-900);
}

.section-heading p {
  margin: 0;
  color: var(--color-gray-600);
}

.section-more {
  color: var(--color-blue-600);
  font-weight: 800;
}

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

.feature-grid article {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.feature-grid strong {
  display: block;
  color: var(--color-blue-600);
  font-size: 38px;
  line-height: 1;
}

.feature-grid span {
  display: block;
  margin-top: 10px;
  color: var(--color-gray-600);
  font-weight: 700;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: var(--shadow-card-hover);
}

.poster-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.movie-card-compact .poster-frame {
  aspect-ratio: 4 / 5;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.corner-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  color: #fff;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.94);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.corner-badge {
  left: 10px;
}

.rank-badge {
  right: 10px;
  background: rgba(245, 158, 11, 0.94);
}

.play-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(2, 6, 23, 0);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.movie-card:hover .play-hover {
  opacity: 1;
  background: rgba(2, 6, 23, 0.35);
}

.play-icon {
  width: 56px;
  height: 56px;
  fill: currentColor;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.card-body {
  padding: 14px;
}

.card-body h3 {
  min-height: 44px;
  margin: 0 0 8px;
  color: var(--color-gray-900);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--color-gray-500);
  font-size: 12px;
}

.tag-row span {
  color: var(--color-blue-700);
  background: var(--color-blue-100);
}

.page-hero {
  padding: 82px 0;
}

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

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.compact-hero {
  padding: 62px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #bfdbfe;
  font-size: 14px;
}

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

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

.category-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  min-height: 150px;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.category-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-card-body {
  padding: 24px;
}

.category-card-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.category-card-body p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.category-card-body strong {
  color: var(--color-blue-600);
}

.filter-toolbar {
  display: grid;
  grid-template-columns: 2fr repeat(5, minmax(120px, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.filter-toolbar label {
  display: grid;
  gap: 6px;
}

.filter-toolbar span {
  color: var(--color-gray-600);
  font-size: 12px;
  font-weight: 800;
}

.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--color-gray-200);
  border-radius: 10px;
  outline: none;
  padding: 0 12px;
  background: #fff;
}

.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--color-blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

.filter-reset {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--color-slate-800);
  padding: 0 16px;
  cursor: pointer;
}

.filter-count {
  margin: 0;
  color: var(--color-gray-600);
  white-space: nowrap;
}

.filter-count strong {
  color: var(--color-blue-600);
}

.detail-hero {
  min-height: 520px;
  padding: 42px 0 70px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.04);
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.72));
}

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

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

.detail-poster {
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.detail-info h1 {
  margin-top: 12px;
  font-size: clamp(36px, 6vw, 66px);
}

.detail-one-line {
  max-width: 850px;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.detail-meta-grid span {
  display: grid;
  gap: 4px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.detail-meta-grid strong {
  color: #bfdbfe;
  font-size: 12px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.30);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.26), rgba(2, 6, 23, 0.78));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-blue-600);
  box-shadow: 0 20px 55px rgba(37, 99, 235, 0.45);
}

.player-play .play-icon {
  width: 46px;
  height: 46px;
}

.player-overlay strong {
  font-size: 24px;
}

.player-overlay small {
  color: #cbd5e1;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 3;
  margin: 0;
  color: #bfdbfe;
  font-size: 14px;
  text-align: center;
}

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

.content-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
}

.content-card p {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 17px;
  line-height: 1.95;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 42px;
}

.podium-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.podium-card a {
  display: grid;
  min-height: 100%;
}

.podium-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}

.podium-card h2,
.podium-card p,
.podium-card strong {
  margin-left: 22px;
  margin-right: 22px;
}

.podium-card h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.podium-card p {
  color: var(--color-gray-600);
  line-height: 1.7;
}

.podium-card strong {
  margin-bottom: 22px;
  color: var(--color-blue-600);
  font-size: 26px;
}

.podium-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.96);
  padding: 8px 12px;
  font-weight: 900;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--color-slate-900), var(--color-slate-950));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0 34px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-grid p {
  margin: 0;
  line-height: 1.8;
}

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

.footer-grid a:hover {
  color: #fff;
}

.footer-tags {
  color: #cbd5e1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 9px 14px;
  cursor: pointer;
}

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

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

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

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

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

  .hero-slide,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    min-height: 420px;
  }

  .feature-grid,
  .footer-grid,
  .prose-section,
  .podium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .hero-slide {
    gap: 30px;
  }

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

  .hero-poster {
    min-height: 360px;
    border-radius: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .feature-grid,
  .category-grid,
  .footer-grid,
  .prose-section,
  .podium-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand-text small {
    display: none;
  }

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