:root {
  --pink: #ec4899;
  --rose: #f43f5e;
  --rose-dark: #be123c;
  --text: #1f2937;
  --muted: #6b7280;
  --soft: #fff1f7;
  --line: #f9a8d4;
  --card: #ffffff;
  --shadow: 0 18px 48px rgba(190, 18, 60, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff1f7 0%, #ffffff 36%, #fff7fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang 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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.96), rgba(244, 63, 94, 0.96));
  box-shadow: 0 12px 32px rgba(190, 18, 60, 0.22);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1200px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--pink);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.28);
}

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

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #ffe4f1;
  transform: translateY(-1px);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.nav-search input {
  width: 220px;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 6px 8px;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.nav-search button,
.primary-btn,
.ghost-btn,
.panel-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.nav-search button {
  color: var(--rose-dark);
  background: #ffffff;
  padding: 7px 16px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

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

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-slider {
  position: relative;
  height: min(76vh, 640px);
  min-height: 500px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, #fb7185 0%, #831843 46%, #111827 100%);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.42) 38%, rgba(17, 24, 39, 0.9)), linear-gradient(90deg, rgba(136, 19, 55, 0.72), rgba(17, 24, 39, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 82px;
  color: #ffffff;
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff1f7;
  background: rgba(236, 72, 153, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.hero-content h1,
.hero-content h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-content h2 {
  margin-top: 10px;
  font-size: clamp(28px, 4.5vw, 54px);
}

.hero-content p:not(.hero-kicker) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: clamp(16px, 1.7vw, 20px);
  color: rgba(255, 255, 255, 0.9);
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags span {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-btn,
.ghost-btn,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 16px 32px rgba(236, 72, 153, 0.35);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.panel-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.58);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.content-section,
.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-heading {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.section-heading > div {
  display: grid;
  gap: 4px;
}

.heading-dot {
  width: 40px;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

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

.heading-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(190, 18, 60, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fce7f3, #fb7185 45%, #831843);
}

.poster-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.52), transparent 34%), linear-gradient(135deg, rgba(236, 72, 153, 0.26), rgba(244, 63, 94, 0.44));
}

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

.poster-link img.is-missing {
  opacity: 0;
}

.movie-card:hover .poster-link img {
  transform: scale(1.05);
}

.type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(190, 18, 60, 0.25);
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.card-content h3 a:hover {
  color: var(--pink);
}

.card-content p {
  min-height: 45px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: #9ca3af;
  font-size: 12px;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  padding: 5px 9px;
  color: var(--pink);
  background: #fce7f3;
}

.movie-card-large .poster-link {
  aspect-ratio: 16 / 10;
}

.movie-card-large .card-content p {
  min-height: 70px;
  -webkit-line-clamp: 3;
}

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  width: 340px;
  min-height: 190px;
}

.movie-card-horizontal .poster-link {
  aspect-ratio: auto;
  height: 100%;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
}

.horizontal-scroll .movie-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.highlight-section,
.category-section {
  width: min(1200px, calc(100% - 32px));
  margin-top: 24px;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fce7f3, #fff1f7 48%, #ffe4e6);
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.ranking-panel,
.related-panel,
.detail-card,
.catalog-tools,
.ranking-table {
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
}

.ranking-panel h2,
.related-panel h2 {
  margin: 0 0 20px;
  font-size: 24px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.ranking-row span:first-child,
.rank-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  font-weight: 800;
}

.ranking-row strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-row em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.panel-link {
  width: 100%;
  margin-top: 22px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

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

.category-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #fb7185 45%, #be123c);
  box-shadow: 0 18px 42px rgba(190, 18, 60, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(190, 18, 60, 0.28);
}

.category-tile-soft {
  color: var(--text);
  background: #ffffff;
}

.category-tile span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 800;
}

.category-tile-soft span {
  color: var(--pink);
  background: #fce7f3;
}

.category-tile strong {
  font-size: 24px;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.category-tile-soft em {
  color: var(--muted);
}

.page-shell {
  padding-top: 36px;
}

.page-hero {
  border-radius: 34px;
  color: #ffffff;
  background: radial-gradient(circle at 16% 12%, #f9a8d4, transparent 26%), linear-gradient(135deg, #be123c, #ec4899 48%, #fb7185);
  box-shadow: var(--shadow);
}

.simple-hero {
  padding: 56px;
}

.simple-hero p {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.simple-hero h1 {
  max-width: 880px;
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
}

.simple-hero span {
  display: block;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.genre-cloud,
.filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.genre-chip,
.filter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(190, 18, 60, 0.08);
  font-weight: 700;
}

.filter-link.active,
.genre-chip:hover,
.filter-link:hover {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
}

.catalog-tools {
  display: grid;
  gap: 20px;
  margin-bottom: 26px;
  padding: 22px;
}

.tool-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.catalog-search,
.catalog-sort {
  min-height: 48px;
  border: 0;
  outline: 0;
  border-radius: 16px;
  background: #fff1f7;
}

.catalog-search {
  flex: 1;
  padding: 0 16px;
}

.catalog-sort {
  padding: 0 14px;
  color: var(--text);
}

.no-results {
  padding: 48px;
  border-radius: 26px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ranking-table {
  overflow: hidden;
}

.ranking-table-row {
  display: grid;
  grid-template-columns: 54px 1.4fr 0.5fr 0.4fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #fce7f3;
}

.ranking-table-row:hover {
  background: #fff1f7;
}

.rank-title {
  font-weight: 800;
}

.ranking-table-row em {
  color: var(--muted);
  font-style: normal;
}

.detail-page {
  padding: 36px 0 0;
}

.detail-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #030712;
  box-shadow: 0 24px 70px rgba(3, 7, 18, 0.32);
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35), rgba(0, 0, 0, 0.64));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding-left: 6px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  box-shadow: 0 18px 42px rgba(236, 72, 153, 0.36);
  font-size: 38px;
}

.player-start strong {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.player-shell.is-playing .player-start {
  visibility: hidden;
  opacity: 0;
}

.detail-card {
  margin-top: 24px;
  padding: 30px;
}

.detail-card h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.detail-lead {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #4b5563;
  background: #f3f4f6;
  font-weight: 700;
}

.detail-tags span {
  padding: 7px 12px;
  color: var(--pink);
  background: #fce7f3;
}

.detail-text {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #fce7f3;
}

.detail-text h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.detail-text p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
}

.related-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.related-list {
  display: grid;
  gap: 16px;
}

.related-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.related-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background: linear-gradient(135deg, #fce7f3, #fb7185, #831843);
}

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

.related-poster img.is-missing {
  opacity: 0;
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.35;
}

.related-item em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.more-section {
  padding-top: 48px;
}

.site-footer {
  margin-top: 54px;
  padding: 42px 0;
  color: #ffffff;
  background: linear-gradient(90deg, #831843, #be123c 55%, #ec4899);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-inner p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

  .mobile-toggle {
    display: block;
  }

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

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

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

  .split-section,
  .detail-shell {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .related-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    height: 620px;
  }

  .hero-content {
    padding-bottom: 88px;
  }

  .hero-control {
    display: none;
  }

  .content-section,
  .highlight-section,
  .category-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .highlight-section,
  .category-section,
  .simple-hero,
  .detail-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .movie-grid,
  .featured-grid,
  .three-grid,
  .mid-grid,
  .catalog-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .movie-card-horizontal {
    grid-template-columns: 112px minmax(0, 1fr);
    width: 300px;
  }

  .card-content {
    padding: 13px;
  }

  .card-content h3 {
    font-size: 15px;
  }

  .card-content p,
  .tag-row {
    display: none;
  }

  .tool-row,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ranking-table-row {
    grid-template-columns: 44px 1fr;
  }

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

  .related-item {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

@media (max-width: 460px) {
  .nav-wrap,
  .content-section,
  .page-shell,
  .detail-shell,
  .footer-inner {
    width: min(100% - 22px, 1200px);
  }

  .brand {
    font-size: 18px;
  }

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

  .movie-grid,
  .featured-grid,
  .three-grid,
  .mid-grid,
  .catalog-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1,
  .hero-content h2,
  .simple-hero h1 {
    letter-spacing: -0.03em;
  }
}
