* {
  box-sizing: border-box;
}

:root {
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-900: #7f1d1d;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 18px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.22);
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.25);
}

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

.brand-text {
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

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

.nav-link:hover,
.mobile-nav-link:hover,
.nav-link.active,
.mobile-nav-link.active {
  color: var(--red-600);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
  color: var(--gray-900);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
  background: #ffffff;
}

.mobile-nav.open {
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-stage {
  position: relative;
  min-height: 540px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.8s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.82));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 540px;
}

.hero-copy {
  max-width: 720px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--red-100);
  background: rgba(220, 38, 38, 0.28);
  border: 1px solid rgba(254, 226, 226, 0.18);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 640px;
  margin: 0 0 24px;
  color: var(--gray-200);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.filter-badges,
.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags span,
.filter-badges span,
.info-badges span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--red-600);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.28);
}

.btn-primary:hover {
  background: var(--red-700);
}

.btn-light {
  color: var(--gray-900);
  background: #ffffff;
}

.btn-light:hover {
  background: var(--gray-100);
}

.hero-search {
  display: flex;
  width: min(100%, 560px);
  margin-top: 28px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-xl);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 15px 18px;
  color: var(--gray-900);
  background: transparent;
  outline: none;
}

.hero-search button {
  border: 0;
  padding: 0 24px;
  color: #ffffff;
  background: var(--red-600);
  font-weight: 800;
  cursor: pointer;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.stats-strip {
  background: var(--gray-900);
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid div {
  padding: 24px 18px;
  text-align: center;
  background: var(--gray-900);
}

.stats-grid strong {
  display: block;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
  color: var(--red-500);
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--gray-300);
  font-size: 14px;
}

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

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

.section-dark {
  background: linear-gradient(135deg, var(--gray-900), var(--red-900));
  color: #ffffff;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.section-dark .section-head p,
.light-head p {
  color: var(--gray-300);
}

.section-more {
  color: var(--red-600);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card a {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gray-800), var(--red-900));
  box-shadow: var(--shadow-md);
}

.poster-frame::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.poster-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.78));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-frame::after {
  opacity: 1;
}

.poster-badge,
.poster-rating,
.rank-number {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.poster-badge {
  top: 10px;
  right: 10px;
  background: var(--red-600);
}

.poster-rating {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.62);
}

.rank-number {
  top: 10px;
  left: 10px;
  min-width: 32px;
  justify-content: center;
  background: rgba(17, 24, 39, 0.84);
}

.poster-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.94);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card h3 {
  margin: 12px 0 4px;
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--red-600);
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-desc {
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag-row span {
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--red-700);
  background: var(--red-50);
  font-size: 12px;
  font-weight: 700;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gray-900), var(--red-900));
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.category-card h3,
.category-overview-card h2 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--gray-200);
}

.category-count {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.category-cover {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
  width: 130px;
  height: 190px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  transform: rotate(8deg);
}

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

.category-mosaic span {
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gray-800), var(--red-900));
  background-size: cover;
  background-position: center;
}

.page-hero {
  padding: 58px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.page-hero-red {
  background: linear-gradient(135deg, var(--gray-900), var(--red-900));
}

.page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.breadcrumb {
  margin: 0;
  color: var(--gray-300);
  font-size: 14px;
}

.breadcrumb a {
  color: #ffffff;
  font-weight: 700;
}

.filter-badges {
  margin-top: 22px;
}

.filter-badges span,
.info-badges span {
  color: var(--gray-900);
  background: #ffffff;
  border: 0;
}

.rank-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: center;
}

.section-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--red-100);
  background: rgba(220, 38, 38, 0.28);
  font-weight: 800;
}

.rank-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.05;
}

.rank-panel p {
  margin: 0 0 24px;
  color: var(--gray-300);
}

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

.rank-row,
.ranking-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover,
.ranking-line:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.rank-index,
.ranking-line-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--red-600);
  font-weight: 900;
}

.rank-title,
.ranking-line-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-score {
  color: #facc15;
  font-weight: 900;
}

.ranking-line {
  grid-template-columns: 48px minmax(0, 1fr) 100px 120px 86px;
  color: var(--gray-900);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.ranking-line:hover {
  background: var(--red-50);
}

.search-panel {
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 20px;
  background: var(--gray-50);
  box-shadow: var(--shadow-sm);
}

.search-panel label {
  display: grid;
  gap: 6px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
}

.search-panel input,
.search-panel select {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--gray-900);
  background: #ffffff;
  outline: none;
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.search-count {
  margin: 0 0 24px;
  color: var(--gray-600);
  font-weight: 800;
}

.detail-main {
  color: #ffffff;
  background: var(--gray-900);
}

.detail-wrap {
  padding: 26px 0 70px;
}

.detail-breadcrumb {
  margin-bottom: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.82fr);
  gap: 24px;
}

.detail-primary {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000000;
  box-shadow: var(--shadow-xl);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58));
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: var(--red-600);
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.36);
  font-size: 28px;
}

.player-card.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.detail-info-card,
.side-card,
.content-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: 18px;
  background: var(--gray-800);
  box-shadow: var(--shadow-md);
}

.content-card {
  margin-top: 0;
  color: var(--gray-700);
  background: #ffffff;
}

.content-card h2 {
  margin: 26px 0 10px;
  color: var(--gray-900);
}

.content-card h2:first-child {
  margin-top: 0;
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.detail-title-row h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.detail-title-row p {
  margin: 0;
  color: var(--gray-300);
}

.detail-score {
  flex: 0 0 auto;
  color: #facc15;
  font-size: 22px;
}

.detail-tags {
  margin-bottom: 22px;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.12);
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.detail-meta-grid div {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.detail-meta-grid .wide {
  grid-column: span 2;
}

.detail-meta-grid b,
.detail-meta-grid span {
  display: block;
}

.detail-meta-grid b {
  margin-bottom: 4px;
  color: var(--gray-400);
  font-size: 13px;
}

.story-section {
  margin-top: 22px;
}

.story-section h2,
.side-card h2 {
  margin: 0 0 12px;
}

.story-section p,
.notice-card li {
  color: var(--gray-300);
}

.detail-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.related-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-row:first-of-type {
  border-top: 0;
}

.related-thumb {
  flex: 0 0 76px;
  height: 112px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gray-700), var(--red-900));
  background-size: cover;
  background-position: center;
}

.related-row strong,
.related-row em,
.related-row small {
  display: block;
}

.related-row strong {
  color: #ffffff;
  line-height: 1.35;
}

.related-row em,
.related-row small {
  margin-top: 4px;
  color: var(--gray-400);
  font-size: 12px;
  font-style: normal;
}

.notice-card ul {
  margin: 0;
  padding-left: 18px;
}

.detail-related-block {
  padding-bottom: 0;
  background: transparent;
}

.detail-related-block .movie-card h3 {
  color: #ffffff;
}

.detail-related-block .movie-meta,
.detail-related-block .movie-desc {
  color: var(--gray-400);
}

.site-footer {
  color: var(--gray-300);
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 44px 0;
}

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

.footer-logo {
  font-size: 22px !important;
}

.site-footer p,
.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

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

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

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

  .detail-grid,
  .rank-panel {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-stage,
  .hero-slide,
  .hero-content {
    min-height: 620px;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 18px;
  }

  .hero-search button {
    min-height: 46px;
  }

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

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

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

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

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

  .ranking-line {
    grid-template-columns: 42px minmax(0, 1fr) 72px;
  }

  .ranking-line span:nth-child(3),
  .ranking-line span:nth-child(4) {
    display: none;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .detail-meta-grid .wide {
    grid-column: auto;
  }

  .detail-title-row {
    flex-direction: column;
  }

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

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

  .movie-grid,
  .large-grid {
    gap: 12px;
  }

  .movie-card h3 {
    font-size: 14px;
  }

  .movie-desc,
  .tag-row {
    display: none;
  }
}
