:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --red-100: #fee2e2;
  --orange-500: #f97316;
  --blue-500: #3b82f6;
  --green-500: #22c55e;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 44%, #f8fafc 100%);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-logo::before {
  content: "";
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red-500), var(--orange-500));
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.36);
}

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

.nav-link,
.nav-pill {
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-link {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.quick-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.nav-pill {
  flex: 0 0 auto;
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.nav-pill:hover {
  color: var(--white);
  background: rgba(239, 68, 68, 0.72);
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 18% 20%, rgba(239, 68, 68, 0.42), transparent 32%), linear-gradient(135deg, var(--slate-900), #7f1d1d 52%, var(--slate-950));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-track {
  position: relative;
  max-width: 1280px;
  min-height: 500px;
  margin: 0 auto;
  padding: 48px 20px 70px;
}

.hero-slide {
  position: absolute;
  inset: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero h1,
.page-hero h1,
.detail-title h1 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
}

.hero h2 {
  margin: 10px 0 16px;
  color: #fecaca;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.14;
}

.hero p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.tag-row span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #fee2e2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.34);
}

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

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-light {
  color: var(--red-600);
  background: var(--white);
}

.hero-cover {
  position: relative;
  justify-self: end;
  width: min(350px, 100%);
  aspect-ratio: 2 / 3;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.48));
}

.hero-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-cover:hover img {
  transform: scale(1.08);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.is-active {
  width: 30px;
  background: var(--white);
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

.page-top {
  padding-top: 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 48px;
}

.feature-card {
  min-height: 120px;
  padding: 24px;
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
}

.feature-card span {
  color: rgba(255, 255, 255, 0.78);
}

.feature-card.blue {
  background: linear-gradient(135deg, var(--blue-500), #2563eb);
}

.feature-card.green {
  background: linear-gradient(135deg, var(--green-500), #16a34a);
}

.feature-card.red {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
}

.content-section {
  margin-bottom: 54px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: var(--slate-800);
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: calc(100% + 18px);
  top: 50%;
  width: min(220px, 28vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.8), transparent);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light h2::after {
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.9), transparent);
}

.section-more {
  flex: 0 0 auto;
  color: var(--red-600);
  font-weight: 800;
}

.section-heading.light .section-more {
  color: #fecaca;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--slate-200);
}

.poster-frame::after,
.wide-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
}

.poster-frame img,
.wide-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-badge,
.card-year {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  top: 9px;
  right: 9px;
  max-width: calc(100% - 18px);
  padding: 4px 8px;
  background: rgba(239, 68, 68, 0.92);
}

.card-year {
  left: 9px;
  bottom: 9px;
  padding: 4px 8px;
  background: rgba(15, 23, 42, 0.78);
}

.card-body {
  padding: 12px;
}

.card-body h3,
.wide-body strong {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--slate-800);
  font-size: 16px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body p,
.wide-body p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body span,
.wide-body span,
.rank-row small {
  color: var(--red-600);
  font-size: 12px;
  font-weight: 700;
}

.wide-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.wide-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--slate-200);
}

.wide-body {
  padding: 14px;
}

.ranking-preview {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
  box-shadow: var(--shadow-md);
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.rank-mini {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.rank-mini span {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red-500);
  font-weight: 900;
}

.rank-mini img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.rank-mini strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 10px 10px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  font-size: 13px;
}

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

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

.category-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--slate-900);
  box-shadow: var(--shadow-md);
}

.category-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-card:hover img {
  opacity: 0.66;
  transform: scale(1.08);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.84));
}

.category-card div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.65;
}

.home-cta,
.page-hero {
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 24%), linear-gradient(135deg, var(--red-500), var(--red-600));
  box-shadow: var(--shadow-md);
}

.home-cta {
  padding: 44px 28px;
  text-align: center;
}

.home-cta h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.home-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #fee2e2;
  line-height: 1.8;
}

.page-hero {
  margin-bottom: 34px;
  padding: 36px;
}

.page-hero.small-hero {
  background: linear-gradient(135deg, var(--slate-900), #7f1d1d 58%, var(--slate-950));
}

.page-hero.dark-panel {
  background: linear-gradient(135deg, #111827, #7f1d1d 48%, #020617);
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.inline-search {
  max-width: 560px;
  margin-top: 22px;
}

.inline-search.prominent {
  max-width: 720px;
}

.inline-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.inline-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.chip-row {
  margin-top: 18px;
}

.filter-chip {
  color: #fee2e2;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.filter-chip:hover {
  color: var(--white);
  background: rgba(239, 68, 68, 0.72);
}

.breadcrumb {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--red-600);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

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

.detail-cover {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--slate-200);
}

.detail-meta {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.detail-meta p {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
}

.detail-meta p:last-child {
  border-bottom: 0;
}

.detail-meta span {
  color: var(--slate-600);
  font-size: 14px;
}

.detail-meta strong {
  color: var(--slate-800);
  font-size: 14px;
}

.detail-title h1 {
  color: var(--slate-900);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
}

.detail-title p {
  margin: 14px 0 18px;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.8;
}

.tag-row span {
  color: var(--red-700);
  background: var(--red-100);
}

.player-shell {
  position: relative;
  margin: 26px 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000000;
  box-shadow: var(--shadow-lg);
}

.movie-player {
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), var(--orange-500));
  box-shadow: 0 18px 38px rgba(239, 68, 68, 0.38);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 18px;
}

.story-card {
  margin-bottom: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.story-card.red-tint {
  background: linear-gradient(135deg, #fff7f7, #fee2e2);
  border-color: #fecaca;
}

.story-card h2 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: 22px;
}

.story-card p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.9;
  text-align: justify;
}

.related-section {
  margin-top: 42px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--slate-700);
  background: var(--slate-100);
  font-weight: 900;
}

.rank-number.hot {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-500), var(--orange-500));
}

.rank-row img {
  width: 76px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: var(--slate-200);
}

.rank-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-900);
  font-size: 17px;
}

.rank-row p {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--slate-600);
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--slate-950);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 20px;
}

.footer-inner strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 20px;
}

.footer-inner p {
  max-width: 760px;
  margin: 0 0 12px;
  line-height: 1.8;
}

.footer-links {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: #fecaca;
}

.is-filter-hidden {
  display: none !important;
}

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

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
  }

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

  .nav-link {
    padding: 12px 14px;
  }

  .hero-track {
    min-height: 620px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: center;
  }

  .hero-cover {
    justify-self: start;
    width: min(220px, 62vw);
  }

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

  .detail-side {
    position: static;
    max-width: 360px;
  }

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

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

@media (max-width: 560px) {
  .nav-container {
    padding: 12px 14px;
  }

  .quick-nav,
  .page-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-logo {
    font-size: 18px;
  }

  .site-logo::before {
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }

  .hero-track {
    padding: 34px 14px 70px;
  }

  .hero-slide {
    inset: 0 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p,
  .detail-title p {
    font-size: 16px;
  }

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

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

  .card-body h3,
  .wide-body strong {
    font-size: 14px;
  }

  .ranking-preview,
  .page-hero,
  .home-cta,
  .story-card {
    padding: 22px;
  }

  .section-heading h2::after {
    display: none;
  }

  .rank-row {
    grid-template-columns: 42px 64px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-number {
    width: 36px;
    height: 36px;
  }

  .rank-row img {
    width: 64px;
  }
}
