:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5f3ff;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --gold: #f59e0b;
  --rose: #f43f5e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 211, 238, 0.16), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.16), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 46%, #020617 100%);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

main {
  padding-top: 4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 4rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001018;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.42);
}

.brand-text,
.footer-brand {
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #f9a8d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.18rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  border-radius: 0.7rem;
  padding: 0.62rem 0.9rem;
  color: #cbd5e1;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.72);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.65);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 1.25rem 1rem;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.82fr);
  gap: 1.4rem;
  max-width: 1280px;
  min-height: calc(100vh - 4rem);
  margin: 0 auto;
  padding: 1.4rem 1.25rem 2.8rem;
}

.hero-carousel,
.quick-search-card,
.spotlight-strip,
.page-hero,
.content-section,
.detail-hero,
.player-section,
.detail-text,
.site-footer {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-carousel {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border-radius: 2.2rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.75s ease;
}

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

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  filter: saturate(1.1) brightness(0.58);
  transform: scale(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.72) 48%, rgba(2, 6, 23, 0.35) 100%),
    radial-gradient(circle at 22% 18%, rgba(34, 211, 238, 0.26), transparent 30rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
  align-items: center;
  gap: 2rem;
  min-height: 100%;
  padding: clamp(1.4rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-summary,
.page-hero p,
.detail-one-line {
  max-width: 44rem;
  margin: 1.1rem 0 0;
  color: #dbeafe;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.hero-tags,
.tag-row,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.movie-meta-row span {
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
  color: #cffafe;
  padding: 0.38rem 0.68rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.primary-button,
.ghost-button,
.search-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.search-button {
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #001018;
  box-shadow: 0 18px 48px rgba(34, 211, 238, 0.24);
}

.primary-button,
.ghost-button {
  min-height: 3rem;
  padding: 0 1.35rem;
}

.ghost-button,
.section-more {
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.48);
  color: #e2e8f0;
}

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

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.6rem;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  aspect-ratio: 2 / 3;
}

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

.hero-poster span,
.play-pill,
.player-start {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.94);
  color: #001018;
  box-shadow: 0 0 42px rgba(34, 211, 238, 0.45);
}

.hero-poster span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3.3rem;
  height: 3.3rem;
  font-size: 1.2rem;
}

.hero-dots {
  position: absolute;
  left: clamp(1.4rem, 4vw, 4rem);
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 2.3rem;
  height: 0.38rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--cyan);
}

.hero-side {
  display: grid;
  gap: 1.4rem;
}

.quick-search-card,
.spotlight-strip {
  border-radius: 2rem;
  padding: 1.4rem;
}

.quick-search-card h2,
.section-head h2,
.content-section h2,
.footer-links h2 {
  margin: 0;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.quick-search-card h2,
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.site-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.site-search-input {
  min-width: 0;
  height: 3rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  color: #ffffff;
  padding: 0 1rem;
  outline: none;
}

.site-search-input:focus {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}

.search-button {
  height: 3rem;
  padding: 0 1.2rem;
  cursor: pointer;
}

.search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  z-index: 20;
  display: none;
  max-height: 22rem;
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  background: rgba(2, 6, 23, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.search-results.open {
  display: block;
}

.search-results a {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.search-results img {
  width: 3rem;
  height: 4.2rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.search-results strong {
  display: block;
  color: #ffffff;
}

.search-results span {
  display: block;
  margin-top: 0.2rem;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.45;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.category-chips a,
.category-tile span {
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.68);
  color: #e2e8f0;
  padding: 0.46rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.spotlight-scroll {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 8rem;
  border-radius: 1rem;
  background: #0f172a;
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.3s ease;
}

.spotlight-card span {
  position: absolute;
  right: 0.6rem;
  bottom: 0.55rem;
  left: 0.6rem;
  color: white;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

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

.content-section,
.page-hero,
.detail-hero,
.player-section,
.detail-text {
  max-width: 1280px;
  margin: 1.5rem auto;
  border-radius: 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.page-main {
  padding: 5.4rem 1.25rem 2rem;
}

.page-main .content-section,
.page-main .page-hero,
.page-main .detail-hero,
.page-main .player-section,
.page-main .detail-text {
  margin-right: auto;
  margin-left: auto;
}

.compact-hero {
  min-height: 18rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.24), transparent 25rem),
    linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(2, 6, 23, 0.95));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-more {
  min-height: 2.6rem;
  padding: 0 1rem;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.74);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(34, 211, 238, 0.48);
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.36);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #0f172a;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.movie-card:hover .poster-link img {
  transform: scale(1.07);
  filter: brightness(0.82) saturate(1.12);
}

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), transparent);
}

.play-pill {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.45rem;
  height: 2.45rem;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .play-pill {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #1f1300;
  padding: 0.3rem 0.56rem;
  font-weight: 950;
  font-size: 0.82rem;
}

.movie-info {
  padding: 0.9rem;
}

.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.movie-meta-row span {
  padding: 0.22rem 0.46rem;
  font-size: 0.68rem;
}

.movie-info h2 {
  display: -webkit-box;
  min-height: 2.7rem;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-info p {
  display: -webkit-box;
  min-height: 3.9rem;
  margin: 0.55rem 0 0;
  overflow: hidden;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tag-row {
  margin-top: 0.75rem;
}

.tag-row span {
  padding: 0.25rem 0.5rem;
  font-size: 0.72rem;
}

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

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

.category-tile {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.88));
  padding: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover {
  border-color: rgba(34, 211, 238, 0.45);
  transform: translateY(-4px);
}

.category-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.category-wide .category-thumb-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-thumb-row img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 0.75rem;
  object-fit: cover;
}

.category-tile h2 {
  margin: 0 0 0.4rem;
  color: white;
  font-size: 1.35rem;
  font-weight: 950;
}

.category-tile p {
  margin: 0 0 0.85rem;
  color: #94a3b8;
  line-height: 1.7;
}

.rank-list {
  display: grid;
  gap: 0.7rem;
}

.rank-row {
  display: grid;
  grid-template-columns: 3rem 4.5rem minmax(8rem, 0.7fr) 1fr;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.62);
  padding: 0.65rem;
}

.rank-row:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(30, 41, 59, 0.72);
}

.rank-num {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 950;
  text-align: center;
}

.rank-row img {
  width: 4.5rem;
  height: 6rem;
  border-radius: 0.55rem;
  object-fit: cover;
}

.rank-title {
  color: white;
  font-weight: 950;
}

.rank-desc {
  color: #94a3b8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1280px;
  margin: 0 auto 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #67e8f9;
}

.detail-main {
  padding-top: 5.4rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(14rem, 19rem) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.detail-poster {
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
  aspect-ratio: 2 / 3;
}

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

.detail-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.detail-meta {
  margin-top: 1rem;
}

.detail-tags {
  margin-top: 1rem;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-player,
.player-cover,
.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-player {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  padding: 0;
  background: #000;
}

.player-cover img {
  object-fit: cover;
  filter: brightness(0.44) saturate(1.1);
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.player-start {
  position: relative;
  z-index: 3;
  width: clamp(4rem, 9vw, 6.5rem);
  height: clamp(4rem, 9vw, 6.5rem);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.detail-text h2 {
  margin: 0 0 0.7rem;
  color: white;
  font-size: 1.6rem;
  font-weight: 950;
}

.detail-text h2 + p {
  margin-top: 0;
}

.detail-text p {
  color: #cbd5e1;
  font-size: 1.04rem;
  line-height: 1.95;
}

.site-footer {
  max-width: 1280px;
  margin: 2rem auto;
  border-radius: 2rem;
  padding: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(12rem, 0.7fr));
  gap: 2rem;
}

.site-footer p,
.footer-links a {
  color: #94a3b8;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links h2 {
  font-size: 1rem;
}

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

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 1rem;
  color: #64748b;
  font-size: 0.92rem;
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .movie-grid,
  .featured-grid,
  .ranking-grid,
  .category-movies,
  .related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero,
  .page-main,
  .detail-main {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .hero-carousel {
    min-height: 44rem;
  }

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

  .hero-poster,
  .detail-poster {
    max-width: 18rem;
  }

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

  .movie-grid,
  .featured-grid,
  .ranking-grid,
  .category-movies,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-row {
    grid-template-columns: 2.4rem 3.7rem minmax(0, 1fr);
  }

  .rank-desc {
    grid-column: 3 / 4;
  }
}

@media (max-width: 540px) {
  main {
    padding-top: 4rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0.9rem;
  }

  .hero-carousel {
    min-height: 42rem;
    border-radius: 1.3rem;
  }

  .hero-content {
    padding: 1.2rem;
  }

  .hero-actions,
  .site-search {
    grid-template-columns: 1fr;
  }

  .site-search {
    display: grid;
  }

  .hero-dots {
    left: 1.2rem;
    bottom: 1rem;
  }

  .content-section,
  .page-hero,
  .detail-hero,
  .player-section,
  .detail-text,
  .site-footer {
    border-radius: 1.25rem;
    padding: 1rem;
  }

  .movie-grid,
  .featured-grid,
  .ranking-grid,
  .category-movies,
  .related-grid {
    gap: 0.75rem;
  }

  .movie-info {
    padding: 0.75rem;
  }

  .movie-info h2 {
    font-size: 0.92rem;
  }

  .movie-info p {
    font-size: 0.8rem;
  }
}
