:root {
  color-scheme: light;
  --site-bg: #f8fafc;
  --site-ink: #0f172a;
  --site-muted: #64748b;
  --site-panel: #ffffff;
  --site-amber: #f59e0b;
  --site-blue: #2563eb;
  --site-slate: #0f172a;
  --site-border: rgba(148, 163, 184, 0.24);
  --site-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

body {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--site-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 52%, #0f172a 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.24);
}

.site-shell {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
}

.site-header-row {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-logo-mark {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, #fef3c7 0%, #f59e0b 45%, #b45309 100%);
  color: #111827;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.48);
}

.site-logo-sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a,
.mobile-nav a {
  color: #cbd5e1;
  font-weight: 650;
  border-radius: 0.75rem;
  transition: all 0.25s ease;
}

.site-nav a {
  padding: 0.65rem 0.9rem;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-button {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  color: #cbd5e1;
  border-radius: 0.85rem;
  transition: all 0.25s ease;
}

.icon-button:hover {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.9);
}

.mobile-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  padding: 0 0 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.5rem;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 1rem;
}

.site-search-panel {
  display: none;
  padding: 0 0 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.site-search-panel.is-open {
  display: block;
}

.site-search-box {
  position: relative;
}

.site-search-box input,
.card-filter input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  outline: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-search-box input {
  background: #0f172a;
  color: #ffffff;
  padding: 0.95rem 1rem;
}

.card-filter input {
  background: #ffffff;
  color: #0f172a;
  padding: 1rem 1.15rem;
}

.site-search-box input:focus,
.card-filter input:focus {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.site-search-results {
  margin-top: 0.7rem;
  display: none;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--site-shadow);
}

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

.site-search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
}

.site-search-results a:hover {
  background: #f8fafc;
  color: #d97706;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(105deg, #0f172a 0%, #78350f 52%, #020617 100%);
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(255, 255, 255, 0.24) 34px, rgba(255, 255, 255, 0.24) 36px);
}

.hero-shell::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8rem;
  background: linear-gradient(0deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 7rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fde68a;
  font-size: 0.9rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.hero-title {
  margin-top: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 4.9rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-title span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #fbbf24 0%, #fef3c7 52%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  margin-top: 1.35rem;
  max-width: 45rem;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.9;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.36);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 52px rgba(245, 158, 11, 0.46);
}

.secondary-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-links a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.hero-links a:hover {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.5);
}

.hero-stage {
  position: relative;
  min-height: 31rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #020617;
}

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

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

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

.hero-slide-content {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.54) 64%, rgba(2, 6, 23, 0) 100%);
}

.hero-slide-label {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  color: #111827;
  background: #fbbf24;
  font-size: 0.75rem;
  font-weight: 850;
}

.hero-slide h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 850;
}

.hero-slide p {
  margin-top: 0.65rem;
  max-width: 42rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.hero-dots {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 4;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-dot.is-active {
  width: 2rem;
  background: #fbbf24;
  border-color: #fbbf24;
}

.section-block {
  padding: 4rem 0;
}

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

.section-kicker {
  color: #d97706;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  margin-top: 0.35rem;
  color: #0f172a;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-desc {
  margin-top: 0.6rem;
  max-width: 46rem;
  color: #64748b;
  line-height: 1.75;
}

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

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

.movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
}

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1e293b;
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.movie-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0));
  transition: opacity 0.28s ease;
}

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

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 999px;
  color: #d97706;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.28s ease;
}

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

.movie-badge,
.movie-time {
  position: absolute;
  z-index: 3;
  top: 0.75rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.movie-badge {
  left: 0.75rem;
  padding: 0.32rem 0.58rem;
  color: #111827;
  background: #fbbf24;
}

.movie-time {
  right: 0.75rem;
  padding: 0.32rem 0.55rem;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.movie-title {
  color: #0f172a;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 850;
}

.movie-line {
  margin-top: 0.55rem;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.78rem;
}

.movie-meta span,
.tag-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f1f5f9;
  padding: 0.32rem 0.55rem;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  min-height: 12.5rem;
  padding: 1.4rem;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.2);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.95;
}

.category-card::after {
  content: '';
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card-content {
  position: relative;
  z-index: 2;
}

.category-icon {
  font-size: 2.4rem;
}

.category-card h3 {
  margin-top: 0.75rem;
  font-size: 1.35rem;
  font-weight: 900;
}

.category-card p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.category-count {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.cat-rose::before { background: linear-gradient(135deg, #e11d48 0%, #db2777 100%); }
.cat-blue::before { background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%); }
.cat-orange::before { background: linear-gradient(135deg, #f97316 0%, #dc2626 100%); }
.cat-pink::before { background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%); }
.cat-violet::before { background: linear-gradient(135deg, #7c3aed 0%, #312e81 100%); }
.cat-green::before { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
.cat-slate::before { background: linear-gradient(135deg, #334155 0%, #0f172a 100%); }
.cat-cyan::before { background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%); }

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

.rank-item {
  display: grid;
  grid-template-columns: 3.5rem 7.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.rank-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #1e293b;
}

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

.page-hero {
  background: linear-gradient(105deg, #0f172a 0%, #1e3a8a 48%, #0f172a 100%);
  color: #ffffff;
  padding: 4.5rem 0;
}

.page-hero h1 {
  max-width: 62rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 48rem;
  color: #cbd5e1;
  font-size: 1.12rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.card-filter {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.detail-hero {
  background: radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.2), transparent 32%), linear-gradient(105deg, #020617 0%, #1e293b 48%, #0f172a 100%);
  color: #ffffff;
  padding: 2rem 0 4rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.74), rgba(2, 6, 23, 0.28));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play {
  display: grid;
  place-items: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 999px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease;
}

.player-overlay:hover .player-play {
  transform: scale(1.08);
}

.detail-card {
  border-radius: 1.5rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.detail-card h1 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.detail-poster {
  overflow: hidden;
  border-radius: 1.15rem;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

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

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.detail-body {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
}

.content-panel {
  padding: 1.4rem;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.content-panel h2 {
  color: #0f172a;
  font-size: 1.45rem;
  font-weight: 900;
}

.content-panel p {
  margin-top: 0.85rem;
  color: #334155;
  line-height: 1.95;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag-pill {
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.footer-grid h3 {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.footer-grid p,
.footer-grid a {
  color: #94a3b8;
  line-height: 1.75;
  font-size: 0.94rem;
}

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

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.13);
  color: #64748b;
  font-size: 0.9rem;
}

.hidden-card {
  display: none !important;
}

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

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

  .hero-stage {
    min-height: 28rem;
  }
}

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

  .mobile-toggle {
    display: grid;
  }

  .site-header-row {
    min-height: 4.2rem;
  }

  .hero-layout {
    padding: 3.5rem 0 5.5rem;
    gap: 2rem;
  }

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

  .rank-item {
    grid-template-columns: 2.8rem 6rem 1fr;
  }

  .rank-extra {
    display: none;
  }

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

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 1rem, 80rem);
  }

  .site-logo-sub {
    display: none;
  }

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-stage {
    min-height: 25rem;
    border-radius: 1.35rem;
  }

  .hero-slide-content {
    padding: 1.2rem;
  }

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

  .rank-item {
    grid-template-columns: 2.6rem 1fr;
  }

  .rank-thumb {
    display: none;
  }

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