:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: #fffaf5;
  --text: #111827;
  --muted: #6b7280;
  --line: #f1f1f1;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #ef4444;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #ffffff 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.10);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb923c, #ef4444);
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.30);
}

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

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

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  transition: color 0.2s ease;
}

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

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.top-search input,
.hero-search input,
.filter-input,
.select-row select {
  border: 1px solid #e5e7eb;
  outline: none;
  background: #ffffff;
  border-radius: 14px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
  width: 100%;
  padding: 11px 14px;
}

.top-search input:focus,
.hero-search input:focus,
.filter-input:focus,
.select-row select:focus {
  border-color: rgba(249, 115, 22, 0.70);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.top-search button,
.hero-search button,
.primary-btn {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-search button {
  padding: 11px 16px;
}

.top-search button:hover,
.hero-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.30);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  cursor: pointer;
  place-items: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #374151;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 18px;
  border-top: 1px solid #f3f4f6;
}

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

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: #374151;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: #fff7ed;
  color: var(--orange);
}

.site-main {
  padding: 28px 0 72px;
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #111827;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 44%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 45%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 72px);
  bottom: clamp(34px, 7vw, 76px);
  max-width: 680px;
  color: #ffffff;
}

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

.hero-tags span,
.poster-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.hero-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  margin: 0 0 24px;
  max-width: 620px;
  color: #f3f4f6;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev {
  left: 18px;
}

.hero-arrow.next {
  right: 18px;
}

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

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

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

.quick-search-card,
.page-hero,
.filter-panel,
.info-card,
.ranking-box,
.ranking-side {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(249, 115, 22, 0.10);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.quick-search-card {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 500px);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
}

.quick-search-card h2,
.page-hero h1,
.section-heading h2,
.ranking-title h2,
.detail-info h1,
.info-card h2,
.detail-side-content h2,
.ranking-side h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.03em;
}

.quick-search-card h2 {
  font-size: clamp(26px, 4vw, 40px);
}

.quick-search-card p,
.page-hero p,
.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.hero-search input {
  flex: 1;
  padding: 14px 16px;
}

.hero-search button {
  padding: 0 22px;
}

.content-section {
  margin-top: 56px;
}

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

.section-heading span,
.ranking-title span {
  display: inline-flex;
  padding: 6px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2,
.ranking-title h2 {
  margin-top: 10px;
  font-size: clamp(26px, 3.5vw, 36px);
}

.section-link {
  color: var(--orange);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111827;
}

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

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

.type-badge,
.rank-badge,
.list-rank {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.type-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.70);
}

.rank-badge {
  top: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.poster-tags {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
}

.poster-tags span {
  padding: 5px 8px;
  font-size: 12px;
}

.play-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .play-hover,
.compact-card:hover .play-hover {
  opacity: 1;
}

.movie-card-body {
  padding: 16px;
}

.movie-card-body h3 {
  margin: 0 0 9px;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.compact-card:hover h3 {
  color: var(--orange);
}

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

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #6b7280;
  font-size: 12px;
}

.genre-text {
  color: var(--orange);
  font-weight: 800;
  max-width: 54%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.category-tile {
  padding: 22px;
  min-height: 160px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(239, 68, 68, 0.92));
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.28);
}

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

.category-tile p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: start;
}

.ranking-box,
.ranking-side {
  padding: 22px;
}

.compact-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding: 12px;
  margin-top: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.compact-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #111827;
}

.compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-rank {
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.95);
}

.compact-card h3 {
  margin: 2px 0 8px;
  font-size: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-card span {
  color: #6b7280;
  font-size: 12px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer p {
  margin: 14px 0 0;
  max-width: 520px;
  color: #9ca3af;
  line-height: 1.8;
}

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

.site-footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: #d1d5db;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding: 18px 0;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: clamp(28px, 6vw, 56px);
  background: radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.16), transparent 32%), #ffffff;
}

.page-hero h1 {
  font-size: clamp(34px, 6vw, 54px);
}

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

.breadcrumb a {
  color: var(--orange);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
}

.filter-input,
.select-row select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
}

.select-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.category-overview-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  aspect-ratio: 16 / 6;
  background: #111827;
}

.category-covers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-body {
  padding: 20px;
}

.category-overview-body span {
  color: var(--orange);
  font-weight: 900;
}

.category-overview-body h2 {
  margin: 8px 0 10px;
  font-size: 22px;
}

.category-overview-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 24px;
  align-items: start;
}

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

.ranking-main .compact-card {
  margin-top: 0;
}

.ranking-side {
  position: sticky;
  top: 94px;
}

.ranking-side a {
  display: block;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff7ed;
  color: #374151;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.ranking-side a:hover {
  background: #ffedd5;
  color: var(--orange-dark);
}

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.18), transparent 36%), #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-cover {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #111827;
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-info h1 {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.detail-one {
  margin: 18px 0 22px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.9;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #374151;
  background: #fff7ed;
  font-weight: 800;
}

.player-section {
  margin-top: 28px;
}

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

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.18));
}

.player-cover.hidden {
  opacity: 0;
  pointer-events: none;
}

.player-play {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  font-size: 30px;
  box-shadow: 0 20px 44px rgba(249, 115, 22, 0.35);
}

.player-cover strong {
  padding: 0 18px;
  font-size: clamp(20px, 4vw, 34px);
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: start;
  margin-top: 34px;
}

.detail-main-content {
  display: grid;
  gap: 20px;
}

.info-card {
  padding: 26px;
}

.info-card h2,
.detail-side-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.info-card p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 2;
  white-space: pre-line;
}

.detail-side-content {
  position: sticky;
  top: 94px;
}

.side-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.movie-card.hidden {
  display: none;
}

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

  .menu-toggle {
    display: grid;
  }

  .hero-carousel {
    height: 500px;
  }

  .quick-search-card,
  .split-section,
  .ranking-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

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

  .detail-side-content,
  .ranking-side {
    position: static;
  }
}

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

  .header-inner {
    min-height: 62px;
  }

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

  .hero-carousel {
    height: 460px;
    border-radius: 20px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 48px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-search-card {
    padding: 20px;
  }

  .hero-search {
    flex-direction: column;
  }

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

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

  .movie-card-body {
    padding: 12px;
  }

  .movie-card-body p,
  .card-meta .genre-text {
    display: none;
  }

  .card-meta {
    display: block;
  }

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

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

  .select-row {
    grid-template-columns: 1fr;
  }

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

  .compact-card {
    grid-template-columns: 108px 1fr;
  }

  .detail-hero {
    padding: 18px;
  }

  .detail-tags span {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .large-grid,
  .compact-grid,
  .latest-grid,
  .ranking-main {
    grid-template-columns: 1fr;
  }
}
