:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.10);
  --orange: #f97316;
  --orange-deep: #ea580c;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  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.86);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #f1f5f9;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #0f172a;
}

.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.25), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(59, 130, 246, 0.22), transparent 28%),
    linear-gradient(135deg, #1e293b 0%, #334155 42%, #7c2d12 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.18) 50%, rgba(15, 23, 42, 0.82) 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.48;
}

.glow-a {
  top: 110px;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(249, 115, 22, 0.52);
}

.glow-b {
  right: 8%;
  bottom: 120px;
  width: 360px;
  height: 360px;
  background: rgba(59, 130, 246, 0.35);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  padding: 72px 0 84px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #fed7aa;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1,
.inner-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.36);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(10px);
}

.hero-search {
  width: min(620px, 100%);
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 12px 14px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.hero-search button {
  border: 0;
  color: #fff;
  border-radius: 13px;
  padding: 0 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.hero-panel {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #111827, #7c2d12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateX(36px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.78));
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.hero-slide-content h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.hero-slide-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-tags span,
.meta-row span,
.tag,
.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
  position: absolute;
  right: 26px;
  bottom: -42px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.active {
  width: 30px;
  background: #fb923c;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: linear-gradient(135deg, #f1f5f9, #fff7ed);
}

.section.dark {
  color: #fff;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section.dark .section-head h2 {
  color: #fff;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.70);
}

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

.feature-card {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.18);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 23px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card-link:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.poster {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, #1e293b, #ea580c);
}

.movie-card.compact .poster {
  min-height: 210px;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.poster-title {
  position: relative;
  z-index: 2;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.year-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(249, 115, 22, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.play-badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) scale(0.86);
  border-radius: 999px;
  display: grid;
  place-items: center;
  opacity: 0;
  color: #fff;
  background: rgba(249, 115, 22, 0.92);
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.28);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.28;
  color: #111827;
}

.movie-card-body p {
  min-height: 58px;
  margin: 0 0 16px;
  color: #64748b;
  font-size: 14px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span {
  color: #475569;
  background: #f1f5f9;
}

.tone-1 { background: linear-gradient(135deg, #1e3a8a, #f97316); }
.tone-2 { background: linear-gradient(135deg, #312e81, #db2777); }
.tone-3 { background: linear-gradient(135deg, #064e3b, #eab308); }
.tone-4 { background: linear-gradient(135deg, #7f1d1d, #fb923c); }
.tone-5 { background: linear-gradient(135deg, #0f172a, #06b6d4); }
.tone-6 { background: linear-gradient(135deg, #581c87, #f43f5e); }
.tone-7 { background: linear-gradient(135deg, #14532d, #84cc16); }
.tone-8 { background: linear-gradient(135deg, #0c4a6e, #38bdf8); }
.tone-9 { background: linear-gradient(135deg, #422006, #f59e0b); }
.tone-10 { background: linear-gradient(135deg, #4c0519, #fb7185); }
.tone-11 { background: linear-gradient(135deg, #1f2937, #a855f7); }
.tone-12 { background: linear-gradient(135deg, #164e63, #14b8a6); }

.horizontal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-card {
  display: flex;
  min-height: 150px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  transition: background 0.22s ease, transform 0.22s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.mini-poster {
  position: relative;
  width: 132px;
  flex: 0 0 132px;
  overflow: hidden;
  background: linear-gradient(135deg, #334155, #ea580c);
}

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

.mini-poster span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
}

.mini-body {
  padding: 18px;
}

.mini-body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.mini-body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.category-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.13);
}

.category-chip span {
  font-weight: 900;
}

.category-chip em {
  font-style: normal;
  color: #ea580c;
  font-weight: 900;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 70px 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.12);
}

.rank-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 18px;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.rank-poster {
  position: relative;
  height: 82px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #334155, #ea580c);
}

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

.rank-info h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.rank-info p {
  margin: 0;
  color: #64748b;
}

.rank-score {
  color: #ea580c;
  font-size: 24px;
  font-weight: 900;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 0 14px;
  font-weight: 900;
  background: #fff;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pagination span,
.pagination a:hover {
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #7c2d12 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 76px;
  max-width: 940px;
}

.inner-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.breadcrumb a,
.breadcrumb span {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.detail-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #7c2d12);
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.70));
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 42px;
  align-items: center;
  padding: 58px 0 68px;
}

.detail-poster {
  min-height: 470px;
  border-radius: 30px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.38);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.detail-info .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  margin: 0 0 24px;
}

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

.detail-meta span,
.tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
}

.content-card,
.sidebar-card {
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.09);
}

.content-card {
  padding: 30px;
}

.content-card h2,
.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -0.025em;
}

.content-card p {
  color: #475569;
  font-size: 17px;
}

.sidebar-card {
  padding: 24px;
}

.side-link {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.side-link:last-child {
  border-bottom: 0;
}

.side-thumb {
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #334155, #ea580c);
}

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

.side-link strong {
  display: block;
  color: #111827;
  line-height: 1.25;
}

.side-link span {
  color: #64748b;
  font-size: 13px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

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

.player-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.24), rgba(2, 6, 23, 0.78));
}

.player-trigger span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 18px 46px rgba(249, 115, 22, 0.42);
  font-size: 32px;
}

.player-trigger b {
  font-size: 20px;
}

.player-trigger.hidden {
  display: none;
}

.search-panel {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.search-panel input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  outline: 0;
  border-radius: 16px;
  padding: 0 18px;
}

.no-results {
  display: none;
  padding: 34px;
  text-align: center;
  border-radius: 24px;
  color: #64748b;
  background: #fff;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #0f172a;
}

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

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer p {
  max-width: 520px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-logo {
  color: #fff;
  font-size: 20px;
}

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

@media (max-width: 1024px) {
  .hero-layout,
  .detail-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 560px;
  }

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

  .horizontal-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  }

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

  .nav-link {
    border-radius: 14px;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding: 54px 0 86px;
  }

  .hero-panel {
    min-height: 480px;
  }

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

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

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

  .rank-card {
    grid-template-columns: 52px 86px 1fr;
  }

  .rank-score {
    grid-column: 3;
    font-size: 18px;
  }

  .detail-poster {
    min-height: 420px;
  }

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